Page 1 of 1

Streaming relai on Debian: splitted attribute

Posted: 10 Aug 2006 09:08
by Flying Jack
Hi !
I've set up a streaming relai server on a Debian Sarge box using VLC (apt-get install vlc) > VLC media player 0.8.2-svn Janus

I try to use that command, which works successfully on a Windows Server:

Code: Select all

vlc udp:@:2030 --sout=#transcode{vcodec=WMV2,vb=400,scale=1,acodec=mpga,ab=64,channels=2}:duplicate{dst=std{access=mmsh,mux=asfh,url=:8080 }} --daemon
VLC launchs, but when i check it using a ps faux command, i see something stranges: the attributes are seirdly splitted:

Code: Select all

skunlup:/home/flyingjack# ps x | grep vlc 3201 ? Ss 0:00 vlc udp:@:2030 --sout=#transcodevcodec=WMV2:duplicate{dst=std{access=mmsh,mux=asfh,url=:8080 --sout=#transcodevb=400:duplicate{dst=std{access=mmsh,mux=asfh,url=:8080 --sout=#transcodescale=1:duplicate{dst=std{access=mmsh,mux=asfh,url=:8080 --sout=#transcodeacodec=mpga:duplicate{dst=std{access=mmsh,mux=asfh,url=:8080 --sout=#transcodeab=64:duplicate{dst=std{access=mmsh,mux=asfh,url=:8080 --sout=#transcodechannels=2:duplicate{dst=std{access=mmsh,mux=asfh,url=:8080 }} --daemon
What's wrong ???
Thanks a lot

Posted: 10 Aug 2006 09:25
by Jean-Baptiste Kempf
Is it really a problem for you ?

Posted: 10 Aug 2006 09:31
by Flying Jack
I juste would like to know if it's normal or not...
I recognize that i haven't try to watch a stream using this, because I can't, for the moment (i have nothing for stream..)
I'm just working on the relai server, to set up something ready for next steps...

It will work ?

Thanks

Posted: 10 Aug 2006 16:17
by Flying Jack
I reply to myself.
Under Debian, we need ' in the command:

vlc udp:@:2030 --sout='#transcode{vcodec=WMV2,vb=400,scale=1}:duplicate{dst=std{access=mmsh,mux=asfh,url=:8080}}'

And it works !

Code: Select all

skunlup:/home/flyingjack# ps faux | grep vlc root 3600 0.6 0.3 60460 3360 ? Ss 16:16 0:00 vlc udp:@:2030 --sout=#transcode{vcodec=WMV2,vb=400,scale=1}:duplicate{dst=std{access=mmsh,mux=asfh,url=:8080}} --daemon