comments on video player plugins
This commit is contained in:
parent
98f3e2ebd0
commit
114d12a797
1 changed files with 13 additions and 12 deletions
25
pubspec.yaml
25
pubspec.yaml
|
@ -14,23 +14,24 @@ description: A new Flutter application.
|
||||||
version: 1.0.0+1
|
version: 1.0.0+1
|
||||||
|
|
||||||
# video_player (as of v0.10.8+2, backed by ExoPlayer):
|
# video_player (as of v0.10.8+2, backed by ExoPlayer):
|
||||||
# - no URI handling by default but trivial by fork
|
# - does not support content URIs (by default, but trivial by fork)
|
||||||
# - support: AVI/XVID/MP3 nothing, MP2T nothing
|
# - does not support AVI/XVID, AC3
|
||||||
# - cannot support more formats
|
# - cannot play if only the video or audio stream is supported
|
||||||
# - playable only when both the video and audio streams are supported
|
|
||||||
|
|
||||||
# fijkplayer (as of v0.7.1, backed by IJKPlayer & ffmpeg):
|
# fijkplayer (as of v0.7.1, backed by IJKPlayer & ffmpeg):
|
||||||
# - URI handling
|
# - support content URIs
|
||||||
# - support: AVI/XVID/MP3 audio only, MP2T video only
|
# - does not support XVID, AC3 (by default, but possible by custom build)
|
||||||
# - possible support for more formats by customizing ffmpeg build,
|
# - can play if only the video or audio stream is supported
|
||||||
# - playable when only the video or audio stream is supported
|
|
||||||
# - crash when calling `seekTo` for some files (e.g. TED talk videos)
|
# - crash when calling `seekTo` for some files (e.g. TED talk videos)
|
||||||
|
|
||||||
# flutter_ijkplayer (as of v0.3.5+1, backed by IJKPlayer & ffmpeg):
|
# flutter_ijkplayer (as of v0.3.5+1, backed by IJKPlayer & ffmpeg):
|
||||||
# - URI handling (`DataSource.photoManagerUrl` from v0.3.6, but need fork to support content URIs on Android <Q)
|
# - support content URIs (`DataSource.photoManagerUrl` from v0.3.6, but need fork to support content URIs on Android <Q)
|
||||||
# - support: AVI/XVID/MP3 video/audio, MP2T video only
|
# - does not support AC3 (by default, but possible by custom build)
|
||||||
# - possible support for more formats by TODO TLAD customizing ffmpeg build?
|
# - can play if only the video or audio stream is supported
|
||||||
# - playable when only the video or audio stream is supported
|
|
||||||
|
# TODO TLAD flutter_ijkplayer: custom ijkplayer build to add AC3 support (only buildable on linux/mac)
|
||||||
|
# cf https://github.com/CaiJingLong/flutter_ijkplayer/blob/master/compile.md
|
||||||
|
# flags for AC3? --enable-decoder=ac3 --enable-decoder=ac3_fixed --enable-demuxer=ac3
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
|
Loading…
Reference in a new issue