extract video tracks from video files with ffmpeg

Published: 08 February 2020
on channel: NapoleonWils0n
421
5

extract video track without audio from video files

extract the video track from a single file

ffmpeg -i infile.mp4 -an -c:v copy outfile.mp4

batch extract the video tracks from all the mp4s in the current directory

find -s . -type f -name "*.mp4" -exec sh -c \
'ffmpeg -i "${0}" -an -c:v copy "${0%.*}-extracted.mp4"' \
"{}" \;


Watch video extract video tracks from video files with ffmpeg online without registration, duration 01 minute 43 second in high hd quality. This video was added by user NapoleonWils0n 08 February 2020, don't forget to share it with your friends and acquaintances, it has been viewed on our site 421 once and liked it 5 people.