Page 1 of 1

Marquee and Time sub filter with streaming

Posted: 15 Jun 2006 18:50
by bXn
I am trying to insert the time and a text in a stream (MPEG-2 TS/RTP/UDP)
using a MPEG-2 file.
[I am using 0.8.6 15th May 2006 build]

I can see the text and time when I play the file :

Code: Select all

vlc -vvv --sub-filter marq --sub-filter time --time-position="8" --marq-marquee="Arrrrgghh" --marq-x=50 --marq-y=50 --width=200 --height=100 "toto.mpg"
But I can not find the way to achieve this if I am streaming ...

Is it mandatory to add a transcoding step ?
Is the "--sout-transcode-sfilter <string>"

Any help would be appreciated
:P

Posted: 15 Jun 2006 19:20
by bXn
Looks like I was not so far away ;o)


This command line is working correctly for me :

Code: Select all

C:\Program Files\VideoLAN\VLC>vlc -vvv "C:\Video\swEp01.mpg" --sout="#transcode{sfilter=time,soverlay=time,vcodec="mp2v",vb=2000}:std" --sout-standard-access=rtp --sout-standard-mux=ts --sout-standard-url=192.168.2.22:1234 --time-position=0

Posted: 15 Jun 2006 22:28
by dionoea
Make it simple :)

Code: Select all

C:\Program Files\VideoLAN\VLC>vlc -vvv "C:\Video\swEp01.mpg" --sout="#transcode{sfilter=time,soverlay=time,vcodec="mp2v",vb=2000}:std{access=rtp,mux=ts,url=192.168.2.22:1234}'

Posted: 16 Jun 2006 11:00
by bXn
Make it simple :)

Code: Select all

C:\Program Files\VideoLAN\VLC>vlc -vvv "C:\Video\swEp01.mpg" --sout="#transcode{sfilter=time,soverlay=time,vcodec="mp2v",vb=2000}:std{access=rtp,mux=ts,url=192.168.2.22:1234}'
Thanks ;o)

in fact, my command line is generated through a script and the script is mixing -- options and {} which is quite confusing when the options list is growing...I have to clean this

:wink: