Page 1 of 1

This transcode command line not work

Posted: 03 Dec 2009 17:03
by kittivud
Hello,

I try to use vlc to display a video file without transcode and together transcode to h.264 then stream it out. But it does not work (see below command line).

:sout=#duplicate{dst=display,dst=transcode{vcodec=h264,vb=192,width=176,height=144,acodec=mp4a,ab=32,channels=1}:std{access=http,mux=ts,dst=0.0.0.0:10000}

When I display and stream a video file without transcode both of them. It work fine. My system is windows XP. Could somebody advise.

Thanks

Re: This transcode command line not work

Posted: 03 Dec 2009 17:10
by thannoy
1- your line is very long, better to use "code" button above edition area to paste it
2- missing one '}' at the end of your line?
3- If it is not, you will have to provide debug output.. Using -vvv and using "Code" button for your past to be readable. (you can use a pastebin too)

Re: This transcode command line not work

Posted: 04 Dec 2009 04:41
by kdh
hmm.. lets keep it simple, can you try this?

Code: Select all

:sout=#transcode{vcodec=h264,vb=192,width=176,height=144,acodec=mp4a,ab=32,channels=1}:std{access=http,mux=ts,dst=0.0.0.0:10000}
it will not display the the feed locally, but it should make your http interface come online.

Does that help and work for you?