switch live stream/format/codec/url support

Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-06-11 12:16:24 +08:00
parent aa35569ebe
commit ea5d7593ff
11 changed files with 318 additions and 99 deletions

View File

@@ -64,4 +64,8 @@ extension ListExt<T> on List<T> {
if (index < 0 || index >= length) return null;
return this[index];
}
T getOrFirst(int index) {
return getOrNull(index) ?? first;
}
}