0

I am working on an app that allows users to play videos (.m3u8) with subtitles (.srt), and I haven't found any package or plugin to make that possible. So I decided to use an external video player. Is there a plugin or a way of launching a video url using an external player?

Mohammed Salman
  • 493
  • 6
  • 9

1 Answers1

3

You may use the official Android Intent plugin from the Flutter team (https://pub.dartlang.org/packages/android_intent) to create a solution on Android.

You can then refer to this StackOverflow question (Android intent for playing video?) for what the intent should look like.

leodriesch
  • 4,584
  • 4
  • 25
  • 48