kakone / VLC.MediaElement

MediaElement clone powered by VLC
GNU Lesser General Public License v2.1
68 stars 33 forks source link

Support for http/ts:// uri #15

Closed roman-76 closed 7 years ago

roman-76 commented 7 years ago

I'm getting url from external service that starts with "http/ts://" protocol. vlc media player successfully plays that url but Vlc MediaElement fails.

AFAIU, call to Uri.TryCreate(source, UriKind.RelativeOrAbsolute, out location) in MediaElement.cs fails to parse that uri.

Could you please add support for it?

kakone commented 7 years ago

vlc media player successfully plays that url

VLC for UWP or the desktop version of VLC ? Even if the Uri.TryCreate returns false, the source is passed to the underlying mediaplayer, it should work.

roman-76 commented 7 years ago

You are right, VLC for UWP doesn't support that either.