wiki:ffmpeg_commands
Table of Contents
ffmpeg commands
Cut video from 29 minutes to the end and save in out file
ffmpeg -ss 00:29:50 -i video.webm -c copy out.webm
Capture desktop
ffmpeg -hide_banner -framerate 20 -video_size $(xrandr | awk '/\*/{printf$1}') -f x11grab -i $DISPLAY.0 screenRecording.mp4
Add sound to video
ffmpeg -i input.mp4 -i input.mp3 -c copy -map 0:v:0 -map 1:a:0 output.mp4
Tested on
- ffmpeg version 4.2.7-0ubuntu0.1
See also
References
wiki/ffmpeg_commands.txt · Last modified: 2024/02/29 11:38 by antisa