mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
New: Media file extension .webm
This commit is contained in:
parent
9039d7e694
commit
b4f83d8a4e
@ -204,6 +204,7 @@ public void should_parse_raw_quality(string title, bool proper)
|
|||||||
|
|
||||||
[TestCase("Sonny.With.a.Chance.S02E15", false)]
|
[TestCase("Sonny.With.a.Chance.S02E15", false)]
|
||||||
[TestCase("Law & Order: Special Victims Unit - 11x11 - Quickie", false)]
|
[TestCase("Law & Order: Special Victims Unit - 11x11 - Quickie", false)]
|
||||||
|
[TestCase("Series.Title.S01E01.webm", false)]
|
||||||
public void quality_parse(string title, bool proper)
|
public void quality_parse(string title, bool proper)
|
||||||
{
|
{
|
||||||
ParseAndVerifyQuality(title, Quality.Unknown, proper);
|
ParseAndVerifyQuality(title, Quality.Unknown, proper);
|
||||||
|
@ -13,6 +13,10 @@ static MediaFileExtensions()
|
|||||||
{
|
{
|
||||||
_fileExtensions = new Dictionary<string, Quality>
|
_fileExtensions = new Dictionary<string, Quality>
|
||||||
{
|
{
|
||||||
|
//Unknown
|
||||||
|
{ ".webm", Quality.Unknown },
|
||||||
|
|
||||||
|
//SDTV
|
||||||
{ ".m4v", Quality.SDTV },
|
{ ".m4v", Quality.SDTV },
|
||||||
{ ".3gp", Quality.SDTV },
|
{ ".3gp", Quality.SDTV },
|
||||||
{ ".nsv", Quality.SDTV },
|
{ ".nsv", Quality.SDTV },
|
||||||
|
Loading…
Reference in New Issue
Block a user