Search code examples
flutterdartsubtitlevideo-player

How to import subtitle file in video in Flutter?


How can I import subtitle files in a video in Flutter? like vtt files or srt files.


Solution

  • As a workaround, I am using mx_player_plugin for now. For ex.

    await PlayerPlugin.openWithMxPlayer(String url, String subUrl);
    

    this takes video url and srt url as a parameter and plays video using MX player.

    Warning: phone must have MX Player installed.


    UPDATE

    Try subtitle_wrapper_package this supports vtt subtitles. Please check my complete answer here