Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/a46b542bfd73ee26c6a03d2e2d7bdd3f9a89a9e8
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
31 additions and
3 deletions
@ -2,7 +2,6 @@ using System.IO;
using FluentAssertions ;
using Moq ;
using NUnit.Framework ;
using NzbDrone.Common ;
using NzbDrone.Common.Disk ;
using NzbDrone.Core.MediaFiles.MediaInfo ;
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" ) ;
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 ) ;
}
}
}
@ -892,8 +892,11 @@
<EmbeddedResource Include= "..\..\Logo\64.png" >
<Link > Resources\Logo\64.png</Link>
</EmbeddedResource>
<Content Include= "MediaInfo.dll" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</ItemGroup>
<ItemGroup >
<Content Include= "..\Libraries\MediaInfo\MediaInfo.dll" >
<Link > MediaInfo.dll</Link>
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project= "$(MSBuildToolsPath)\Microsoft.CSharp.targets" />