We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6dc28e commit 360d29fCopy full SHA for 360d29f
src/FilesUtilities.java
@@ -17,7 +17,7 @@ public static List<File> listAllConvertibleFilesInCwd() {
17
List<File> files = new ArrayList<>();
18
19
for (int i = 0; i < (listOfFiles != null ? listOfFiles.length : 0); i++) {
20
- String match = ".*(?<!ac2)\\.mkv$|.*\\.avi$|.*\\.flv$"; // match every video except mkv with ac2 behind it
+ String match = ".*(?<!ac2)\\.mkv$|.*\\.avi$|.*\\.flv$|.*\\.mp4$"; // match every video except mkv with ac2 behind it
21
if(listOfFiles[i].getName().matches(match)) {
22
files.add(listOfFiles[i]);
23
}
0 commit comments