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?
Asked
Active
Viewed 1,522 times
1 Answers
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
- 5,308
- 5
- 30
- 52
-
how about ios?? – Salman Sarray Feb 19 '19 at 08:46
-
@MohammedSalman I don't know much about iOS development, I can't help you with that. – leodriesch Feb 19 '19 at 22:44