I am receiving an H.263 RTP stream. Ethereal correctly decodes it as H.263. It's raw RTP over UDP (no transport stream). This is realtime video from a webcam.
I have searched forums and tried many suggestions, such as specifying SDP - nothing works.
When I use SDP; only profiles 32,33 seem to be supported. I tried using 96 - but I get invalid codec message.
I'm using latest 0.8.5 test2.
It seems like some have gotten this to work with vBrick, using SDP profile 96 (dynamic) - but like I said, I get invalid codec error. When I change to 32 or 33 I get past that error message.
VLC seems to want input over TS or RTSP - is what I'm trying to do even supported?
Here'a couple of SDP files I've tried:
v=0
o=- 2412748169 1 IN IP4 47.142.150.89
s=test.com
p=+234 567 8900
c=IN IP4 47.142.150.89
t=0 0
m=video 50060/1 RTP/AVP 96
c=IN IP4 47.142.150.89
a=rtpmap:96 H263/90000
livedotcom error: no codec supported, aborting
ps error: cannot peek
mjpeg error: cannot peek
ps error: cannot peek
main error: no suitable demux module for `/://h263_2.sdp'
v=0
o=- 2412748169 1 IN IP4 47.142.150.89
s=test.com
p=+234 567 8900
c=IN IP4 47.142.150.89
t=0 0
m=video 50060/1 RTP/AVP 34
c=IN IP4 47.142.150.89
a=rtpmap:34H263/90000
a=fmtp:34 QCIF=3 MAXBR=64 D1 D2 E F
livedotcom error: no codec supported, aborting
ps error: cannot peek
mjpeg error: cannot peek
ps error: cannot peek
main error: no suitable demux module for `/://h263_2.sdp'
*** try to fake out VLC by specifying 33 to get past codec problem***
v=0
o=- 2412748169 1 IN IP4 47.142.150.89
s=test.com
p=+234 567 8900
c=IN IP4 47.142.150.89
t=0 0
m=video 50060/1 RTP/AVP 33
c=IN IP4 47.142.150.89
a=rtpmap:33 H263/90000
a=fmtp:33 QCIF=3 MAXBR=64 D1 D2 E F
ps warning: this does not look like an MPEG PS stream, continuing anyway
main debug: using demux2 module "ps"
main debug: looking for a subtitle file in C:\Program Files\VideoLAN\VLC\
access_udp warning: unimplemented query in control
main debug: `rtp://@47.142.150.89:50060' successfully opened
ps warning: garbage at input, trying to resync...
Thanks!