flutter_vlc_player icon indicating copy to clipboard operation
flutter_vlc_player copied to clipboard

📺 Flutter VLC powered video player.

Results 246 flutter_vlc_player issues
Sort by recently updated
recently updated
newest added

Hi, I am trying to write an application - TV - kiosk (to play videos from playlist in loop). how can I send commands to my flutter application from another...

When video is loaded and displayed my console is flooded with this message E/FrameEvents(11723): updateAcquireFence: Did not find frame. how to prevent that? ``` void liveCam() { vlcViewFrontController = VlcPlayerController.network(...

Hi everyone I wanna use external font from my project structure for subtitle, my fonts are in assets/fonts folder and define in pubspec.yaml file, how to do it?

version ```yaml flutter_vlc_player: ^7.1.5 ``` my code ```dart class MyHomePage extends StatefulWidget { MyHomePage({Key? key}) : super(key: key); @override _MyHomePageState createState() => _MyHomePageState(); } class _MyHomePageState extends State { late...

I need to make the video full screen, but I haven't found a way to make it full screen

I can not put the player on landscape and full screen... Also the example on the repo does not work! (the full screen)

I'm using this plugin on and Android TV. Playbacks works great 👍 But when i have a video with a 5.1 audio track (like dolby atmos, dolby digital...) the audio...

Thank you for this vlc plugin! I have found the following unexpected behavior: ## Description The autoplay option seems to be ignored. I initialize a VLC controller with ``` _videoPlayerController...

When starting to use this plugin, I was confused by the following behavior. ## Description I itinialized a `VlcPlayerController` as follows ``` _videoPlayerController = VlcPlayerController.network(url, autoPlay: false); ``` and added...

We have an HLS source with playlist.m3u8 up to 5s in past. vlc_player always caches maximum available history (5s). How can we set vlc_player to cache as less as possible,...