mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
3abaf36c49
Former-commit-id: 74ea8a42e0
288 lines
9.2 KiB
C#
288 lines
9.2 KiB
C#
using FFMpegCore.Enums;
|
|
using FFMpegCore.FFMPEG.Argument;
|
|
using FFMpegCore.FFMPEG.Enums;
|
|
using FFMpegCore.Test;
|
|
using FFMpegCore.Test.Resources;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using System.Collections.Generic;
|
|
using System.Drawing.Imaging;
|
|
using System.IO;
|
|
using System.Linq;
|
|
|
|
namespace FFMpegCore.Test
|
|
{
|
|
[TestClass]
|
|
public class VideoTest : BaseTest
|
|
{
|
|
public bool Convert(VideoType type, bool multithreaded = false, VideoSize size = VideoSize.Original)
|
|
{
|
|
var output = Input.OutputLocation(type);
|
|
|
|
try
|
|
{
|
|
var input = VideoInfo.FromFileInfo(Input);
|
|
|
|
Encoder.Convert(input, output, type, size: size, multithreaded: multithreaded);
|
|
|
|
var outputVideo = new VideoInfo(output.FullName);
|
|
|
|
Assert.IsTrue(File.Exists(output.FullName));
|
|
Assert.AreEqual(outputVideo.Duration, input.Duration);
|
|
if (size == VideoSize.Original)
|
|
{
|
|
Assert.AreEqual(outputVideo.Width, input.Width);
|
|
Assert.AreEqual(outputVideo.Height, input.Height);
|
|
} else
|
|
{
|
|
Assert.AreNotEqual(outputVideo.Width, input.Width);
|
|
Assert.AreNotEqual(outputVideo.Height, input.Height);
|
|
Assert.AreEqual(outputVideo.Height, (int)size);
|
|
}
|
|
return File.Exists(output.FullName) &&
|
|
outputVideo.Duration == input.Duration &&
|
|
(
|
|
(
|
|
size == VideoSize.Original &&
|
|
outputVideo.Width == input.Width &&
|
|
outputVideo.Height == input.Height
|
|
) ||
|
|
(
|
|
size != VideoSize.Original &&
|
|
outputVideo.Width != input.Width &&
|
|
outputVideo.Height != input.Height &&
|
|
outputVideo.Height == (int)size
|
|
)
|
|
);
|
|
}
|
|
finally
|
|
{
|
|
if (File.Exists(output.FullName))
|
|
File.Delete(output.FullName);
|
|
}
|
|
}
|
|
|
|
public void Convert(VideoType type, ArgumentContainer container)
|
|
{
|
|
var output = Input.OutputLocation(type);
|
|
|
|
try
|
|
{
|
|
var input = VideoInfo.FromFileInfo(Input);
|
|
|
|
var arguments = new ArgumentContainer();
|
|
arguments.Add(new InputArgument(input));
|
|
foreach (var arg in container)
|
|
{
|
|
arguments.Add(arg.Value);
|
|
}
|
|
arguments.Add(new OutputArgument(output));
|
|
|
|
var scaling = container.Find<ScaleArgument>();
|
|
|
|
Encoder.Convert(arguments);
|
|
|
|
var outputVideo = new VideoInfo(output.FullName);
|
|
|
|
Assert.IsTrue(File.Exists(output.FullName));
|
|
Assert.AreEqual(outputVideo.Duration, input.Duration);
|
|
|
|
if (scaling == null)
|
|
{
|
|
Assert.AreEqual(outputVideo.Width, input.Width);
|
|
Assert.AreEqual(outputVideo.Height, input.Height);
|
|
} else
|
|
{
|
|
if (scaling.Value.Width != -1)
|
|
{
|
|
Assert.AreEqual(outputVideo.Width, scaling.Value.Width);
|
|
}
|
|
|
|
if (scaling.Value.Height != -1)
|
|
{
|
|
Assert.AreEqual(outputVideo.Height, scaling.Value.Height);
|
|
}
|
|
|
|
Assert.AreNotEqual(outputVideo.Width, input.Width);
|
|
Assert.AreNotEqual(outputVideo.Height, input.Height);
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
if (File.Exists(output.FullName))
|
|
File.Delete(output.FullName);
|
|
}
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Video_ToMP4()
|
|
{
|
|
Convert(VideoType.Mp4);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Video_ToMP4_Args()
|
|
{
|
|
var container = new ArgumentContainer();
|
|
container.Add(new VideoCodecArgument(VideoCodec.LibX264));
|
|
Convert(VideoType.Mp4, container);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Video_ToTS()
|
|
{
|
|
Convert(VideoType.Ts);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Video_ToTS_Args()
|
|
{
|
|
var container = new ArgumentContainer();
|
|
container.Add(new CopyArgument());
|
|
container.Add(new BitStreamFilterArgument(Channel.Video, Filter.H264_Mp4ToAnnexB));
|
|
container.Add(new ForceFormatArgument(VideoCodec.MpegTs));
|
|
Convert(VideoType.Ts, container);
|
|
}
|
|
|
|
|
|
[TestMethod]
|
|
public void Video_ToOGV_Resize()
|
|
{
|
|
Convert(VideoType.Ogv, true, VideoSize.Ed);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Video_ToOGV_Resize_Args()
|
|
{
|
|
var container = new ArgumentContainer();
|
|
container.Add(new ScaleArgument(VideoSize.Ed));
|
|
container.Add(new VideoCodecArgument(VideoCodec.LibTheora));
|
|
Convert(VideoType.Ogv, container);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Video_ToMP4_Resize()
|
|
{
|
|
Convert(VideoType.Mp4, true, VideoSize.Ed);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Video_ToMP4_Resize_Args()
|
|
{
|
|
var container = new ArgumentContainer();
|
|
container.Add(new ScaleArgument(VideoSize.Ld));
|
|
container.Add(new VideoCodecArgument(VideoCodec.LibX264));
|
|
Convert(VideoType.Mp4, container);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Video_ToOGV()
|
|
{
|
|
Convert(VideoType.Ogv);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Video_ToMP4_MultiThread()
|
|
{
|
|
Convert(VideoType.Mp4, true);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Video_ToTS_MultiThread()
|
|
{
|
|
Convert(VideoType.Ts, true);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Video_ToOGV_MultiThread()
|
|
{
|
|
Convert(VideoType.Ogv, true);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Video_Snapshot()
|
|
{
|
|
var output = Input.OutputLocation(ImageType.Png);
|
|
|
|
try
|
|
{
|
|
var input = VideoInfo.FromFileInfo(Input);
|
|
|
|
using (var bitmap = Encoder.Snapshot(input, output))
|
|
{
|
|
Assert.AreEqual(input.Width, bitmap.Width);
|
|
Assert.AreEqual(input.Height, bitmap.Height);
|
|
Assert.AreEqual(bitmap.RawFormat, ImageFormat.Png);
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
if (File.Exists(output.FullName))
|
|
File.Delete(output.FullName);
|
|
}
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Video_Join()
|
|
{
|
|
var output = Input.OutputLocation(VideoType.Mp4);
|
|
var newInput = Input.OutputLocation(VideoType.Mp4, "duplicate");
|
|
try
|
|
{
|
|
var input = VideoInfo.FromFileInfo(Input);
|
|
File.Copy(input.FullName, newInput.FullName);
|
|
var input2 = VideoInfo.FromFileInfo(newInput);
|
|
|
|
var result = Encoder.Join(output, input, input2);
|
|
|
|
Assert.IsTrue(File.Exists(output.FullName));
|
|
Assert.AreEqual(input.Duration.TotalSeconds * 2, result.Duration.TotalSeconds);
|
|
Assert.AreEqual(input.Height, result.Height);
|
|
Assert.AreEqual(input.Width, result.Width);
|
|
}
|
|
finally
|
|
{
|
|
if (File.Exists(output.FullName))
|
|
File.Delete(output.FullName);
|
|
|
|
if (File.Exists(newInput.FullName))
|
|
File.Delete(newInput.FullName);
|
|
}
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Video_Join_Image_Sequence()
|
|
{
|
|
try
|
|
{
|
|
var imageSet = new List<ImageInfo>();
|
|
Directory.EnumerateFiles(VideoLibrary.ImageDirectory.FullName)
|
|
.Where(file => file.ToLower().EndsWith(".png"))
|
|
.ToList()
|
|
.ForEach(file =>
|
|
{
|
|
for (int i = 0; i < 15; i++)
|
|
{
|
|
imageSet.Add(new ImageInfo(file));
|
|
}
|
|
});
|
|
|
|
var result = Encoder.JoinImageSequence(VideoLibrary.ImageJoinOutput, images: imageSet.ToArray());
|
|
|
|
VideoLibrary.ImageJoinOutput.Refresh();
|
|
|
|
Assert.IsTrue(VideoLibrary.ImageJoinOutput.Exists);
|
|
Assert.AreEqual(3, result.Duration.Seconds);
|
|
Assert.AreEqual(imageSet.First().Width, result.Width);
|
|
Assert.AreEqual(imageSet.First().Height, result.Height);
|
|
}
|
|
finally
|
|
{
|
|
VideoLibrary.ImageJoinOutput.Refresh();
|
|
if (VideoLibrary.ImageJoinOutput.Exists)
|
|
{
|
|
VideoLibrary.ImageJoinOutput.Delete();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|