jcblancomartinez
jcblancomartinez
I've created a [new issue](https://github.com/flutter/flutter/issues/79623) with title "[video_player] Error loading multiple video player instances in some Android devices". ## **:warning: Please, "thumbs up" [the new issue](https://github.com/flutter/flutter/issues/79623) to get it prioritized...
@TahaTesser As mentioned [here](https://github.com/flutter/flutter/issues/79623#issuecomment-813887682), the error you are getting is different to mine. Yours is related to an unavailable video from techslides.com domain. I've changed one of the video URLs...
## Steps to Reproduce ``` import 'package:flutter/material.dart'; import 'package:video_player/video_player.dart'; const _urls = [ 'https://file-examples-com.github.io/uploads/2017/04/file_example_MP4_1280_10MG.mp4', 'https://file-examples-com.github.io/uploads/2017/04/file_example_MP4_480_1_5MG.mp4', 'https://file-examples-com.github.io/uploads/2017/04/file_example_MP4_1920_18MG.mp4', 'https://www.learningcontainer.com/wp-content/uploads/2020/05/sample-mp4-file.mp4', 'https://samplelib.com/lib/download/mp4/sample-5s.mp4', 'https://www.sample-videos.com/video123/mp4/720/big_buck_bunny_720p_30mb.mp4' ]; void main() => runApp(const MyApp()); class MyApp extends StatelessWidget {...