unosquare / ffmediaelement

FFME: The Advanced WPF MediaElement (based on FFmpeg)
https://unosquare.github.io/ffmediaelement/
Other
1.17k stars 241 forks source link

Can not play subtitle file for audio file. #651

Open LiveIsLive opened 1 year ago

LiveIsLive commented 1 year ago

This is my code, It is work for video file, but can not display subtitle for audio file.

public partial class VideoTest : Window
{
    public VideoTest()
    {
        InitializeComponent();
        this.MediaElement.Open(new System.Uri(@"Test.mp3"));
    }

    private void MediaElement_MediaOpening(object sender, Unosquare.FFME.Common.MediaOpeningEventArgs e)
    {
        e.Options.SubtitlesSource = @"Subtitle.srt";
    }
}