Page 1 of 1

VLC client Time offset with VOD ?

Posted: 07 Dec 2005 15:02
by werix
Dear All,

I've setup a VOD service by following the manuel, and it works fine ( vlc 0.8.4 for windows) :

server side:

Code: Select all

"C:\Program Files\VideoLAN\VLC\vlc.exe" --ttl 20 -vvv -I telnet --rtsp-host 192.168.1.110:5554" telnet 192.168.1.110 4212 > new videoclips vod enabled > setup videoclips input myclips.mpeg
client side:

Code: Select all

vlc rtsp://192.168.1.110:5554/videoclips
When I tried to move the slide bar on the client side, video clips jumps to the position, and play it correctly. But I wonder if there is a solution on the client side to give a parameter to start the video clips from a given timecode (a.k.a instead to start always the video clips from 0:00:00, I want to be able to start it with say 0:03:20 without using slidebar, but with command line)?

Many thanks in advance.

Posted: 13 Dec 2005 15:08
by dunsti
hi!
here is the solution, a simple command line option:

Code: Select all

vlc rtsp://192.168.1.110:5554/videoclips --start-time 200
regards dunsti

Ooohhhh!!!

Posted: 14 Dec 2005 14:44
by vIv
vlc rtsp://192.168.1.110:5554/videoclips --start-time 200

And how i can PAUSE playing and restart it after from pause position?

Posted: 14 Dec 2005 22:38
by dunsti
use the play/pause button or "space"

Posted: 15 Dec 2005 09:18
by vIv
But vlc/vlm used as rtsp-server does not real pause/restart :-(

yes ! many thanks

Posted: 20 Dec 2005 01:39
by werix@home
hi!
here is the solution, a simple command line option:

Code: Select all

vlc rtsp://192.168.1.110:5554/videoclips --start-time 200
regards dunsti
Thanks guys !