mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
MediaInfo should use ParseSpeed > 0.2 for .ts files to get accurate readings.
Fixes #742
This commit is contained in:
parent
211863d55d
commit
1a402a9cf4
1 changed files with 8 additions and 1 deletions
|
@ -39,7 +39,14 @@ namespace NzbDrone.Core.MediaFiles.MediaInfo
|
|||
mediaInfo = new MediaInfo();
|
||||
_logger.Debug("Getting media info from {0}", filename);
|
||||
|
||||
mediaInfo.Option("ParseSpeed", "0.0");
|
||||
if (filename.ToLower().EndsWith(".ts"))
|
||||
{
|
||||
mediaInfo.Option("ParseSpeed", "0.3");
|
||||
}
|
||||
else
|
||||
{
|
||||
mediaInfo.Option("ParseSpeed", "0.0");
|
||||
}
|
||||
|
||||
int open;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue