Add support for Apple's M4V format

This commit is contained in:
Lucas Rooyakkers 2018-10-02 01:47:51 -04:00
parent a4d9b5314f
commit 9b446c03e8

View File

@ -37,7 +37,7 @@ impl FileExtensions {
fn is_video(&self, file: &File) -> bool {
file.extension_is_one_of( &[
"avi", "flv", "m2v", "mkv", "mov", "mp4", "mpeg",
"avi", "flv", "m2v", "m4v", "mkv", "mov", "mp4", "mpeg",
"mpg", "ogm", "ogv", "vob", "wmv", "webm", "m2ts",
])
}