3

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

DNS
  • 851
  • 11
  • 19
  • 2
    Recently I managed to get the gstreamer working on flutter for both android and iOS. For Android do not use flutter 2.x. The rendering just not shows due to some issues. Wasted a complete week. Try 3..0.0 . Its working – cdesh May 23 '22 at 09:13

2 Answers2

2

Do you really need GStreamer on the device to play the video? The main point is the source of the video - you can play:

without GStreamer at all.

DMakeev
  • 71
  • 3
0

If need gstreamer just use platformviews to embed and do the rendering using native android and ios. worked for me.

cdesh
  • 113
  • 8