omxplayer_video_player 2.1.1 copy "omxplayer_video_player: ^2.1.1" to clipboard
omxplayer_video_player: ^2.1.1 copied to clipboard

A package that implements video_player_platform_interface using omxplayer and platform views.

omxplayer_video_player #

A backend for the official flutter video_player based on omxplayer and platform views.

Note this only works on a Raspberry Pi with flutter-pi and omxplayer installed, not on any other platform, even though though platform tags of the pub.dev package seem to suggest otherwise.

Example usage #

To use this package in your app, execute OmxplayerVideoPlayer.useAsImplementation() in main, before the runApp call. Ideally you only do this when you're sure the platform code is present. You can check that using OmxplayerVideoPlayer.isPlatformSidePresent().

Example code:

void main() {
    if (OmxplayerVideoPlayer.isPlatformSidePresent()) {
        OmxplayerVideoPlayer.useAsImplementation();
    }
    runApp(MyApp());
}

Then you just use the widgets/classes of the official video_player package. chewie might or might not work. It draws multiple video views when going into fullscreen mode, which is hard to do with omxplayer. (You can't tell omxplayer to draw two views)

11
likes
110
pub points
64%
popularity

Publisher

verified publisherardera.dev

A package that implements video_player_platform_interface using omxplayer and platform views.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, video_player_platform_interface

More

Packages that depend on omxplayer_video_player