feat: sqlite video player (#19792)

* feat: video player

* use remote asset id in local query

* fix: error from pre-caching beyond total assets

* fix: flipped local videos

* incorrect aspect ratio on iOS

* ignore other storage id during equals check

---------

Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
This commit is contained in:
shenlong 2025-07-09 20:04:25 +05:30 committed by GitHub
parent 51ab7498e9
commit dfe6d27bbd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
31 changed files with 832 additions and 82 deletions

View file

@ -23,6 +23,7 @@ class PlatformAsset {
final int? width;
final int? height;
final int durationInSeconds;
final int orientation;
const PlatformAsset({
required this.id,
@ -33,6 +34,7 @@ class PlatformAsset {
this.width,
this.height,
this.durationInSeconds = 0,
this.orientation = 0,
});
}