MediaElement and RTSP

Does MediaElement support RTSP?

I have a stream and I can use the stream with VLC Player through:

RTSP: //192.168.1.17: 554 / stream

However, when I try to use Windows Media Player, I cannot transfer it. What begs the question, does MediaElement support RTSP?

I am working with WPF on .NET 4.0.

+4
source share
1 answer

VLC has comprehensive RTSP support (via the live555 library), while support in Windows Media Player is limited.

You might want to check out this article on MSDN: Supported Media Formats, Protocols, and Journal Fields .

Supported Codecs

The following is a summary list of codec formats supported by MediaElement. These encodings are supported regardless of the file name extension.

See also: MediaElement and custom RTSP stream .

+4
source

Source: https://habr.com/ru/post/1397108/


All Articles