woodruffw / snippets

Short (but useful) scripts and programs.

Home Page:https://yossarian.net/snippets

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is it normal that it only merges the video but not the audio?

moeC137 opened this issue · comments

Not sure if thats normal or an error on my side.

If you're talking about ffmpeg-mosaic, yes:

# -an disables audio output, since it doesn't make much sense here
args.concat [filter, "-an", output]

You can remove that -an member to re-enable audio. You may have to tweak it a bit, since I'm not sure whether ffmpeg will use only the first input's main audio track or whether it'll try to mux them all together.

ok, thx for the info ill try it
edit:
it works only for the first channel

Cool. Feel free to open a PR that adds any functionality you need, gated off with CLI flags.