Enhance error handling and logging in M3U and XML downloading processes; implement proper application shutdown in MainViewModel; introduce PlaylistSettings for configurable URLs and timeout settings.

This commit is contained in:
Vladimir
2026-03-22 09:14:39 +02:00
parent 59d0ed1ab5
commit a6ec011e79
9 changed files with 270 additions and 181 deletions
+4 -72
View File
@@ -1,74 +1,6 @@
using Microsoft.Maui.Handlers;
using static Microsoft.Maui.ApplicationModel.Permissions;
namespace TV_Player.MAUI
namespace TV_Player.MAUI
{
//public partial class MediaViewerHandler : ViewHandler<MediaViewer, VideoView>
//{
// VideoView _videoView;
// LibVLC _libVLC;
// LibVLCSharp.Shared.MediaPlayer _mediaPlayer;
// protected override VideoView CreatePlatformView() => new VideoView(Context);
// protected override void ConnectHandler(VideoView nativeView)
// {
// base.ConnectHandler(nativeView);
// _libVLC = new LibVLC(enableDebugLogs: true);
// _mediaPlayer = new LibVLCSharp.Shared.MediaPlayer(_libVLC)
// {
// EnableHardwareDecoding = true
// };
// _videoView = nativeView ?? new VideoView(Context);
// _videoView.MediaPlayer = _mediaPlayer;
// HandleUrl(VirtualView.StreamUrl);
// base.ConnectHandler(nativeView);
// }
// protected override void DisconnectHandler(VideoView nativeView)
// {
// nativeView.Dispose();
// base.DisconnectHandler(nativeView);
// }
// private void HandleUrl(string url)
// {
// try
// {
// if (url.EndsWith("/"))
// {
// url = url.TrimEnd('/');
// }
// //url = "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4";
// if (!string.IsNullOrEmpty(url))
// {
// var media = new Media(_libVLC, url, FromType.FromLocation);
// _mediaPlayer.NetworkCaching = 1500;
// if (_mediaPlayer.Media != null)
// {
// _mediaPlayer.Stop();
// _mediaPlayer.Media.Dispose();
// }
// _mediaPlayer.Media = media;
// _mediaPlayer.Mute = true;
// _videoView.MediaPlayer.Play();
// }
// }
// catch (Exception ex)
// {
// }
// }
//}
// AndroidHandler - Platform-specific implementation for Android video player
// Currently using built-in media player implementation
// Reference: LibVLC implementation was considered but currently not in use
}