video looping not working
Posted: 06 May 2009 15:15
Hi,
I want to add a button into my VB.NET GUI, which would allow my video to be set to loop over and over, until it is told to stop by the user, it doesn't seem to work.
Is this how you would set it up when you are adding the target video file?
Is there an API command that allows this to be setup?
I want to add a button into my VB.NET GUI, which would allow my video to be set to loop over and over, until it is told to stop by the user, it doesn't seem to work.
Is this how you would set it up when you are adding the target video file?
Is there an API command that allows this to be setup?
Code: Select all
Dim options() As String
options = New String() {":sout=#duplicate{# dst=display,dst=std {access=udp,mux=ts,dst=" & ipAddress & ":" & port & "--loop}}"}
vlc.AddTarget(videoFile, options)
Else