I'm trying to setup logo and marquee to my video. I've found tutorials how to do it normally but not using VLM. I don't know where to write the parameters. Has anybody any experiences with it?
I wrote these lines to my .vlm config file:
Code: Select all
new CT1 broadcast enabled
setup CT1 input udp://@:1234 --marq-marquee="CVUT" :marq-x=100 :marq-y=20
setup CT1 output #transcode{vcodec=mp2v,vb=1024,scale=1,acodec=mpga,ab=192,channels=2,sfilter=marq:logo}:std{access=http,mux=ts,dst=192.168.1.2:8081/CT1}
play CT1
I tried to add there something like this:
Code: Select all
setup CT1 option marq="AAAAA"
In both cases it shows my the default logo "VLC" in the video.
Has anyone a solution? Could anyone describe me how to use filters when using VLM?
And when I wanted to use both logo and marquee how would the correct syntax look like?
Something like this?
Code: Select all
new CT1 broadcast enabled
setup CT1 input udp://@:1234 :logo-file=d:/stream/logo.png :logo-x=10 :logo-y=10 :marq-marquee="CVUT" :marq-x=100 :marq-y=20
setup CT1 output transcode{vcodec=mp2v,vb=1024,scale=1,acodec=mpga,ab=192,channels=2,sfilter=marq:logo}:std{access=http,mux=ts,dst=192.168.1.2:8081/CT1}
play CT1
SteveCZ