2023-04-12 20:10:37 +00:00
|
|
|
|
using FFMpegCore.Test.Resources;
|
2022-07-19 20:16:42 +00:00
|
|
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
2020-03-01 11:55:57 +00:00
|
|
|
|
|
|
|
|
|
namespace FFMpegCore.Test
|
|
|
|
|
{
|
|
|
|
|
[TestClass]
|
|
|
|
|
public class FFProbeTests
|
|
|
|
|
{
|
2020-12-06 23:47:47 +00:00
|
|
|
|
[TestMethod]
|
|
|
|
|
public async Task Audio_FromStream_Duration()
|
|
|
|
|
{
|
2020-12-07 20:00:43 +00:00
|
|
|
|
var fileAnalysis = await FFProbe.AnalyseAsync(TestResources.WebmVideo);
|
|
|
|
|
await using var inputStream = File.OpenRead(TestResources.WebmVideo);
|
2020-12-06 23:47:47 +00:00
|
|
|
|
var streamAnalysis = await FFProbe.AnalyseAsync(inputStream);
|
|
|
|
|
Assert.IsTrue(fileAnalysis.Duration == streamAnalysis.Duration);
|
2020-03-01 11:55:57 +00:00
|
|
|
|
}
|
2021-02-07 00:50:12 +00:00
|
|
|
|
|
2021-10-21 18:36:54 +00:00
|
|
|
|
[TestMethod]
|
|
|
|
|
public void FrameAnalysis_Sync()
|
|
|
|
|
{
|
|
|
|
|
var frameAnalysis = FFProbe.GetFrames(TestResources.WebmVideo);
|
2022-07-19 20:16:42 +00:00
|
|
|
|
|
2021-10-21 18:36:54 +00: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 20:16:42 +00:00
|
|
|
|
|
2021-10-21 18:36:54 +00: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 14:28:16 +00: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 07:14:47 +00:00
|
|
|
|
Assert.IsTrue(packets[0].Flags.StartsWith("K_"));
|
2021-11-08 14:28:16 +00:00
|
|
|
|
Assert.AreEqual(1362, packets.Last().Size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
public void PacketAnalysis_Sync()
|
|
|
|
|
{
|
|
|
|
|
var packets = FFProbe.GetPackets(TestResources.WebmVideo).Packets;
|
2022-07-19 20:16:42 +00:00
|
|
|
|
|
2021-11-08 14:28:16 +00:00
|
|
|
|
Assert.AreEqual(96, packets.Count);
|
|
|
|
|
Assert.IsTrue(packets.All(f => f.CodecType == "video"));
|
2023-10-05 07:14:47 +00:00
|
|
|
|
Assert.IsTrue(packets[0].Flags.StartsWith("K_"));
|
2021-11-08 14:28:16 +00: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 20:16:42 +00:00
|
|
|
|
var expected = new List<string> { "audio", "video" };
|
2021-11-08 14:28:16 +00:00
|
|
|
|
CollectionAssert.AreEquivalent(expected, actual);
|
2023-10-05 07:14:47 +00:00
|
|
|
|
Assert.IsTrue(packets.Where(t => t.CodecType == "audio").All(f => f.Flags.StartsWith("K_")));
|
2021-11-08 14:28:16 +00:00
|
|
|
|
Assert.AreEqual(75, packets.Count(t => t.CodecType == "video"));
|
|
|
|
|
Assert.AreEqual(141, packets.Count(t => t.CodecType == "audio"));
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-15 22:43:22 +00: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 22:50:11 +00:00
|
|
|
|
[DataRow("149:07:50.911750", 6, 5, 7, 50, 911)]
|
2021-03-15 22:43:22 +00: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 00:50:12 +00:00
|
|
|
|
{
|
2021-03-15 22:43:22 +00:00
|
|
|
|
var ffprobeStream = new FFProbeStream { Duration = duration };
|
2021-02-07 00:50:12 +00:00
|
|
|
|
|
2023-02-04 22:42:13 +00:00
|
|
|
|
var parsedDuration = MediaAnalysisUtils.ParseDuration(ffprobeStream.Duration);
|
2021-02-07 00:50:12 +00:00
|
|
|
|
|
2021-03-15 22:50:11 +00: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 00:50:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-01-28 10:41:19 +00:00
|
|
|
|
[TestMethod, Ignore("Consistently fails on GitHub Workflow ubuntu agents")]
|
2021-03-05 17:06:40 +00: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 20:16:42 +00:00
|
|
|
|
|
2020-03-01 11:55:57 +00:00
|
|
|
|
[TestMethod]
|
|
|
|
|
public void Probe_Success()
|
|
|
|
|
{
|
2020-12-06 23:47:47 +00:00
|
|
|
|
var info = FFProbe.Analyse(TestResources.Mp4Video);
|
2020-10-25 16:11:52 +00:00
|
|
|
|
Assert.AreEqual(3, info.Duration.Seconds);
|
2023-04-12 14:31:26 +00:00
|
|
|
|
Assert.AreEqual(0, info.Chapters.Count);
|
2022-07-19 20:16:42 +00:00
|
|
|
|
|
2021-03-05 17:06:40 +00:00
|
|
|
|
Assert.AreEqual("5.1", info.PrimaryAudioStream!.ChannelLayout);
|
2020-05-09 15:53:03 +00: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 21:33:50 +00:00
|
|
|
|
Assert.AreEqual("LC", info.PrimaryAudioStream.Profile);
|
2020-10-25 16:11:52 +00:00
|
|
|
|
Assert.AreEqual(377351, info.PrimaryAudioStream.BitRate);
|
2020-05-09 15:53:03 +00:00
|
|
|
|
Assert.AreEqual(48000, info.PrimaryAudioStream.SampleRateHz);
|
2021-08-09 19:52:39 +00:00
|
|
|
|
Assert.AreEqual("mp4a", info.PrimaryAudioStream.CodecTagString);
|
|
|
|
|
Assert.AreEqual("0x6134706d", info.PrimaryAudioStream.CodecTag);
|
2022-07-19 20:16:42 +00:00
|
|
|
|
|
2021-03-05 17:06:40 +00:00
|
|
|
|
Assert.AreEqual(1471810, info.PrimaryVideoStream!.BitRate);
|
2020-05-09 15:53:03 +00:00
|
|
|
|
Assert.AreEqual(16, info.PrimaryVideoStream.DisplayAspectRatio.Width);
|
|
|
|
|
Assert.AreEqual(9, info.PrimaryVideoStream.DisplayAspectRatio.Height);
|
2022-07-19 20:16:42 +00:00
|
|
|
|
Assert.AreEqual(1, info.PrimaryVideoStream.SampleAspectRatio.Width);
|
|
|
|
|
Assert.AreEqual(1, info.PrimaryVideoStream.SampleAspectRatio.Height);
|
2020-05-09 15:53:03 +00:00
|
|
|
|
Assert.AreEqual("yuv420p", info.PrimaryVideoStream.PixelFormat);
|
|
|
|
|
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 19:52:39 +00:00
|
|
|
|
Assert.AreEqual("avc1", info.PrimaryVideoStream.CodecTagString);
|
|
|
|
|
Assert.AreEqual("0x31637661", info.PrimaryVideoStream.CodecTag);
|
2020-05-09 15:53:03 +00:00
|
|
|
|
}
|
2022-07-19 20:16:42 +00:00
|
|
|
|
|
2023-02-04 21:17:39 +00: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 16:42:50 +00:00
|
|
|
|
[TestMethod, Timeout(10000)]
|
2020-05-09 15:53:03 +00:00
|
|
|
|
public async Task Probe_Async_Success()
|
|
|
|
|
{
|
2020-12-06 23:47:47 +00:00
|
|
|
|
var info = await FFProbe.AnalyseAsync(TestResources.Mp4Video);
|
2020-10-25 16:11:52 +00:00
|
|
|
|
Assert.AreEqual(3, info.Duration.Seconds);
|
2023-02-02 20:19:45 +00:00
|
|
|
|
Assert.AreEqual(8, info.PrimaryVideoStream.BitDepth);
|
2023-02-01 07:09:16 +00:00
|
|
|
|
// This video's audio stream is AAC, which is lossy, so bit depth is meaningless.
|
|
|
|
|
Assert.IsNull(info.PrimaryAudioStream.BitDepth);
|
2020-03-01 11:55:57 +00:00
|
|
|
|
}
|
2020-05-12 19:28:50 +00:00
|
|
|
|
|
2020-05-10 10:07:28 +00:00
|
|
|
|
[TestMethod, Timeout(10000)]
|
2020-04-28 12:21:48 +00:00
|
|
|
|
public void Probe_Success_FromStream()
|
|
|
|
|
{
|
2020-12-06 23:47:47 +00:00
|
|
|
|
using var stream = File.OpenRead(TestResources.WebmVideo);
|
2020-05-08 09:07:51 +00:00
|
|
|
|
var info = FFProbe.Analyse(stream);
|
2020-10-25 16:11:52 +00:00
|
|
|
|
Assert.AreEqual(3, info.Duration.Seconds);
|
2023-02-01 07:09:16 +00:00
|
|
|
|
// This video has no audio stream.
|
|
|
|
|
Assert.IsNull(info.PrimaryAudioStream);
|
2020-04-28 12:21:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-25 16:42:50 +00:00
|
|
|
|
[TestMethod, Timeout(10000)]
|
2020-05-08 09:07:51 +00:00
|
|
|
|
public async Task Probe_Success_FromStream_Async()
|
2020-04-28 12:21:48 +00:00
|
|
|
|
{
|
2020-12-06 23:47:47 +00:00
|
|
|
|
await using var stream = File.OpenRead(TestResources.WebmVideo);
|
2020-05-08 09:07:51 +00:00
|
|
|
|
var info = await FFProbe.AnalyseAsync(stream);
|
2020-10-25 16:11:52 +00:00
|
|
|
|
Assert.AreEqual(3, info.Duration.Seconds);
|
2020-04-28 12:21:48 +00:00
|
|
|
|
}
|
2021-07-31 20:46:21 +00:00
|
|
|
|
|
2024-01-29 22:46:30 +00:00
|
|
|
|
[TestMethod, Timeout(10000)]
|
|
|
|
|
public void Probe_HDR()
|
|
|
|
|
{
|
|
|
|
|
var info = FFProbe.Analyse(TestResources.HdrVideo);
|
|
|
|
|
|
|
|
|
|
Assert.IsNotNull(info.PrimaryVideoStream);
|
|
|
|
|
Assert.AreEqual("tv", info.PrimaryVideoStream.ColorRange);
|
|
|
|
|
Assert.AreEqual("bt2020nc", info.PrimaryVideoStream.ColorSpace);
|
|
|
|
|
Assert.AreEqual("arib-std-b67", info.PrimaryVideoStream.ColorTransfer);
|
|
|
|
|
Assert.AreEqual("bt2020", info.PrimaryVideoStream.ColorPrimaries);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-31 20:46:21 +00: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 07:09:16 +00:00
|
|
|
|
// BitDepth is meaningless for subtitles
|
|
|
|
|
Assert.IsNull(info.SubtitleStreams[0].BitDepth);
|
2021-07-31 20:46:21 +00:00
|
|
|
|
}
|
2021-09-07 03:08:36 +00:00
|
|
|
|
|
|
|
|
|
[TestMethod, Timeout(10000)]
|
|
|
|
|
public async Task Probe_Success_Disposition_Async()
|
|
|
|
|
{
|
2023-02-02 20:19:45 +00: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 07:09:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod, Timeout(10000)]
|
|
|
|
|
public async Task Probe_Success_Mp3AudioBitDepthNull_Async()
|
|
|
|
|
{
|
2023-02-02 20:19:45 +00: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 07:09:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod, Timeout(10000)]
|
|
|
|
|
public async Task Probe_Success_VocAudioBitDepth_Async()
|
|
|
|
|
{
|
2023-02-02 20:19:45 +00:00
|
|
|
|
var info = await FFProbe.AnalyseAsync(TestResources.AiffAudio);
|
|
|
|
|
Assert.IsNotNull(info.PrimaryAudioStream);
|
|
|
|
|
Assert.AreEqual(16, info.PrimaryAudioStream.BitDepth);
|
2023-02-01 07:09:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod, Timeout(10000)]
|
|
|
|
|
public async Task Probe_Success_MkvVideoBitDepth_Async()
|
|
|
|
|
{
|
2023-02-02 20:19:45 +00: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 07:09:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod, Timeout(10000)]
|
|
|
|
|
public async Task Probe_Success_24BitWavBitDepth_Async()
|
|
|
|
|
{
|
2023-02-02 20:19:45 +00:00
|
|
|
|
var info = await FFProbe.AnalyseAsync(TestResources.Wav24Bit);
|
|
|
|
|
Assert.IsNotNull(info.PrimaryAudioStream);
|
|
|
|
|
Assert.AreEqual(24, info.PrimaryAudioStream.BitDepth);
|
2023-02-01 07:09:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod, Timeout(10000)]
|
|
|
|
|
public async Task Probe_Success_32BitWavBitDepth_Async()
|
|
|
|
|
{
|
2023-02-02 20:19:45 +00:00
|
|
|
|
var info = await FFProbe.AnalyseAsync(TestResources.Wav32Bit);
|
|
|
|
|
Assert.IsNotNull(info.PrimaryAudioStream);
|
|
|
|
|
Assert.AreEqual(32, info.PrimaryAudioStream.BitDepth);
|
2021-09-07 03:08:36 +00:00
|
|
|
|
}
|
2023-04-12 20:14:23 +00: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 11:55:57 +00:00
|
|
|
|
}
|
2023-02-02 20:19:45 +00:00
|
|
|
|
}
|