Ask Your Question
1

How can I duplicate a non-audio / video data stream from the input MP4 file using FFmpeg?

asked 2022-12-03 11:00:00 +0000

scrum gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2021-09-06 09:00:00 +0000

lakamha gravatar image

To duplicate a non-audio/video data stream from the input MP4 file using FFmpeg, you can use the -map option to specify the input stream and the -codec copy option to copy the stream without any re-encoding.

For example, if you want to duplicate stream 1 from the input file input.mp4, you can use the following command:

ffmpeg -i input.mp4 -map 0:1 -codec copy output.mp4

This command will copy stream 1 from the input file and save it to output.mp4 without any re-encoding.

Note that the -map option specifies the input stream using the format input_file:stream_specifier, where the input_file is the input file and the stream_specifier specifies which stream to use. The stream specifier can be a number (such as 1 for stream 1), a name (such as subtitle), or a type (such as v for video or a for audio).

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-12-03 11:00:00 +0000

Seen: 10 times

Last updated: Sep 06 '21