'how to play GStreamer media on Flutter
I want to know how can I get GStreamer to work on Flutter application to show a video on media player. Any help and tips would be appriciated
Solution 1:[1]
Do you really need GStreamer on the device to play the video? The main point is the source of the video - you can play:
- video file (https://pub.dev/packages/video_player)
- WebRTC stream (https://pub.dev/packages/flutter_webrtc)
- HLS stream (https://pub.dev/packages/video_player_web_hls)
without GStreamer at all.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | DMakeev |