Minimum SDP to create an H264 RTP stream?

I am looking for an example of the minimum required SDP to create an H264 video stream. |

It is assumed that the receiver can play H264 as long as it receives the required parameters via SDP.

I found a related document here , however it uses many optional parameters in the examples, and I am looking for the minimum required minimum.

+5
source share
1 answer

Here are the minimum SDP bars. This is a file with a name test.sdpthat has the following content:

c=IN IP4 10.5.110.117
m=video 5004 RTP/AVP 96 
a=rtpmap:96 H264/90000

I started a thread in a virtual machine using VLC. (There is no SDP)

vlc -vvv sample_video/big_buck_bunny_480p_h264.mov --sout
'#rtp{dst=10.5.110.117,port=5004,ttl=1}'

On the client side, the player was launched using:

vlc test.sdp

, SDP, , RTP- ( ). sprop- SDP, H264?

+7

All Articles