0

I'm trying to merge two cd-s into 1 file and also boost sound volume 200%, I tried this using avconv tool, but I only got cd1 and without an boost in sound:

nohup avconv -i cd1.avi -i cd2.avi -vcodec libx264 -acodec libvo_aacenc -r 30000/1001 -vol 512 merged.mp4

I used same syntax as for ffmpeg, any ideas why it didn't work? I can't find documentation for -vol for avconv. and also info about merging files is scarce.

llogan
  • 59,497

1 Answers1

0

avconv does not support concatentation (yet, patches welcome). The ways to work around this are e.g.

  • use mplayer(2) with -vo yuv4mpeg to decode your two video into a pipe, make avconv read from this pipe.

  • encode the two videos separately, then use mkvmerge to merge them.