mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Changed the second .xvid to .divx.
.mkv & .ts will be treated as HDTV, all others will be treated as SDTV.
This commit is contained in:
parent
f2984d9430
commit
dfbb222c6c
2 changed files with 11 additions and 1 deletions
|
@ -277,13 +277,23 @@ namespace NzbDrone.Core
|
|||
{
|
||||
case ".avi":
|
||||
case ".xvid":
|
||||
case ".divx":
|
||||
case ".wmv":
|
||||
case ".mp4":
|
||||
case ".mpg":
|
||||
case ".mpeg":
|
||||
case ".mov":
|
||||
case ".rm":
|
||||
case ".rmvb":
|
||||
case ".flv":
|
||||
case ".dvr-ms":
|
||||
case ".ogm":
|
||||
{
|
||||
result.QualityType = QualityTypes.SDTV;
|
||||
break;
|
||||
}
|
||||
case ".mkv":
|
||||
case ".ts":
|
||||
{
|
||||
result.QualityType = QualityTypes.HDTV;
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue