Baseflow / Baseflow/XamarinMediaManager
[Feature request] Ability to play video/audio on multiple VideoViews simultaneously
- Dominant language
- C#
- Stars
- 763
- Forks
- 299
- PR merge metrics
- No merged PRs in 30d
Description
Adding the ability to play video/audio in multiple VideoViews simultaneously.
The current restriction of only one VideoView can play is due to the referencing to the singleton CrossMediaManager.Current below:
```
///
/// Cross platform MediaManager implemenations
///
public class CrossMediaManager
{
static readonly Lazy Implementation = new Lazy(CreateMediaManager);
///
/// Current settings to use
///
public static IMediaManager Current
{
get
{
if (Implementation.Value == null)
{
throw NotImplementedInReferenceAssembly();
}
return Implementation.Value;
}
}
```
Contributor guide
Assessment
This issue has not been assessed yet.