Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a home made RTSP server that streams video to QuickTime clients. Now, I need to support Flash Player clients, because QuickTime needs some configuration to work on Windows, and also there is no implementation of it in Linux distributions. Then I opted for Flash.

BUT: does Flash support RTSP??? If not, where can I find documentation for its streaming protocol so I can build one?

Any details on this will be appreciated... thanx!

share|improve this question

3 Answers

up vote 5 down vote accepted

<< does Flash support RTSP??? NO.

FLASH is a container, flv is for video and fla for audio. Now.. everything below is Adobe's product.

Adobe's    ----------------  Adobes's   --------------------- Adobe's
Streaming Server             RTMP Protocol                    Flash Player

a) Adobe's Streaming Server b) Adobe's RTMP Protocol c) Adobe's Flash Player d) F4v/Flv video format

These above software's are designed specifically for web applications to provide end user seamless, secured, uninterrupted, high quality video.

If you want some hands on then you can try Red5 (Open Source Flash Server written in Java) or rtpmd (C++ RTPM server)

share|improve this answer
Author asked about Flash Player. Obviously, my 'Flash' was in this context. RTMP != RTSP. So flash player has not native support for RTSP protocol. – Lex Dec 6 '10 at 19:58
Also RTMP is a propietery protocol. – Stephan Kristyn Oct 19 '11 at 10:23

Flash doesn't support RTSP. For streaming Flash uses RTMP.

RTSP spesification.

RTMP spesification.

BTW, what about VLC media player. VLC supports many formats and protocols including RTSP and exists on Win, Mac and Linux platforms.

share|improve this answer
Thanx for RTMP!!! Can I use VLC in a web page? :/ (VLC link is in Russian xD) – Cipi Dec 6 '10 at 12:10
VLC WebPlugin info: wiki.videolan.org/Documentation:WebPlugin. – Lex Dec 6 '10 at 12:26

You can definitely use erlyvideo streaming server to convert your RTSP stream to RTMP.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.