I have this gstreamer command which works well
/usr/local/bin/gst-launch-0.10 -v v4l2src ! stamp sync-margin=1 sync-interval=1 ! videorate ! video/x-raw-yuv,width=320,height=240,framerate=30/1 ! ffmpegcolorspace ! x264enc bitrate=256 subme=4 b-pyramid=true weightb=true ! queue2 ! flvmux name=mux ! alsasrc ! audio/x-raw-int,rate=11025,channels=2,depth=16 ! audiorate ! queue2 max-size-buffers=600 max-size-bytes=0 max-size-time=0 ! audioconvert ! lamemp3enc target=1 bitrate=40 mono=true encoding-engine-quality=1 target=bitrate ! mux. mux. ! queue2 ! rtmpsink location='rtmp://server'
On the server i see the video but don't hear any audio (or just little noise)
And I receive this warning message
WARNING: from element /GstPipeline:pipeline0/GstAlsaSrc:alsasrc0: Can't record audio fast enough Additional debug info: gstbaseaudiosrc.c(840): gst_base_audio_src_create (): /GstPipeline:pipeline0/GstAlsaSrc:alsasrc0: Dropped 3300 samples. This is most likely because downstream can't keep up and is consuming samples too slowly.
WARNING: from element /GstPipeline:pipeline0/GstAlsaSrc:alsasrc0: Can't record audio fast enough Additional debug info: gstbaseaudiosrc.c(840): gst_base_audio_src_create (): /GstPipeline:pipeline0/GstAlsaSrc:alsasrc0: Dropped 2970 samples. This is most likely because downstream can't keep up and is consuming samples too slowly.
I search on internet and found that the reason behind this is that video take much processing power than audio and that is why audio can't keep up with video
I then change the audiorate to 11025 (at first it was higher than 11025). It improve a little bit But still not good enough
I can try different things in video part i.e. changing framerate , bitrate but no luck.