Page 1 of 1

Start-Time and TTL Parameters Question

Posted: 27 Jul 2009 04:17
by Chris Carl
Can somebody tell me where the Start-Time= and TTL= parameters would need to go in my Windows batch file:

Code: Select all

start c:\"Program Files"\VideoLAN\VLC\vlc.exe dvdsimple://E:\ --sout=#transcode {vcodec=mp2v,vb=800,scale=1,acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=http,mux=ts,dst=0.0.0.0:8080}
Thanks.

Re: Start-Time and TTL Parameters Question

Posted: 27 Jul 2009 13:49
by thannoy
It can be in several places. One can be:

Code: Select all

start c:\"Program Files"\VideoLAN\VLC\vlc.exe dvdsimple://E:\ --start-time=val1 --ttl=val2 --sout=#transcode {vcodec=mp2v,vb=800,scale=1,acodec=mpga,ab=128,channels=2,samplerate=44100}:std{access=http,mux=ts,dst=0.0.0.0:8080}
(I am not sure --start-time is not buggous)

Re: Start-Time and TTL Parameters Question

Posted: 01 Aug 2009 22:48
by Chris Carl
OK, figured it out. It's simply :start-time= and :TTL= tacked on at the end of my code.