-
This has been answered though an email so others might find it useful |
Beta Was this translation helpful? Give feedback.
Answered by
SuRGeoNix
Dec 8, 2023
Replies: 1 comment
-
Task.Run(() =>
{
var res = Player.Open(@"rtsp://video", defaultAudio: false, defaultSubtitles: false);
if (res.Success)
{
var playlistItem = Player.Playlist.Selected;
var extStream = new FlyleafLib.MediaFramework.MediaStream.ExternalAudioStream() { Url = @"rtsp://audio"};
playlistItem.AddExternalStream(extStream, playlistItem, null, null);
var res2 = Player.Open(extStream);
}
}); Note 1: In case of live steams it might no be able to resync audio/video if seek is not supported |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
SuRGeoNix
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note 1: In case of live steams it might no be able to resync audio/video if seek is not supported
Note 2: This would be currently better handled through a plugin (see YoutubeDL plugin as sample)