Why is there no sound in the output segment when I input a movie? #367
-
When I input a movie (about 2.5 hours), the output clip has no sound. But when I input a short video, there is sound. Looking forward to your reply. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You might have to customize the options passed to
You may want to manually run The default options try to preserve compatibility with the majority of input sources to generate a valid video output, but are not that focused on reliable audio output yet. You may want to set a different audio codec/bitrate, and also set what audio track(s) to include in the output. |
Beta Was this translation helpful? Give feedback.
You might have to customize the options passed to
ffmpeg
when splitting the input video. The default args are currently:You may want to manually run
ffmpeg
on a small sample of the input file you are trying to split, and figure out what options to set inffmpeg
. You can then customizesplit-video --args
accordingly 😄 This is especially important depending on how many audio tracks there are, or if subtitle tracks are present.The default options try to preserve compatibility with the majority of input sources to generate a valid video output, but are not that focused on reliable audio output yet. You may want to set a different audio …