Объединение аудио и видео файлов разной длины с помощью mp4box

1585
Sourabh

Я должен объединить видео и аудио файл вместе. В настоящее время я использую эту команду,
mp4box -flat -add <video> -add <audio> <outputfile>.mp4
но проблема в том, что если видео, скажем, всего 2 минуты, а звук - 5 минут, видео застревает через две минуты, а звук воспроизводится до последней. Я хочу ограничить вывод только 2 минутами.
Я искал и нашел вариант -shortestв ffmpeg. Есть ли подобный вариант в mp4box.

1

1 ответ на вопрос

2
cconcolato

MP4Box can limit the duration of the import. You can check:

MP4Box -h import 

This will show the following option:

":dur=D" imports only the first D seconds 

You can use it as follows:

mp4box -add <video> -add <audio>:dur=120 <outputfile>.mp4 

Note that I removed the -flat option as you probably want to have a progressive file, with audio and video interleaving.