I am using mjpg-streamer to stream video from a webcam on dev/video0. I want to record video and audio using the same device and using the mjpg-streamer in the same time? for the mjpg-streamer I use:
./mjpg_streamer -i "./input_uvc.so -f 20 -r 640x480" -o "./output_http.so -p 8095 -w ./www
and for recording video and audio I use:
ffmpeg -isync -f alsa -ac 1 -ar 48000 -i hw:0,0 -acodec pcm_s16le -f video4linux2 -s 640x480 -i /dev/video0 out.avi
unfortunately a got the following problem: [video4linux2 @ 0x2fa60] Cannot find a proper format for codec_id 0, pix_fmt -1.
any idea please?