Hi,
I'm working on dm365 , dvsdk 4.0 to develop a live streaming. When I create a pipeline only one stream, it's ok, but if with two stream which encoded by different encoder, the pipeline does not work.
//the good pipe line with only one stream and encoder,
"v4l2src always-copy=FALSE num-buffers=-1 input-src=COMPOSITE device=/dev/video0 ! video/x-raw-yuv,format=\(fourcc\)NV12,width=640,height=480 !"
" TIVidenc1 codecName=h264enc engineName=codecServer contiguousInputFrame=TRUE bitRate=2000000 framerate=25 rateControlPreset=2 ! rtph264pay name=pay0 pt=96"
//the bad pipe line with 2 stream and 2 encoder, not work
"v4l2src always-copy=FALSE num-buffers=-1 input-src=COMPOSITE device=/dev/video0 ! "
" video/x-raw-yuv,format=\(fourcc\)NV12,width=640,height=480 ! "
" tee name=t t. ! queue ! "
" TIVidenc1 codecName=h264enc engineName=codecServer bitRate=2000000 framerate=25 rateControlPreset=2 encodingPreset=1 ! "
" rtph264pay name=pay0 pt=96 sync=false t. ! queue !"
" TIVidenc1 codecName=h264enc engineName=codecServer bitRate=256000 framerate=15 rateControlPreset=2 encodingPreset=1 !"
" rtph264pay name=pay1 pt=96";
Does any one else have tried 2 encoder in dm365?