How to cut a Video and mute it in one step with FFmpeg? -


i tried this:

 "ffmpeg -i input.mp4 -ss 00:00:50.0 -vcodec copy -an -t 20 output.mp4" 

because know cutting s

 "ffmpeg -i input.mp4 -ss 00:00:50.0 -codec copy -t 20 output.mp4" 

and know muting (deleting sound video):

 "ffmpeg -i input.mp4 -ss 00:00:50.0 -vcodec copy -an -t 20 output.mp4" 

from here: https://unix.stackexchange.com/a/33864

it doesnt work. naturally. otherwise wouldnt ask here.

who knows answer? thx

this work:

"ffmpeg -i 'input.mp4' -ss 30 -c copy -an -t 10 '"soundlessoutput.mp4'" 

Comments

Popular posts from this blog

node.js - Using Node without global install -

How to access a php class file from PHPFox framework into javascript code written in simple HTML file? -

java - Null response to php query in android, even though php works properly -