mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-17 10:45:49 +02: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
@ -39,7 +39,14 @@ public MediaInfoModel GetMediaInfo(string filename)
|
|||||||
mediaInfo = new MediaInfo();
|
mediaInfo = new MediaInfo();
|
||||||
_logger.Debug("Getting media info from {0}", filename);
|
_logger.Debug("Getting media info from {0}", filename);
|
||||||
|
|
||||||
|
if (filename.ToLower().EndsWith(".ts"))
|
||||||
|
{
|
||||||
|
mediaInfo.Option("ParseSpeed", "0.3");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
mediaInfo.Option("ParseSpeed", "0.0");
|
mediaInfo.Option("ParseSpeed", "0.0");
|
||||||
|
}
|
||||||
|
|
||||||
int open;
|
int open;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user