using ffmpeg to cut video into chunks by time

Опубликовано: 18 Сентябрь 2020
на канале: A Forum
574
9

Cutting a video up at regular time intervals

ffmpeg -i input.MOV -c copy -map 0 -segment_time 00:01:00 -f segment -reset_timestamps 1 output_%03d.MOV

input.MOV is the video to be cut up

-c copy the stream is not to be re-encoded

-map 0 map all streams from the first input file to output

-segment_time 00:01:00 cuts video at 1 minute intervals

-f segment force segment format

-reset_timestamps 1 optional to add this if only the first chunk is playable

output_%03d.MOV numbers the output videos in time order from begining to end using zero padding (using 3 digits and adding 0's to the front of the number if it is less than 100)

links:
https://unix.stackexchange.com/questi...
http://manpages.org/ffmpeg

00:00 intro
00:10 command to segment 1min intervals

Thankyou for watching :)


Смотрите видео using ffmpeg to cut video into chunks by time онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь A Forum 18 Сентябрь 2020, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 574 раз и оно понравилось 9 людям.