ffmpeg note
To Convert video to 720p
1ffmpeg -i input.mp4 -s 1280x720 -b:v 1024k -bufsize 1024k output.aviTo set the video bitrate of the output file to 64 kbit/s:
1ffmpeg -i input.avi -b:v 64k -bufsize 64k output.aviTo force the frame rate of the output file to 24 fps:
1ffmpeg -i input.avi -r 24 output.aviTo remove audio
123# -c:v copy copies the video stream.# -an removes the audio stream.ffmpeg -i input.mp4 -c:v copy -an output.mp4To cut mp3
|
|