// Copyright © 2017 Paddy Xu
//
// This file is part of QuickLook program.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see .
using System;
using System.Diagnostics;
using System.Windows.Controls;
using System.Windows.Input;
using Unosquare.FFmpegMediaElement;
namespace QuickLook.Plugin.VideoViewer
{
///
/// Interaction logic for UserControl1.xaml
///
public partial class ViewerPanel : UserControl, IDisposable
{
private readonly ContextObject _context;
public ViewerPanel(ContextObject context)
{
InitializeComponent();
_context = context;
buttonPlayPause.MouseLeftButtonUp += TogglePlayPause;
//buttonMute.MouseLeftButtonUp += (sender, e) =>
//{
// mediaElement.IsMuted = false;
// buttonMute.Visibility = Visibility.Collapsed;
//};
buttonMute.MouseLeftButtonUp += (sender, e) => mediaElement.IsMuted = !mediaElement.IsMuted;
buttonStop.MouseLeftButtonUp += (sender, e) => mediaElement.Stop();
buttonBackward.MouseLeftButtonUp += (sender, e) => SeekBackward();
buttonForward.MouseLeftButtonUp += (sender, e) => SeekForward();
mediaElement.MediaErrored += ShowErrorNotification;
mediaElement.MediaFailed += ShowErrorNotification;
}
public void Dispose()
{
mediaElement?.Dispose();
mediaElement = null;
}
private void SeekBackward()
{
var pos = Convert.ToDouble(mediaElement.Position);
var len = mediaElement.NaturalDuration;
var delta = TimeSpan.FromSeconds(15).TotalSeconds;
mediaElement.Position = Convert.ToDecimal(pos - delta < 0 ? 0 : pos - delta);
}
private void SeekForward()
{
var pos = Convert.ToDouble(mediaElement.Position);
var len = mediaElement.NaturalDuration;
var delta = TimeSpan.FromSeconds(15).TotalSeconds;
mediaElement.Position = Convert.ToDecimal(pos + delta > len ? len : pos + delta);
}
private void TogglePlayPause(object sender, MouseButtonEventArgs e)
{
if (mediaElement.IsPlaying)
mediaElement.Pause();
else
mediaElement.Play();
}
[DebuggerNonUserCode]
private void ShowErrorNotification(object sender, MediaErrorRoutedEventArgs e)
{
_context.ShowNotification("", "An error occurred while loading the video.");
mediaElement.Stop();
Dispose();
throw new Exception("fallback to default viewer.");
}
public void LoadAndPlay(string path)
{
mediaElement.Source = new Uri(path);
mediaElement.IsMuted = true;
mediaElement.Play();
}
~ViewerPanel()
{
GC.SuppressFinalize(this);
Dispose();
}
}
}