Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.