Page 1 of 1

please check my syntax

Posted: 12 Oct 2005 04:20
by shelly
I'm new to this and app and seem to be not getting the command structure. I'm trying to convert raw dv to quicktime, both files are local. Here's my command line:

vlc /mnt/raid0/mmmcom/src-video/jose-sample.dv --sout '#transcode{vcodec=mp4v,acodec=mpga,vb=800,ab=128,deinterlace}:
standard{access=file,url="/mnt/raid0/mmmcom/src-video/test.mov"}'

should this work? any obvious mistakes?

more info

Posted: 12 Oct 2005 04:24
by shelly
fyi, here's the error that was returned:

Remote control interface initialized, `h' for help
[00000215] main private error: no sout stream module matched "transcode"
[00000214] main stream output error: stream chained failed for `transcode{vcodec=mp4v,acodec=mpga,vb=800,ab=128,deinterlace}:
standard{access=file,url="/mnt/raid0/mmmcom/src-video/test.mpg"}'
[00000213] main input error: cannot start stream output instance, aborting
[00000207] main playlist: nothing to play

Posted: 12 Oct 2005 12:24
by geo
looks like you don't have a mux in the output, or require file:// before the input. Here's mine for transcoding a TS to H.264

Code: Select all

./clivlc -vvv file:///Users/geo/Movies/vlc-output.ts --sout '#transcode{vcodec=h264,acodec=mp4a,vb=800,ab=128,deinterlace} :std{access=file,mux=mp4,url="/users/geo/Movies/out.mp4"}}'
geo