You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 21, 2022. It is now read-only.
I have an issue / a question (pick one) about Vlc.DotNet.
Generic information
Summary
I am displaying a rtsp stream using a VlcControl in a windows form.
This stream is from an ONVIF conformant ip camera.
When I play the stream, I always encounter the EndReached flag of the VlcControl when the stream has been playing for a bit.
So, it looks like the display of the stream just freezes, because my VlcControl thinks there's no more images to show...
I have to repress my play button every time my stream freezes, so my application can't really run by itself...
I want my stream to restart by itself when it freezes.
I tried using the
EndReached
flag :private void myVlcControl_EndReached(object sender, Vlc.DotNet.Core.VlcMediaPlayerEndReachedEventArgs e)
{
(sender as VlcControl).Play(MyStream.URL);
}
But, when I do so, my stream won't restart...
What's the best way to do what I'm trying to achieve?
The text was updated successfully, but these errors were encountered: