Browse Source

Add `.ogv` file format, close #50

master
Krisjanis Rijnieks 9 years ago
parent
commit
8bde5b84a8
  1. 1
      src/MediaServer/DirectoryWatcher.h

1
src/MediaServer/DirectoryWatcher.h

@ -33,6 +33,7 @@ class VideoPathFilter : public BasePathFilter {
ofIsStringInString(path.toString(), ".h264") || ofIsStringInString(path.toString(), ".h264") ||
ofIsStringInString(path.toString(), ".mov") || ofIsStringInString(path.toString(), ".mov") ||
ofIsStringInString(path.toString(), ".avi") || ofIsStringInString(path.toString(), ".avi") ||
ofIsStringInString(path.toString(), ".ogv") ||
ofIsStringInString(path.toString(), ".mpeg")); ofIsStringInString(path.toString(), ".mpeg"));
} }
}; };

Loading…
Cancel
Save