video-preview/MainForm.cs

330 lines
9.6 KiB
C#
Raw Normal View History

2021-10-03 17:43:59 +00:00
using MediaToolkit;
using MediaToolkit.Model;
using MediaToolkit.Options;
2021-11-03 00:08:07 +00:00
using RyzStudio.IO;
2021-10-03 17:43:59 +00:00
using RyzStudio.Windows.Forms;
using System;
2021-11-03 00:08:07 +00:00
using System.Collections.Generic;
2021-10-03 17:43:59 +00:00
using System.Drawing;
using System.IO;
2021-11-03 00:08:07 +00:00
using System.Linq;
2021-10-03 17:43:59 +00:00
using System.Threading.Tasks;
using System.Windows.Forms;
namespace VideoPreview
{
public partial class MainForm : Form
{
protected readonly Random randy;
protected OptionsForm optionsForm = null;
protected bool isBusy = false;
protected string videoFilename = null;
protected TimeSpan videoDuration = TimeSpan.FromSeconds(0);
public MainForm()
{
InitializeComponent();
randy = new Random();
textBox1.InnerTextBox.ReadOnly = true;
textBox1.InnerTextBox.BackColor = Color.White;
textBox1.InnerTextBox.TextChanged += textBox1_TextChanged;
}
protected override void OnFormClosing(FormClosingEventArgs e)
{
if (this.IsBusy)
{
e.Cancel = true;
return;
}
base.OnFormClosing(e);
}
public bool IsBusy
{
get => isBusy;
set
{
isBusy = value;
ThreadControl.SetValue(pictureBox1, (isBusy ? AppResource.loading_block : null));
ThreadControl.SetEnable(textBox1, !isBusy);
ThreadControl.SetEnable(button1, !isBusy);
ThreadControl.SetEnable(button2, !isBusy);
}
}
private void Form1_DragOver(object sender, DragEventArgs e)
{
e.Effect = (e.Data.GetDataPresent(DataFormats.FileDrop) ? DragDropEffects.Copy : DragDropEffects.None);
}
private async void Form1_DragDrop(object sender, DragEventArgs e)
{
string[] fileList = e.Data.GetData(DataFormats.FileDrop) as string[];
if (fileList == null)
{
return;
}
if (fileList.Length <= 0)
{
return;
}
await ReadVideoFile(fileList[0]);
}
private async void textBox1_TextChanged(object sender, EventArgs e)
{
await ReadVideoFile(textBox1.Text);
}
public AppSession CurrentSession { get; set; } = new AppSession();
2021-11-03 00:08:07 +00:00
/// <summary>
/// Refresh
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private async void button3_MouseClick(object sender, MouseEventArgs e)
2021-10-03 17:43:59 +00:00
{
2021-11-03 00:08:07 +00:00
await ReadVideoFile(textBox1.Text);
2021-10-03 17:43:59 +00:00
}
2021-11-03 00:08:07 +00:00
/// <summary>
/// Options
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
2021-10-03 17:43:59 +00:00
private void button2_MouseClick(object sender, MouseEventArgs e)
{
if (this.IsBusy)
{
return;
}
if (optionsForm == null) optionsForm = new OptionsForm(this.CurrentSession);
if (optionsForm.ShowDialog() == DialogResult.OK)
{
this.CurrentSession = optionsForm.Session;
this.TopMost = this.CurrentSession.AlwaysOnTop;
}
}
2021-11-03 00:08:07 +00:00
/// <summary>
/// Next file
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private async void button4_MouseClick(object sender, MouseEventArgs e)
2021-10-06 11:57:50 +00:00
{
2021-11-03 00:08:07 +00:00
await Task.Run(() =>
{
if (this.IsBusy) return;
if (string.IsNullOrWhiteSpace(textBox1.Text)) return;
string path = AccessibleDirectory.GetNextFile(textBox1.Text, "*.avi;*.mkv;*.mp4;*.ogm;*.mov;*.mpg;*.mpeg");
if (string.IsNullOrWhiteSpace(path)) return;
textBox1.Text = path;
});
}
/// <summary>
/// Close
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void button1_MouseClick(object sender, MouseEventArgs e)
{
this.Close();
2021-10-06 11:57:50 +00:00
}
2021-10-03 17:43:59 +00:00
protected TimeSpan CalcRandomTimeSpan(TimeSpan duration)
{
int mm = randy.Next(0, (int)Math.Floor(duration.TotalMinutes));
int ss = randy.Next(0, duration.Seconds);
return new TimeSpan(0, mm, ss);
}
protected void Clear()
{
videoFilename = null;
videoDuration = TimeSpan.FromSeconds(0);
2021-10-06 11:57:50 +00:00
textBox1.Text = string.Empty;
2021-10-03 17:43:59 +00:00
ThreadControl.SetText(label5, "-");
ThreadControl.SetText(label7, "-");
ThreadControl.SetText(label2, "-");
ThreadControl.Clear(flowLayoutPanel1);
}
protected Label CreateLabel(TimeSpan duration)
{
Label label = new Label();
label.Padding = new Padding(0);
label.Margin = new Padding(0, 0, 0, 10);
label.Text = string.Format("{0}h {1}m {2}s", duration.Hours, duration.Minutes, duration.Seconds);
return label;
}
protected PictureBox CreatePictureBox(string filename, int width, int height)
{
PictureBox imageBox = new PictureBox()
{
BackColor = Color.White,
Margin = new Padding(0, 0, 0, 0),
Padding = new Padding(0),
SizeMode = PictureBoxSizeMode.Zoom,
Width = width,
Height = height,
};
imageBox.Load(filename);
return imageBox;
}
protected void DeleteFile(string filename)
{
try
{
File.Delete(filename);
}
catch
{
// do nothing
}
}
protected decimal ParseFrameSizeRatio(string videoSize)
{
if (string.IsNullOrWhiteSpace(videoSize))
{
return 0;
}
string[] parts = videoSize.Trim().Split("x");
if (parts.Length != 2)
{
return 0;
}
int w;
if (!int.TryParse(parts[0], out w))
{
return 0;
}
int h;
if (!int.TryParse(parts[1], out h))
{
return 0;
}
try
{
return decimal.Divide(w, h);
}
catch
{
return 0;
}
}
protected async Task ReadVideoFile(string filename)
{
await Task.Run(() =>
{
2021-11-03 00:08:07 +00:00
if (this.IsBusy) return;
2021-10-03 17:43:59 +00:00
this.IsBusy = true;
Clear();
MediaFile inputFile = new MediaFile
{
Filename = filename
};
using (Engine engine = new Engine())
{
try
{
engine.GetMetadata(inputFile);
}
catch (Exception exc)
{
MessageBox.Show(exc.Message);
this.IsBusy = false;
return;
}
}
videoFilename = filename;
videoDuration = inputFile.Metadata.Duration;
2021-10-06 11:57:50 +00:00
textBox1.Text = videoFilename;
2021-10-03 17:43:59 +00:00
ThreadControl.SetText(label5, inputFile.Metadata.VideoData.Format ?? string.Empty);
ThreadControl.SetText(label7, (inputFile.Metadata.VideoData.FrameSize ?? string.Empty) + " @ " + inputFile.Metadata.VideoData.Fps.ToString() + "FPS");
ThreadControl.SetText(label2, string.Format("{0}h {1}m {2}s", videoDuration.Hours, videoDuration.Minutes, videoDuration.Seconds));
// calculate frame dimensions ratio
decimal frameRatio = ParseFrameSizeRatio(inputFile.Metadata.VideoData.FrameSize);
if (frameRatio <= 0)
{
this.IsBusy = false;
return;
}
int thumbnailWidth = flowLayoutPanel1.ClientSize.Width - flowLayoutPanel1.Padding.Horizontal - SystemInformation.VerticalScrollBarWidth;
int thumbnailHeight = (int)Math.Round(decimal.Divide((decimal)thumbnailWidth, frameRatio));
using (Engine engine = new Engine())
{
for (int i = 0; i < this.CurrentSession.NoFrames; i++)
{
TimeSpan ts = CalcRandomTimeSpan(videoDuration);
2021-10-06 11:57:50 +00:00
string thumbnailFilename = Path.ChangeExtension(Path.GetTempFileName(), "jpg");
2021-10-03 17:43:59 +00:00
ConversionOptions options = new ConversionOptions
{
Seek = ts,
CustomWidth = thumbnailWidth,
CustomHeight = thumbnailHeight
};
2021-10-06 11:57:50 +00:00
engine.GetThumbnail(inputFile, new MediaFile { Filename = thumbnailFilename }, options);
2021-10-03 17:43:59 +00:00
2021-10-06 11:57:50 +00:00
PictureBox imageBox = CreatePictureBox(thumbnailFilename, thumbnailWidth, thumbnailHeight);
2021-10-03 17:43:59 +00:00
ThreadControl.Add(flowLayoutPanel1, imageBox);
Label label = CreateLabel(ts);
ThreadControl.Add(flowLayoutPanel1, label);
// clean-up
2021-10-06 11:57:50 +00:00
DeleteFile(thumbnailFilename);
2021-10-03 17:43:59 +00:00
}
}
this.IsBusy = false;
});
}
}
}