Page 1 of 1

command line webm encoding not working

Posted: 20 Jan 2013 22:41
by cleaner
i have to encode 30+ videos (.mov quicktime animation - no audio) into webm.

my command line for a single video is not working. maybe I did some syntax wrong:

Code: Select all

vlc -vvv "F:\\video01.mov" --sout='#transcode{vcodec=VP80,vb=1200,scale=1}:std{access=file, mux=ffmpeg{mux=webm}, dst="F:\\video01.webm"}'
vlc gui starts but no output-file is created & no error is prompted.

as you can see I tried double backslashes and even "url" instead od "dst". donĀ“t even know what "-vvv" exactly means but tried that too.
converting with the vlc-gui works with the quicktime animation codec as input file...

what did I do wrong?

Re: command line webm encoding not working

Posted: 21 Jan 2013 13:13
by Jean-Baptiste Kempf
What are the logs?

Re: command line webm encoding not working

Posted: 21 Jan 2013 13:36
by cleaner
are you asking about "tool --> messages"?
nothing is showing up there with verbosity set to "2(debug)"..


vlc just starts with this screen - but nothing is happening.


Image

Re: command line webm encoding not working

Posted: 22 Jan 2013 10:46
by Jean-Baptiste Kempf
Error in the "" placement

Re: command line webm encoding not working

Posted: 22 Jan 2013 19:05
by cleaner
Error in the "" placement

could you please edit my line of code and paste it here?

Re: command line webm encoding not working

Posted: 22 Jan 2013 20:57
by cleaner
figured it out myself:

Code: Select all

vlc -I dummy "F:\\video1.mov" --sout=#transcode{vcodec=VP80,vb=1200,scale=1}:std{access=file,mux=ffmpeg{mux=webm},dst="F:\\video1.webm"} vlc://quit
thanks anyway.

Re: command line webm encoding not working

Posted: 22 Jan 2013 21:54
by MLM
Hi cleaner,

I tried your first code... In fact, it seems the problem is due to the space between the coma and dest

Code: Select all

vlc -vvv "F:\\video01.mov" --sout='#transcode{vcodec=VP80,vb=1200,scale=1}:std{access=file,mux=ffmpeg{mux=webm}, dst="F:\\video01.webm"}'
Should be:

Code: Select all

vlc -vvv "F:\\video01.mov" --sout='#transcode{vcodec=VP80,vb=1200,scale=1}:std{access=file,mux=ffmpeg{mux=webm},dst="F:\\video01.webm"}'
Also, This one worked for me (VLC 2.0.5):

Code: Select all

vlc -vvv "F:\\video01.mov" --sout='#transcode{vcodec=VP80,vb=1200,scale=1}:std{access=file,mux=webm,dst="F:\\video01.webm"}'
Hope this help.