feature: Video BufferSize settings for MPV (#314)

Co-authored-by: PartyDonut <PartyDonut@users.noreply.github.com>
This commit is contained in:
Julien9969 2025-04-17 13:56:36 -04:00 committed by GitHub
parent 3896bb90f5
commit d4380d5f6f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 56 additions and 8 deletions

View file

@ -25,6 +25,7 @@ extension StringExtensions on String {
var buffer = StringBuffer();
var split = this.split(' ');
for (var i = 0; i < (limitTo.clamp(0, split.length)); i++) {
if (split[i].isEmpty) continue;
buffer.write(split[i][0]);
}