I've capture card with linux drivers. I want to encode and stream the captured stream in 3GP format.
Is it possible to have this transcoding and streaming using VLC + DSS. The video codec can be h.264 and audio codec is AAC and mux format is 3gp.
Or is there any other way in which 3gp live streaming is possible using VLC.
Any suggestions in this regard would be higly appreciated.
I tried this but it doesn't work
cvlc -vvv v4l2:///dev/video0:width=160:height=120 :input-slave=oss:///dev/audio1
--sout '#transcode{width=160,height=120,venc=ffmpeg,vcodec=h264,vb=160,scale=1,acodec=mp4a,ab=8,channels=1,samplerate=22100}:rtp{dst=127.0.0.1,port=10002,mux=3gp,sdp=file:///home/akhilesh/test.sdp}'
Idea is to get the sdp file working so that DSS can stream using RTSP.
Thanks
~Aks