flutterflutter-dependenciesvideo-player

How to play a Video in flutter using network link


I have a video link and I want to play video in flutter how can I play?

I try using videoplayer plugin but its not work with this url -

"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4"

but I can play with this url why?

"https://flutter.github.io/assets-for-api-docs/assets/videos/bee.mp4"


Solution

  • So the problem is in Url in this URL you are using https

    "https://flutter.github.io/assets-for-api-docs/assets/videos/bee.mp4"

    but in this URL you are using http which causing error

    http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4

    Error:

    Caused by: com.google.android.exoplayer2.upstream.HttpDataSource$CleartextNotPermittedException: Cleartext HTTP traffic not permitted.
    

    Solution:

    Just replace the http to https