-
Notifications
You must be signed in to change notification settings - Fork 424
/
Copy pathMediaManager.android.cs
524 lines (442 loc) · 14.6 KB
/
MediaManager.android.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
using Android.Support.V4.Media.Session;
using Android.Views;
using Android.Widget;
using AndroidX.CoordinatorLayout.Widget;
using Com.Google.Android.Exoplayer2;
using Com.Google.Android.Exoplayer2.Audio;
using Com.Google.Android.Exoplayer2.Metadata;
using Com.Google.Android.Exoplayer2.Text;
using Com.Google.Android.Exoplayer2.Trackselection;
using Com.Google.Android.Exoplayer2.UI;
using Com.Google.Android.Exoplayer2.Video;
using CommunityToolkit.Maui.Core.Primitives;
using CommunityToolkit.Maui.Views;
using Microsoft.Extensions.Logging;
namespace CommunityToolkit.Maui.Core.Views;
public partial class MediaManager : Java.Lang.Object, IPlayer.IListener
{
readonly SemaphoreSlim seekToSemaphoreSlim = new(1, 1);
double? previousSpeed;
float volumeBeforeMute = 1;
TaskCompletionSource? seekToTaskCompletionSource;
/// <summary>
/// The platform native counterpart of <see cref="MediaElement"/>.
/// </summary>
protected StyledPlayerView? PlayerView { get; set; }
/// <summary>
/// Creates the corresponding platform view of <see cref="MediaElement"/> on Android.
/// </summary>
/// <returns>The platform native counterpart of <see cref="MediaElement"/>.</returns>
/// <exception cref="NullReferenceException">Thrown when <see cref="Android.Content.Context"/> is <see langword="null"/> or when the platform view could not be created.</exception>
public (PlatformMediaElement platformView, StyledPlayerView PlayerView) CreatePlatformView()
{
ArgumentNullException.ThrowIfNull(MauiContext.Context);
Player = new IExoPlayer.Builder(MauiContext.Context).Build() ?? throw new NullReferenceException();
Player.AddListener(this);
PlayerView = new StyledPlayerView(MauiContext.Context)
{
Player = Player,
UseController = false,
ControllerAutoShow = false,
LayoutParameters = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MatchParent, ViewGroup.LayoutParams.MatchParent, GravityFlags.CenterHorizontal)
};
return (Player, PlayerView);
}
/// <summary>
/// Occurs when ExoPlayer changes the playback parameters.
/// </summary>
/// <paramref name="playbackParameters">Object containing the new playback parameter values.</paramref>
/// <remarks>
/// This is part of the <see cref="IPlayer.IListener"/> implementation.
/// While this method does not seem to have any references, it's invoked at runtime.
/// </remarks>
public void OnPlaybackParametersChanged(PlaybackParameters? playbackParameters)
{
if (playbackParameters is null)
{
return;
}
if (!AreFloatingPointNumbersEqual(playbackParameters.Speed, MediaElement.Speed, 0.01))
{
MediaElement.Speed = playbackParameters.Speed;
}
}
/// <summary>
/// Occurs when ExoPlayer changes the player state.
/// </summary>
/// <paramref name="playWhenReady">Indicates whether the player should start playing the media whenever the media is ready.</paramref>
/// <paramref name="playbackState">The state that the player has transitioned to.</paramref>
/// <remarks>
/// This is part of the <see cref="IPlayer.IListener"/> implementation.
/// While this method does not seem to have any references, it's invoked at runtime.
/// </remarks>
public void OnPlayerStateChanged(bool playWhenReady, int playbackState)
{
if (Player is null || MediaElement.Source is null)
{
return;
}
var newState = playbackState switch
{
PlaybackStateCompat.StateFastForwarding
or PlaybackStateCompat.StateRewinding
or PlaybackStateCompat.StateSkippingToNext
or PlaybackStateCompat.StateSkippingToPrevious
or PlaybackStateCompat.StateSkippingToQueueItem
or PlaybackStateCompat.StatePlaying => playWhenReady
? MediaElementState.Playing
: MediaElementState.Paused,
PlaybackStateCompat.StatePaused => MediaElementState.Paused,
PlaybackStateCompat.StateConnecting
or PlaybackStateCompat.StateBuffering => MediaElementState.Buffering,
PlaybackStateCompat.StateNone => MediaElementState.None,
PlaybackStateCompat.StateStopped => MediaElement.CurrentState is not MediaElementState.Failed
? MediaElementState.Stopped
: MediaElementState.Failed,
PlaybackStateCompat.StateError => MediaElementState.Failed,
_ => MediaElementState.None,
};
MediaElement.CurrentStateChanged(newState);
if (playbackState is IPlayer.StateReady)
{
MediaElement.Duration = TimeSpan.FromMilliseconds(Player.Duration < 0 ? 0 : Player.Duration);
MediaElement.Position = TimeSpan.FromMilliseconds(Player.CurrentPosition < 0 ? 0 : Player.CurrentPosition);
}
}
/// <summary>
/// Occurs when ExoPlayer changes the playback state.
/// </summary>
/// <paramref name="playbackState">The state that the player has transitioned to.</paramref>
/// <remarks>
/// This is part of the <see cref="IPlayer.IListener"/> implementation.
/// While this method does not seem to have any references, it's invoked at runtime.
/// </remarks>
public void OnPlaybackStateChanged(int playbackState)
{
if (MediaElement.Source is null)
{
return;
}
MediaElementState newState = MediaElement.CurrentState;
switch (playbackState)
{
case IPlayer.StateBuffering:
newState = MediaElementState.Buffering;
break;
case IPlayer.StateEnded:
newState = MediaElementState.Stopped;
MediaElement.MediaEnded();
break;
case IPlayer.StateReady:
seekToTaskCompletionSource?.TrySetResult();
break;
}
MediaElement.CurrentStateChanged(newState);
}
/// <summary>
/// Occurs when ExoPlayer encounters an error.
/// </summary>
/// <paramref name="error">An instance of <seealso cref="PlaybackException"/> containing details of the error.</paramref>
/// <remarks>
/// This is part of the <see cref="IPlayer.IListener"/> implementation.
/// While this method does not seem to have any references, it's invoked at runtime.
/// </remarks>
public void OnPlayerError(PlaybackException? error)
{
var errorMessage = string.Empty;
var errorCode = string.Empty;
var errorCodeName = string.Empty;
if (!string.IsNullOrWhiteSpace(error?.LocalizedMessage))
{
errorMessage = $"Error message: {error.LocalizedMessage}";
}
if (error?.ErrorCode is not null)
{
errorCode = $"Error code: {error?.ErrorCode}";
}
if (!string.IsNullOrWhiteSpace(error?.ErrorCodeName))
{
errorCode = $"Error codename: {error?.ErrorCodeName}";
}
var message = string.Join(", ", new[]
{
errorCodeName,
errorCode,
errorMessage
}.Where(s => !string.IsNullOrEmpty(s)));
MediaElement.MediaFailed(new MediaFailedEventArgs(message));
Logger?.LogError("{logMessage}", message);
}
/// <summary>
/// Invoked when a seek operation has been processed.
/// </summary>
/// <remarks>
/// This is part of the <see cref="IPlayer.IListener"/> implementation.
/// While this method does not seem to have any references, it's invoked at runtime.
/// </remarks>
public void OnSeekProcessed()
{
// Deprecated in ExoPlayer v2.12.0
// Use OnPlaybackStateChanged with STATE_READY instead: https://stackoverflow.com/a/65745607/5953643
}
/// <summary>
/// Occurs when ExoPlayer changes volume.
/// </summary>
/// <param name="volume">The new value for volume.</param>
/// <remarks>
/// This is part of the <see cref="IPlayer.IListener"/> implementation.
/// While this method does not seem to have any references, it's invoked at runtime.
/// </remarks>
public void OnVolumeChanged(float volume)
{
if (Player is null)
{
return;
}
// When currently muted, ignore
if (MediaElement.ShouldMute)
{
return;
}
MediaElement.Volume = volume;
}
protected virtual partial void PlatformPlay()
{
if (Player is null || MediaElement.Source is null)
{
return;
}
Player.Prepare();
Player.Play();
}
protected virtual partial void PlatformPause()
{
if (Player is null || MediaElement.Source is null)
{
return;
}
Player.Pause();
}
protected virtual async partial Task PlatformSeek(TimeSpan position, CancellationToken token)
{
if (Player is null)
{
throw new InvalidOperationException($"{nameof(IExoPlayer)} is not yet initialized");
}
await seekToSemaphoreSlim.WaitAsync(token);
seekToTaskCompletionSource = new();
try
{
Player.SeekTo((long)position.TotalMilliseconds);
await seekToTaskCompletionSource.Task.WaitAsync(token);
MediaElement.SeekCompleted();
}
finally
{
seekToSemaphoreSlim.Release();
}
}
protected virtual partial void PlatformStop()
{
if (Player is null || MediaElement.Source is null)
{
return;
}
// Stops and resets the media player
Player.SeekTo(0);
Player.Stop();
MediaElement.Position = TimeSpan.Zero;
}
protected virtual partial void PlatformUpdateSource()
{
var hasSetSource = false;
if (Player is null)
{
return;
}
if (MediaElement.Source is null)
{
Player.ClearMediaItems();
MediaElement.Duration = TimeSpan.Zero;
MediaElement.CurrentStateChanged(MediaElementState.None);
return;
}
MediaElement.CurrentStateChanged(MediaElementState.Opening);
Player.PlayWhenReady = MediaElement.ShouldAutoPlay;
if (MediaElement.Source is UriMediaSource uriMediaSource)
{
var uri = uriMediaSource.Uri;
if (!string.IsNullOrWhiteSpace(uri?.AbsoluteUri))
{
Player.SetMediaItem(MediaItem.FromUri(uri.AbsoluteUri));
Player.Prepare();
hasSetSource = true;
}
}
else if (MediaElement.Source is FileMediaSource fileMediaSource)
{
var filePath = fileMediaSource.Path;
if (!string.IsNullOrWhiteSpace(filePath))
{
Player.SetMediaItem(MediaItem.FromUri(filePath));
Player.Prepare();
hasSetSource = true;
}
}
else if (MediaElement.Source is ResourceMediaSource resourceMediaSource)
{
var package = PlayerView?.Context?.PackageName ?? "";
var path = resourceMediaSource.Path;
if (!string.IsNullOrWhiteSpace(path))
{
var assetFilePath = $"asset://{package}{Path.PathSeparator}{path}";
Player.SetMediaItem(MediaItem.FromUri(assetFilePath));
Player.Prepare();
hasSetSource = true;
}
}
if (hasSetSource && Player.PlayerError is null)
{
MediaElement.MediaOpened();
}
}
protected virtual partial void PlatformUpdateAspect()
{
if (PlayerView is null)
{
return;
}
PlayerView.ResizeMode = MediaElement.Aspect switch
{
Aspect.AspectFill => AspectRatioFrameLayout.ResizeModeZoom,
Aspect.Fill => AspectRatioFrameLayout.ResizeModeFill,
Aspect.Center or Aspect.AspectFit => AspectRatioFrameLayout.ResizeModeFit,
_ => throw new NotSupportedException($"{nameof(Aspect)}: {MediaElement.Aspect} is not yet supported")
};
}
protected virtual partial void PlatformUpdateSpeed()
{
if (Player is null)
{
return;
}
// First time we're getting a playback speed, set initial value
previousSpeed ??= MediaElement.Speed;
if (MediaElement.Speed > 0)
{
Player.SetPlaybackSpeed((float)MediaElement.Speed);
if (previousSpeed == 0)
{
Player.Play();
}
previousSpeed = MediaElement.Speed;
}
else
{
previousSpeed = 0;
Player.Pause();
}
}
protected virtual partial void PlatformUpdateShouldShowPlaybackControls()
{
if (PlayerView is null)
{
return;
}
PlayerView.UseController = MediaElement.ShouldShowPlaybackControls;
}
protected virtual partial void PlatformUpdatePosition()
{
if (Player is null)
{
return;
}
if (MediaElement.Duration != TimeSpan.Zero)
{
MediaElement.Position = TimeSpan.FromMilliseconds(Player.CurrentPosition);
}
}
protected virtual partial void PlatformUpdateVolume()
{
if (Player is null)
{
return;
}
// If the user changes while muted, change the internal field
// and do not update the actual volume.
if (MediaElement.ShouldMute)
{
volumeBeforeMute = (float)MediaElement.Volume;
return;
}
Player.Volume = (float)MediaElement.Volume;
}
protected virtual partial void PlatformUpdateShouldKeepScreenOn()
{
if (PlayerView is null)
{
return;
}
PlayerView.KeepScreenOn = MediaElement.ShouldKeepScreenOn;
}
protected virtual partial void PlatformUpdateShouldMute()
{
if (Player is null)
{
return;
}
// We're going to muted state, capture current volume first
// so we can restore later
if (MediaElement.ShouldMute)
{
volumeBeforeMute = Player.Volume;
}
else if (!AreFloatingPointNumbersEqual(volumeBeforeMute, Player.Volume) && Player.Volume > 0)
{
volumeBeforeMute = Player.Volume;
}
Player.Volume = MediaElement.ShouldMute ? 0 : volumeBeforeMute;
}
protected virtual partial void PlatformUpdateShouldLoopPlayback()
{
if (Player is null)
{
return;
}
Player.RepeatMode = MediaElement.ShouldLoopPlayback ? IPlayer.RepeatModeOne : IPlayer.RepeatModeOff;
}
#region IPlayer.IListener implementation method stubs
public void OnAudioAttributesChanged(AudioAttributes? audioAttributes) { }
public void OnAudioSessionIdChanged(int audioSessionId) { }
public void OnAvailableCommandsChanged(IPlayer.Commands? availableCommands) { }
public void OnCues(CueGroup? cueGroup) { }
public void OnCues(List<Cue> cues) { }
public void OnDeviceInfoChanged(Com.Google.Android.Exoplayer2.DeviceInfo? deviceInfo) { }
public void OnDeviceVolumeChanged(int volume, bool muted) { }
public void OnEvents(IPlayer? player, IPlayer.Events? events) { }
public void OnIsLoadingChanged(bool isLoading) { }
public void OnIsPlayingChanged(bool isPlaying) { }
public void OnLoadingChanged(bool isLoading) { }
public void OnMaxSeekToPreviousPositionChanged(long maxSeekToPreviousPositionMs) { }
public void OnMediaItemTransition(MediaItem? mediaItem, int transition) { }
public void OnMediaMetadataChanged(MediaMetadata? mediaMetadata) { }
public void OnMetadata(Metadata? metadata) { }
public void OnPlaybackSuppressionReasonChanged(int playbackSuppressionReason) { }
public void OnPlayerErrorChanged(PlaybackException? error) { }
public void OnPlaylistMetadataChanged(MediaMetadata? mediaMetadata) { }
public void OnPlayWhenReadyChanged(bool playWhenReady, int reason) { }
public void OnPositionDiscontinuity(int reason) { }
public void OnPositionDiscontinuity(IPlayer.PositionInfo oldPosition, IPlayer.PositionInfo newPosition, int reason) { }
public void OnRenderedFirstFrame() { }
public void OnRepeatModeChanged(int repeatMode) { }
public void OnSeekBackIncrementChanged(long seekBackIncrementMs) { }
public void OnSeekForwardIncrementChanged(long seekForwardIncrementMs) { }
public void OnShuffleModeEnabledChanged(bool shuffleModeEnabled) { }
public void OnSkipSilenceEnabledChanged(bool skipSilenceEnabled) { }
public void OnSurfaceSizeChanged(int width, int height) { }
public void OnTimelineChanged(Timeline? timeline, int reason) { }
public void OnTracksChanged(Tracks? tracks) { }
public void OnTrackSelectionParametersChanged(TrackSelectionParameters? trackSelectionParameters) { }
public void OnVideoSizeChanged(VideoSize? videoSize) { }
#endregion
}