Baseflow / Baseflow/XamarinMediaManager

[Feature request] Ability to play video/audio on multiple VideoViews simultaneously

Open
#261 2 comments 5 reactions 0 assignees View on GitHub
enhancement
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.