I'm in the process of testing a RTP stream that I generate in accordance with RFC4175: https://tools.ietf.org/html/rfc4175#section-6.2
The RTP contain raw RGB image with 8bits depth for each color (24bits per pixels)
The following is my SDP file (raw.sdp):
v=0
o=- 1 1 IN IP4 192.168.99.200
s=-
c=IN IP4 192.168.99.100
t=0 0
a=recvonly
a=type:broadcast
m=video 5004 RTP/AVP 99
a=rtpmap:99 raw/90000
a=fmtp:99 sampling=RGB; width=80; height=60; depth=8; colorimetry=SMPTE240M
Can someone indicate to me how to play the RTP stream by passing SDP file as parameter to vlc?
I tryed with command line "vlc.exe raw.sdp" but it seem that nothing is done, even the port 5004 is not opened because I see in Wireshark that the port is not opened (ICMP message indicate that port is not reachable)
Also I tried with the GUI by selecting rtp://192.168.99.200:5004 in network stream, now the port seem to be opened because no more ICMP message are sent but it indicate to me:
SDP required:
A description in SDP format is required to receive the RTP stream. Note that rtp:// URIs cannot work with dynamic RTP payload format (99).
But I don't know how to indicate the sdp file with a local folder.
Any idea?
Regards.