From 8bde5b84a889533eef90212bc1cd44b8870297b2 Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Tue, 1 Mar 2016 21:35:23 +0100 Subject: [PATCH] Add `.ogv` file format, close #50 --- src/MediaServer/DirectoryWatcher.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/MediaServer/DirectoryWatcher.h b/src/MediaServer/DirectoryWatcher.h index 9d4e780..cde455e 100644 --- a/src/MediaServer/DirectoryWatcher.h +++ b/src/MediaServer/DirectoryWatcher.h @@ -33,6 +33,7 @@ class VideoPathFilter : public BasePathFilter { ofIsStringInString(path.toString(), ".h264") || ofIsStringInString(path.toString(), ".mov") || ofIsStringInString(path.toString(), ".avi") || + ofIsStringInString(path.toString(), ".ogv") || ofIsStringInString(path.toString(), ".mpeg")); } };