mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 19:24:08 +00:00
Consider *.mp4 files to be video not audio
This commit is contained in:
parent
55e4de2cca
commit
ae111de59a
|
@ -53,7 +53,6 @@ bool isNameOfSound( string const & name )
|
|||
endsWith( s, ".voc" ) ||
|
||||
endsWith( s, ".ogg" ) ||
|
||||
endsWith( s, ".mp3" ) ||
|
||||
endsWith( s, ".mp4" ) ||
|
||||
endsWith( s, ".m4a") ||
|
||||
endsWith( s, ".aac" ) ||
|
||||
endsWith( s, ".flac" ) ||
|
||||
|
@ -77,6 +76,7 @@ bool isNameOfVideo( string const & name )
|
|||
endsWith( s, ".ogv" ) ||
|
||||
endsWith( s, ".avi" ) ||
|
||||
endsWith( s, ".m4v" ) ||
|
||||
endsWith( s, ".mp4" ) ||
|
||||
endsWith( s, ".mkv" ) ||
|
||||
endsWith( s, ".wmv" ) ||
|
||||
endsWith( s, ".sfw" ) ||
|
||||
|
|
Loading…
Reference in a new issue