How to process raw UDP packets so that they can be decoded by a decoder filter in a directshow source filter

Peace of cake! 1. Get the data As I can see, you already know how to do that (start RTSP session, SETUP a RTP/AVP/UDP;unicast; transport, and get user datagrams)… but if you are in doubt, ask. No matter the transport (UDP or TCP) the data format is mainly the same: RTP data: [RTP Header – … Read more

What is the difference between RTP or RTSP in a streaming server?

You are getting something wrong… RTSP is a realtime streaming protocol. Meaning, you can stream whatever you want in real time. So you can use it to stream LIVE content (no matter what it is, video, audio, text, presentation…). RTP is a transport protocol which is used to transport media data which is negotiated over … Read more

Streaming via RTSP or RTP in HTML5

Technically ‘Yes’ (but not really…) HTML 5’s <video> tag is protocol agnostic—it does not care. You place the protocol in the src attribute as part of the URL. E.g.: <video src=”rtp://myserver.com/path/to/stream”> Your browser does not support the VIDEO tag and/or RTP streams. </video> or maybe <video src=”http://myserver.com:1935/path/to/stream/myPlaylist.m3u8″> Your browser does not support the VIDEO tag … Read more