c# - Record H.264 Stream from SDP file -


I am trying to figure out how to access an H.264 stream and then convert it to MP3 Have to record in I can do the recording part as I have done it in the past, but I do not know how the stream has reached the parameters in the SDP file. I have used MediaCoite.NET Streamcoders for RTSP and they support SDP but I am at a loss because the parameter is to be converted into an essential decoder object. The SDP has the following contents:

  v = 0 o = - 1 8 ip 4 192.168.1.17 s = mnt-1890335646-stream1-high i = h264 session mnt-1890335646- stream 1-higher U = http: //192.168.1.17 C = IP4 239.1.12.3 9/64/1 T = 0 M = Video 5006/1 RTP / AVP 102 I = Video Stream C = IP4 239.1.12.3 9/64 / 1a = FMTP: 102 width = 1920; Height = 1080; Depth = 0; Framerate = 0; Field rate = 0; A = framerate: 0 a = rtpmap: 102 H264 / 90000  

Does anyone have any suggestions about using this information with streamcoders (preferably) or with any other managed library?

Cheers

Using the network direct show filter in main concept, I can read the SDP file and a stream.


Comments

Popular posts from this blog

sqlite3 - UPDATE a table from the SELECT of another one -

c# - Showing a SelectedItem's Property -

javascript - Render HTML after each iteration in loop -