Parameter to Force TCP for RTSP streams #1715
Replies: 2 comments 5 replies
-
I have created a fork with this feature implemented here Specifically, the commit: I can also confirm that this does indeed work. Usage follows naming convention of other boolean properties <toolkit:MediaElement x:Name="mediaElement"
ShouldAutoPlay="True"
ShouldShowPlaybackControls="False"
ShouldForceRtpTcp="True"
Source=""
HeightRequest="300"
WidthRequest="400"
/> |
Beta Was this translation helpful? Give feedback.
-
Cross-platform .NET/Mono bindings for LibVLC has LGPL-2.1 license + available commercial licence. It does work on iOS and Android - MAUI, however the licence is not MIT. On the iOs it take some time for video to appear (20+ seconds). Code example by CoPilot AI:
References: |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I am proposing the addition of a
ForceTCP
property of some kind on theMediaElement
component.This proposal stems from an issue I have had with ExoPlayer on Android, where it tries to use UDP first. However, this causes issues when connecting to some IP Camera RTSP streams.
A related issue here: androidx/media#357
As you can see from the issue, a workaround for the issue for ExoPlayer is
On the MAUI side, it would be nice for this to be a property.
i.e
XAML Usage
C# Usage
I look forward to a reply!
Beta Was this translation helpful? Give feedback.
All reactions