Skip to content

Commit 360d29f

Browse files
committed
also allow mp4 convert to iPad
1 parent f6dc28e commit 360d29f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FilesUtilities.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public static List<File> listAllConvertibleFilesInCwd() {
1717
List<File> files = new ArrayList<>();
1818

1919
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
20+
String match = ".*(?<!ac2)\\.mkv$|.*\\.avi$|.*\\.flv$|.*\\.mp4$"; // match every video except mkv with ac2 behind it
2121
if(listOfFiles[i].getName().matches(match)) {
2222
files.add(listOfFiles[i]);
2323
}

0 commit comments

Comments
 (0)