Encoding multiple video streams with a single avconv invocation
- by automatthias
I played with avconv on Ubuntu and I'm now able to e.g. record the desktop with sound from a soundcard. One thing I wanted to do was recording two video inputs at the same time, for instance the desktop and from the webcam. I thought about doing something like this:
avconv \
-f alsa \
-i default \
-acodec flac \
-f video4linux2 \
-r 6 \
…