I am trying to stream my webcam video using the ffmpeg to wowza media server on linux..

ffmpeg -re -f video4linux2 -i /dev/video0 -acodec libfacc -vcodec libx264 -f h264 rtmp://localhost:1935/live/test

This is the command I used for some reason it doesn't seem to work as I am not able to run the example that came with wowza. I tried using flash media live encoder to send a rtmp to my wowza server and it works.

Any pointers on how to solve this problem.

I build ffmpeg from their git repo with the following config

--enable-gpl --enable-libfaac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libvorbis --enable-libx264 --enable-nonfree --enable-postproc --enable-version3 --enable-x11grab

ffmpeg -protocols says it has rtmp input/output support

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

With these build options my FFMPEG build does receive and decode rtsp streams

--enable-network --enable-protocol=tcp --enable-demuxer=rtsp --enable-decoder=h264

I have answered a similar question here FFMPEG API: How to connect to RTSP stream using av_open_input_file?

link|improve this answer
I dont have access to my linux machine now..Will try this and get back... – josnidhin Nov 25 '11 at 13:54
It didnt work either..Thank you for the suggestion..I have given up ffmpeg.. – josnidhin Nov 30 '11 at 16:07
Why not to take a ready FFMPEG build instead of building yourself? There's a site with ready FFMPEG builds, don't remember URL though. Worked for me – Alex Nov 30 '11 at 16:20
hmm..didnt know that..will git a try sometime...thanks – josnidhin Nov 30 '11 at 16:37
feedback

Your second -f switch, for the container format, should be mp4 not h264. H264 is a codec not a container format

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.