Compare commits

...

8 Commits
master ... test

Author SHA1 Message Date
zii
1a76159b91 v3.6.t7
-previous 3.6.tx commits are deemed failures, rolled back to v3.5
 code from master.
2024-11-21 19:06:59 -05:00
zii
bb998da739 v3.6.t6
-ffmpeg stall has re-surfaced, not entirely sure what causes it
 added proper logic that will actually start the restart timer
 when ffmpeg is running.
2024-10-09 20:55:23 -04:00
zii
baa6c0f217 v3.6.t5
-fixed the ffmpmeg cmd line formatting so it stops rewirting into
 the same video file.
2024-10-09 15:48:29 -04:00
zii
69bb706b6b v3.6.t4
-ffmpeg arbitrarily limits %020d. backed it down %014d, not sure if
 that is true limit. 14 was tessted to work.

-added file size checking in detect loop to prevent it from
 processesing unfinished video clips.
2024-10-09 14:39:11 -04:00
zii
7ba06ab92b v3.6.t3
-fixed some more issues with the increment naming.
2024-10-09 13:44:25 -04:00
zii
d9cdd30877 v3.6.t2
-fixed an issue that prevented the name seed value from
 incrementing
2024-10-09 13:00:35 -04:00
zii
ba54b5b44a v3.6.t1
-updated the way the video clips from the live stream are named to
 simple unsigned int number increments. doing this makes the file
 names much more predictable and removes the need for filesystem
 monitoring.
2024-10-09 12:38:49 -04:00
zii
88ea1086f6 v3.6.t1
-all recordings, clips and snapshots are now base on UTC naming
 scheme for easy name prediction for client apps.

-detect loop no longer list dirs for files or monitors for dir
 changes. it will now predict video clip names base on current
 UTC time.
2024-08-04 14:42:13 -04:00

View File

@ -32,7 +32,7 @@
using namespace std; using namespace std;
#define APP_VERSION "3.5" #define APP_VERSION "3.6.t7"
#define APP_NAME "JustMotion" #define APP_NAME "JustMotion"
#define APP_TARGET "jmotion" #define APP_TARGET "jmotion"
#define DATETIME_FMT "yyyyMMddhhmmss" #define DATETIME_FMT "yyyyMMddhhmmss"