I have a problem
I start vlc with:
vlc -I telnet --extraintf rc -vv --vlm-conf test.vlm
test.vlm is:
new test broadcast enabled
setup test input 1.ts
setup test output #standard{mux=ts,access=udp,dst=localhost:1234,sap}
control test play
control test seek 10%
I have more than one instances of vlc opened that are doing the same thing
my problem is that i want to stop broadcasting at 50% (for example...i need to stop it after "x" seconds).
How can i do that???? (I don't need to enter(manualy) in the rc interface "quit"!
I made a batch, which it starts simultanious with vlc -I telnet --extraintf rc -vv --vlm-conf test.vlm(with the broadcast)
PING -n 10 127.0.0.1>nul
cd d:\windows
taskkill /f /im vlc.exe
it waits 10 seconds and kill vlc...is seems ok....but, it kills all my vlc instances...
--stop-time doesn't work here...
if someone could help me.....