updated MediaInfo to 0.7.71
This commit is contained in:
parent
76eee87976
commit
a46b542bfd
Binary file not shown.
|
@ -2,7 +2,6 @@ using System.IO;
|
||||||
using FluentAssertions;
|
using FluentAssertions;
|
||||||
using Moq;
|
using Moq;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using NzbDrone.Common;
|
|
||||||
using NzbDrone.Common.Disk;
|
using NzbDrone.Common.Disk;
|
||||||
using NzbDrone.Core.MediaFiles.MediaInfo;
|
using NzbDrone.Core.MediaFiles.MediaInfo;
|
||||||
using NzbDrone.Core.Test.Framework;
|
using NzbDrone.Core.Test.Framework;
|
||||||
|
@ -28,6 +27,32 @@ namespace NzbDrone.Core.Test.MediaFiles.MediaInfo
|
||||||
var path = Path.Combine(Directory.GetCurrentDirectory(), "Files", "Media", "H264_sample.mp4");
|
var path = Path.Combine(Directory.GetCurrentDirectory(), "Files", "Media", "H264_sample.mp4");
|
||||||
|
|
||||||
Subject.GetRunTime(path).Seconds.Should().Be(10);
|
Subject.GetRunTime(path).Seconds.Should().Be(10);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void get_info()
|
||||||
|
{
|
||||||
|
var path = Path.Combine(Directory.GetCurrentDirectory(), "Files", "Media", "H264_sample.mp4");
|
||||||
|
|
||||||
|
var info = Subject.GetMediaInfo(path);
|
||||||
|
|
||||||
|
|
||||||
|
info.AudioBitrate.Should().Be(128000);
|
||||||
|
info.AudioChannels.Should().Be(2);
|
||||||
|
info.AudioFormat.Should().Be("AAC");
|
||||||
|
info.AudioLanguages.Should().Be("English");
|
||||||
|
info.AudioProfile.Should().Be("LC");
|
||||||
|
info.Height.Should().Be(320);
|
||||||
|
info.RunTime.Seconds.Should().Be(10);
|
||||||
|
info.ScanType.Should().Be("Progressive");
|
||||||
|
info.Subtitles.Should().Be("");
|
||||||
|
info.VideoBitrate.Should().Be(193329);
|
||||||
|
info.VideoCodec.Should().Be("AVC");
|
||||||
|
info.VideoFps.Should().Be(24);
|
||||||
|
info.Width.Should().Be(480);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Binary file not shown.
|
@ -892,8 +892,11 @@
|
||||||
<EmbeddedResource Include="..\..\Logo\64.png">
|
<EmbeddedResource Include="..\..\Logo\64.png">
|
||||||
<Link>Resources\Logo\64.png</Link>
|
<Link>Resources\Logo\64.png</Link>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<Content Include="MediaInfo.dll">
|
</ItemGroup>
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
<ItemGroup>
|
||||||
|
<Content Include="..\Libraries\MediaInfo\MediaInfo.dll">
|
||||||
|
<Link>MediaInfo.dll</Link>
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
|
Loading…
Reference in New Issue