summaryrefslogtreecommitdiffstats
path: root/system/ZoneMinder/fix_video_file_format.patch
diff options
context:
space:
mode:
Diffstat (limited to 'system/ZoneMinder/fix_video_file_format.patch')
-rw-r--r--system/ZoneMinder/fix_video_file_format.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/system/ZoneMinder/fix_video_file_format.patch b/system/ZoneMinder/fix_video_file_format.patch
new file mode 100644
index 0000000000..f238c77f37
--- /dev/null
+++ b/system/ZoneMinder/fix_video_file_format.patch
@@ -0,0 +1,11 @@
+--- src/zm_event.cpp 2019-01-21 23:17:19.881961455 -0500
++++ src/zm_event.cpp.new 2019-01-21 23:17:38.452315254 -0500
+@@ -196,7 +196,7 @@
+
+ if ( monitor->GetOptVideoWriter() != 0 ) {
+ snprintf(video_name, sizeof(video_name), "%" PRIu64 "-%s", id, "video.mp4");
+- snprintf(video_file, sizeof(video_file), staticConfig.video_file_format, path, video_name);
++ snprintf(video_file, sizeof(video_file), "%s/%s", path, video_name);
+ Debug(1,"Writing video file to %s", video_file );
+
+ /* X264 MP4 video writer */