Is there any way to handle network-caching option in flutter vlc player?

1,311

I'm looking for the same. I'm trying to achieve ultra low-latency streams in Flutter, which for my application probably means switching from MJPEG to RTSP.

In the meantime though, and perhaps a good fit for your application, the flutter_mjpeg package is pretty simple to use, and doesn't cripple the latency with a long buffer:

https://pub.dev/packages/flutter_mjpeg

Share:
1,311
Admin
Author by

Admin

Updated on December 18, 2022

Comments

  • Admin
    Admin over 1 year

    I am streaming a video to android platform with flutter vlc player.

    When I stream the video, it has delay of 2-3 seconds. However if I stream at linux_vlc_player, with setting network-caching option into 0 sec, it shows about 0.5 seconds delay. So I thought the delay in flutter vlc player also can be reduced when I handle the caching option, but I could not find it in flutter_vlc_player.

    Where can I find the option?

    The image below is how I handled the caching option in linux vlc player. You can see the Caching option is 0ms.

    enter image description here