2023-04-12 22:10:37 +02:00
|
|
|
|
using FFMpegCore.Test.Resources;
|
2022-07-19 22:16:42 +02:00
|
|
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
2020-03-01 12:55:57 +01:00
|
|
|
|
|
|
|
|
|
namespace FFMpegCore.Test
|
|
|
|
|
{
|
|
|
|
|
[TestClass]
|
|
|
|
|
public class FFProbeTests
|
|
|
|
|
{
|
2020-12-07 00:47:47 +01:00
|
|
|
|
[TestMethod]
|
|
|
|
|
public async Task Audio_FromStream_Duration()
|
|
|
|
|
{
|
2020-12-07 21:00:43 +01:00
|
|
|
|
var fileAnalysis = await FFProbe.AnalyseAsync(TestResources.WebmVideo);
|
|
|
|
|
await using var inputStream = File.OpenRead(TestResources.WebmVideo);
|
2020-12-07 00:47:47 +01:00
|
|
|
|
var streamAnalysis = await FFProbe.AnalyseAsync(inputStream);
|
|
|
|
|
Assert.IsTrue(fileAnalysis.Duration == streamAnalysis.Duration);
|
2020-03-01 12:55:57 +01:00
|
|
|
|
}
|
2021-02-07 01:50:12 +01:00
|
|
|
|
|
2021-10-21 20:36:54 +02:00
|
|
|
|
[TestMethod]
|
|
|
|
|
public void FrameAnalysis_Sync()
|
|
|
|
|
{
|
|
|
|
|
var frameAnalysis = FFProbe.GetFrames(TestResources.WebmVideo);
|
2022-07-19 22:16:42 +02:00
|
|
|
|
|
2021-10-21 20:36:54 +02:00
|
|
|
|
Assert.AreEqual(90, frameAnalysis.Frames.Count);
|
|
|
|
|
Assert.IsTrue(frameAnalysis.Frames.All(f => f.PixelFormat == "yuv420p"));
|
|
|
|
|
Assert.IsTrue(frameAnalysis.Frames.All(f => f.Height == 360));
|
|
|
|
|
Assert.IsTrue(frameAnalysis.Frames.All(f => f.Width == 640));
|
|
|
|
|
Assert.IsTrue(frameAnalysis.Frames.All(f => f.MediaType == "video"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
public async Task FrameAnalysis_Async()
|
|
|
|
|
{
|
|
|
|
|
var frameAnalysis = await FFProbe.GetFramesAsync(TestResources.WebmVideo);
|
2022-07-19 22:16:42 +02:00
|
|
|
|
|
2021-10-21 20:36:54 +02:00
|
|
|
|
Assert.AreEqual(90, frameAnalysis.Frames.Count);
|
|
|
|
|
Assert.IsTrue(frameAnalysis.Frames.All(f => f.PixelFormat == "yuv420p"));
|
|
|
|
|
Assert.IsTrue(frameAnalysis.Frames.All(f => f.Height == 360));
|
|
|
|
|
Assert.IsTrue(frameAnalysis.Frames.All(f => f.Width == 640));
|
|
|
|
|
Assert.IsTrue(frameAnalysis.Frames.All(f => f.MediaType == "video"));
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-08 15:28:16 +01:00
|
|
|
|
[TestMethod]
|
|
|
|
|
public async Task PacketAnalysis_Async()
|
|
|
|
|
{
|
|
|
|
|
var packetAnalysis = await FFProbe.GetPacketsAsync(TestResources.WebmVideo);
|
|
|
|
|
var packets = packetAnalysis.Packets;
|
|
|
|
|
Assert.AreEqual(96, packets.Count);
|
|
|
|
|
Assert.IsTrue(packets.All(f => f.CodecType == "video"));
|
2023-10-05 09:14:47 +02:00
|
|
|
|
Assert.IsTrue(packets[0].Flags.StartsWith("K_"));
|
2021-11-08 15:28:16 +01:00
|
|
|
|
Assert.AreEqual(1362, packets.Last().Size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
public void PacketAnalysis_Sync()
|
|
|
|
|
{
|
|
|
|
|
var packets = FFProbe.GetPackets(TestResources.WebmVideo).Packets;
|
2022-07-19 22:16:42 +02:00
|
|
|
|
|
2021-11-08 15:28:16 +01:00
|
|
|
|
Assert.AreEqual(96, packets.Count);
|
|
|
|
|
Assert.IsTrue(packets.All(f => f.CodecType == "video"));
|
2023-10-05 09:14:47 +02:00
|
|
|
|
Assert.IsTrue(packets[0].Flags.StartsWith("K_"));
|
2021-11-08 15:28:16 +01:00
|
|
|
|
Assert.AreEqual(1362, packets.Last().Size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
public void PacketAnalysisAudioVideo_Sync()
|
|
|
|
|
{
|
|
|
|
|
var packets = FFProbe.GetPackets(TestResources.Mp4Video).Packets;
|
|
|
|
|
|
|
|
|
|
Assert.AreEqual(216, packets.Count);
|
|
|
|
|
var actual = packets.Select(f => f.CodecType).Distinct().ToList();
|
2022-07-19 22:16:42 +02:00
|
|
|
|
var expected = new List<string> { "audio", "video" };
|
2021-11-08 15:28:16 +01:00
|
|
|
|
CollectionAssert.AreEquivalent(expected, actual);
|
2023-10-05 09:14:47 +02:00
|
|
|
|
Assert.IsTrue(packets.Where(t => t.CodecType == "audio").All(f => f.Flags.StartsWith("K_")));
|
2021-11-08 15:28:16 +01:00
|
|
|
|
Assert.AreEqual(75, packets.Count(t => t.CodecType == "video"));
|
|
|
|
|
Assert.AreEqual(141, packets.Count(t => t.CodecType == "audio"));
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-15 23:43:22 +01:00
|
|
|
|
[DataTestMethod]
|
|
|
|
|
[DataRow("0:00:03.008000", 0, 0, 0, 3, 8)]
|
|
|
|
|
[DataRow("05:12:59.177", 0, 5, 12, 59, 177)]
|
2021-03-15 23:50:11 +01:00
|
|
|
|
[DataRow("149:07:50.911750", 6, 5, 7, 50, 911)]
|
2021-03-15 23:43:22 +01:00
|
|
|
|
[DataRow("00:00:00.83", 0, 0, 0, 0, 830)]
|
|
|
|
|
public void MediaAnalysis_ParseDuration(string duration, int expectedDays, int expectedHours, int expectedMinutes, int expectedSeconds, int expectedMilliseconds)
|
2021-02-07 01:50:12 +01:00
|
|
|
|
{
|
2021-03-15 23:43:22 +01:00
|
|
|
|
var ffprobeStream = new FFProbeStream { Duration = duration };
|
2021-02-07 01:50:12 +01:00
|
|
|
|
|
2023-02-04 23:42:13 +01:00
|
|
|
|
var parsedDuration = MediaAnalysisUtils.ParseDuration(ffprobeStream.Duration);
|
2021-02-07 01:50:12 +01:00
|
|
|
|
|
2021-03-15 23:50:11 +01:00
|
|
|
|
Assert.AreEqual(expectedDays, parsedDuration.Days);
|
|
|
|
|
Assert.AreEqual(expectedHours, parsedDuration.Hours);
|
|
|
|
|
Assert.AreEqual(expectedMinutes, parsedDuration.Minutes);
|
|
|
|
|
Assert.AreEqual(expectedSeconds, parsedDuration.Seconds);
|
|
|
|
|
Assert.AreEqual(expectedMilliseconds, parsedDuration.Milliseconds);
|
2021-02-07 01:50:12 +01:00
|
|
|
|
}
|
|
|
|
|
|
2023-01-28 11:41:19 +01:00
|
|
|
|
[TestMethod, Ignore("Consistently fails on GitHub Workflow ubuntu agents")]
|
2021-03-05 18:06:40 +01:00
|
|
|
|
public async Task Uri_Duration()
|
|
|
|
|
{
|
|
|
|
|
var fileAnalysis = await FFProbe.AnalyseAsync(new Uri("https://github.com/rosenbjerg/FFMpegCore/raw/master/FFMpegCore.Test/Resources/input_3sec.webm"));
|
|
|
|
|
Assert.IsNotNull(fileAnalysis);
|
|
|
|
|
}
|
2022-07-19 22:16:42 +02:00
|
|
|
|
|
2020-03-01 12:55:57 +01:00
|
|
|
|
[TestMethod]
|
|
|
|
|
public void Probe_Success()
|
|
|
|
|
{
|
2020-12-07 00:47:47 +01:00
|
|
|
|
var info = FFProbe.Analyse(TestResources.Mp4Video);
|
2020-10-25 17:11:52 +01:00
|
|
|
|
Assert.AreEqual(3, info.Duration.Seconds);
|
2023-04-12 16:31:26 +02:00
|
|
|
|
Assert.AreEqual(0, info.Chapters.Count);
|
2022-07-19 22:16:42 +02:00
|
|
|
|
|
2021-03-05 18:06:40 +01:00
|
|
|
|
Assert.AreEqual("5.1", info.PrimaryAudioStream!.ChannelLayout);
|
2020-05-09 17:53:03 +02:00
|
|
|
|
Assert.AreEqual(6, info.PrimaryAudioStream.Channels);
|
|
|
|
|
Assert.AreEqual("AAC (Advanced Audio Coding)", info.PrimaryAudioStream.CodecLongName);
|
|
|
|
|
Assert.AreEqual("aac", info.PrimaryAudioStream.CodecName);
|
2020-07-06 23:33:50 +02:00
|
|
|
|
Assert.AreEqual("LC", info.PrimaryAudioStream.Profile);
|
2020-10-25 17:11:52 +01:00
|
|
|
|
Assert.AreEqual(377351, info.PrimaryAudioStream.BitRate);
|
2020-05-09 17:53:03 +02:00
|
|
|
|
Assert.AreEqual(48000, info.PrimaryAudioStream.SampleRateHz);
|
2021-08-09 21:52:39 +02:00
|
|
|
|
Assert.AreEqual("mp4a", info.PrimaryAudioStream.CodecTagString);
|
|
|
|
|
Assert.AreEqual("0x6134706d", info.PrimaryAudioStream.CodecTag);
|
2022-07-19 22:16:42 +02:00
|
|
|
|
|
2021-03-05 18:06:40 +01:00
|
|
|
|
Assert.AreEqual(1471810, info.PrimaryVideoStream!.BitRate);
|
2020-05-09 17:53:03 +02:00
|
|
|
|
Assert.AreEqual(16, info.PrimaryVideoStream.DisplayAspectRatio.Width);
|
|
|
|
|
Assert.AreEqual(9, info.PrimaryVideoStream.DisplayAspectRatio.Height);
|
2022-07-19 22:16:42 +02:00
|
|
|
|
Assert.AreEqual(1, info.PrimaryVideoStream.SampleAspectRatio.Width);
|
|
|
|
|
Assert.AreEqual(1, info.PrimaryVideoStream.SampleAspectRatio.Height);
|
2020-05-09 17:53:03 +02:00
|
|
|
|
Assert.AreEqual("yuv420p", info.PrimaryVideoStream.PixelFormat);
|
2024-09-18 12:08:16 +02:00
|
|
|
|
Assert.AreEqual(31, info.PrimaryVideoStream.Level);
|
2020-05-09 17:53:03 +02:00
|
|
|
|
Assert.AreEqual(1280, info.PrimaryVideoStream.Width);
|
|
|
|
|
Assert.AreEqual(720, info.PrimaryVideoStream.Height);
|
|
|
|
|
Assert.AreEqual(25, info.PrimaryVideoStream.AvgFrameRate);
|
|
|
|
|
Assert.AreEqual(25, info.PrimaryVideoStream.FrameRate);
|
|
|
|
|
Assert.AreEqual("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", info.PrimaryVideoStream.CodecLongName);
|
|
|
|
|
Assert.AreEqual("h264", info.PrimaryVideoStream.CodecName);
|
|
|
|
|
Assert.AreEqual(8, info.PrimaryVideoStream.BitsPerRawSample);
|
|
|
|
|
Assert.AreEqual("Main", info.PrimaryVideoStream.Profile);
|
2021-08-09 21:52:39 +02:00
|
|
|
|
Assert.AreEqual("avc1", info.PrimaryVideoStream.CodecTagString);
|
|
|
|
|
Assert.AreEqual("0x31637661", info.PrimaryVideoStream.CodecTag);
|
2020-05-09 17:53:03 +02:00
|
|
|
|
}
|
2022-07-19 22:16:42 +02:00
|
|
|
|
|
2023-02-04 22:17:39 +01:00
|
|
|
|
[TestMethod]
|
|
|
|
|
public void Probe_Rotation()
|
|
|
|
|
{
|
|
|
|
|
var info = FFProbe.Analyse(TestResources.Mp4Video);
|
|
|
|
|
Assert.AreEqual(0, info.PrimaryVideoStream.Rotation);
|
|
|
|
|
|
|
|
|
|
info = FFProbe.Analyse(TestResources.Mp4VideoRotation);
|
|
|
|
|
Assert.AreEqual(90, info.PrimaryVideoStream.Rotation);
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-25 17:42:50 +01:00
|
|
|
|
[TestMethod, Timeout(10000)]
|
2020-05-09 17:53:03 +02:00
|
|
|
|
public async Task Probe_Async_Success()
|
|
|
|
|
{
|
2020-12-07 00:47:47 +01:00
|
|
|
|
var info = await FFProbe.AnalyseAsync(TestResources.Mp4Video);
|
2020-10-25 17:11:52 +01:00
|
|
|
|
Assert.AreEqual(3, info.Duration.Seconds);
|
2023-02-02 21:19:45 +01:00
|
|
|
|
Assert.AreEqual(8, info.PrimaryVideoStream.BitDepth);
|
2023-02-01 08:09:16 +01:00
|
|
|
|
// This video's audio stream is AAC, which is lossy, so bit depth is meaningless.
|
|
|
|
|
Assert.IsNull(info.PrimaryAudioStream.BitDepth);
|
2020-03-01 12:55:57 +01:00
|
|
|
|
}
|
2020-05-12 21:28:50 +02:00
|
|
|
|
|
2020-05-10 12:07:28 +02:00
|
|
|
|
[TestMethod, Timeout(10000)]
|
2020-04-28 14:21:48 +02:00
|
|
|
|
public void Probe_Success_FromStream()
|
|
|
|
|
{
|
2020-12-07 00:47:47 +01:00
|
|
|
|
using var stream = File.OpenRead(TestResources.WebmVideo);
|
2020-05-08 11:07:51 +02:00
|
|
|
|
var info = FFProbe.Analyse(stream);
|
2020-10-25 17:11:52 +01:00
|
|
|
|
Assert.AreEqual(3, info.Duration.Seconds);
|
2023-02-01 08:09:16 +01:00
|
|
|
|
// This video has no audio stream.
|
|
|
|
|
Assert.IsNull(info.PrimaryAudioStream);
|
2020-04-28 14:21:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-25 17:42:50 +01:00
|
|
|
|
[TestMethod, Timeout(10000)]
|
2020-05-08 11:07:51 +02:00
|
|
|
|
public async Task Probe_Success_FromStream_Async()
|
2020-04-28 14:21:48 +02:00
|
|
|
|
{
|
2020-12-07 00:47:47 +01:00
|
|
|
|
await using var stream = File.OpenRead(TestResources.WebmVideo);
|
2020-05-08 11:07:51 +02:00
|
|
|
|
var info = await FFProbe.AnalyseAsync(stream);
|
2020-10-25 17:11:52 +01:00
|
|
|
|
Assert.AreEqual(3, info.Duration.Seconds);
|
2020-04-28 14:21:48 +02:00
|
|
|
|
}
|
2021-07-31 22:46:21 +02:00
|
|
|
|
|
|
|
|
|
[TestMethod, Timeout(10000)]
|
|
|
|
|
public async Task Probe_Success_Subtitle_Async()
|
|
|
|
|
{
|
|
|
|
|
var info = await FFProbe.AnalyseAsync(TestResources.SrtSubtitle);
|
|
|
|
|
Assert.IsNotNull(info.PrimarySubtitleStream);
|
|
|
|
|
Assert.AreEqual(1, info.SubtitleStreams.Count);
|
|
|
|
|
Assert.AreEqual(0, info.AudioStreams.Count);
|
|
|
|
|
Assert.AreEqual(0, info.VideoStreams.Count);
|
2023-02-01 08:09:16 +01:00
|
|
|
|
// BitDepth is meaningless for subtitles
|
|
|
|
|
Assert.IsNull(info.SubtitleStreams[0].BitDepth);
|
2021-07-31 22:46:21 +02:00
|
|
|
|
}
|
2021-09-07 05:08:36 +02:00
|
|
|
|
|
|
|
|
|
[TestMethod, Timeout(10000)]
|
|
|
|
|
public async Task Probe_Success_Disposition_Async()
|
|
|
|
|
{
|
2023-02-02 21:19:45 +01:00
|
|
|
|
var info = await FFProbe.AnalyseAsync(TestResources.Mp4Video);
|
|
|
|
|
Assert.IsNotNull(info.PrimaryAudioStream);
|
|
|
|
|
Assert.IsNotNull(info.PrimaryAudioStream.Disposition);
|
|
|
|
|
Assert.AreEqual(true, info.PrimaryAudioStream.Disposition["default"]);
|
|
|
|
|
Assert.AreEqual(false, info.PrimaryAudioStream.Disposition["forced"]);
|
2023-02-01 08:09:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod, Timeout(10000)]
|
|
|
|
|
public async Task Probe_Success_Mp3AudioBitDepthNull_Async()
|
|
|
|
|
{
|
2023-02-02 21:19:45 +01:00
|
|
|
|
var info = await FFProbe.AnalyseAsync(TestResources.Mp3Audio);
|
|
|
|
|
Assert.IsNotNull(info.PrimaryAudioStream);
|
|
|
|
|
// mp3 is lossy, so bit depth is meaningless.
|
|
|
|
|
Assert.IsNull(info.PrimaryAudioStream.BitDepth);
|
2023-02-01 08:09:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod, Timeout(10000)]
|
|
|
|
|
public async Task Probe_Success_VocAudioBitDepth_Async()
|
|
|
|
|
{
|
2023-02-02 21:19:45 +01:00
|
|
|
|
var info = await FFProbe.AnalyseAsync(TestResources.AiffAudio);
|
|
|
|
|
Assert.IsNotNull(info.PrimaryAudioStream);
|
|
|
|
|
Assert.AreEqual(16, info.PrimaryAudioStream.BitDepth);
|
2023-02-01 08:09:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod, Timeout(10000)]
|
|
|
|
|
public async Task Probe_Success_MkvVideoBitDepth_Async()
|
|
|
|
|
{
|
2023-02-02 21:19:45 +01:00
|
|
|
|
var info = await FFProbe.AnalyseAsync(TestResources.MkvVideo);
|
|
|
|
|
Assert.IsNotNull(info.PrimaryAudioStream);
|
|
|
|
|
Assert.AreEqual(8, info.PrimaryVideoStream.BitDepth);
|
|
|
|
|
Assert.IsNull(info.PrimaryAudioStream.BitDepth);
|
2023-02-01 08:09:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod, Timeout(10000)]
|
|
|
|
|
public async Task Probe_Success_24BitWavBitDepth_Async()
|
|
|
|
|
{
|
2023-02-02 21:19:45 +01:00
|
|
|
|
var info = await FFProbe.AnalyseAsync(TestResources.Wav24Bit);
|
|
|
|
|
Assert.IsNotNull(info.PrimaryAudioStream);
|
|
|
|
|
Assert.AreEqual(24, info.PrimaryAudioStream.BitDepth);
|
2023-02-01 08:09:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod, Timeout(10000)]
|
|
|
|
|
public async Task Probe_Success_32BitWavBitDepth_Async()
|
|
|
|
|
{
|
2023-02-02 21:19:45 +01:00
|
|
|
|
var info = await FFProbe.AnalyseAsync(TestResources.Wav32Bit);
|
|
|
|
|
Assert.IsNotNull(info.PrimaryAudioStream);
|
|
|
|
|
Assert.AreEqual(32, info.PrimaryAudioStream.BitDepth);
|
2021-09-07 05:08:36 +02:00
|
|
|
|
}
|
2023-04-12 22:14:23 +02:00
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
public void Probe_Success_Custom_Arguments()
|
|
|
|
|
{
|
|
|
|
|
var info = FFProbe.Analyse(TestResources.Mp4Video, customArguments: "-headers \"Hello: World\"");
|
|
|
|
|
Assert.AreEqual(3, info.Duration.Seconds);
|
|
|
|
|
}
|
2020-03-01 12:55:57 +01:00
|
|
|
|
}
|
2023-02-02 21:19:45 +01:00
|
|
|
|
}
|