-fixed an issue that prevented the name seed value from
 incrementing
This commit is contained in:
zii 2024-10-09 13:00:35 -04:00
parent ba54b5b44a
commit d9cdd30877
2 changed files with 4 additions and 2 deletions

View File

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

View File

@ -69,10 +69,12 @@ QString RecordLoop::camCmdFromConf()
ret += "-vf fps=" + QString::number(shared->recFps) + ",scale=" + shared->recScale + " "; ret += "-vf fps=" + QString::number(shared->recFps) + ",scale=" + shared->recScale + " ";
} }
shared->seed += 1;
ret += "-vcodec " + shared->vidCodec + " "; ret += "-vcodec " + shared->vidCodec + " ";
ret += "-acodec " + shared->audCodec + " "; ret += "-acodec " + shared->audCodec + " ";
ret += "-reset_timestamps 1 -sc_threshold 0 -g 2 -force_key_frames 'expr:gte(t, n_forced * 2)' -segment_time 2 -f segment "; ret += "-reset_timestamps 1 -sc_threshold 0 -g 2 -force_key_frames 'expr:gte(t, n_forced * 2)' -segment_time 2 -f segment ";
ret += shared->buffPath + "/live/" + QString::number(shared->seed++).leftJustified(21, '0') + shared->streamExt; ret += shared->buffPath + "/live/" + QString::number(shared->seed).leftJustified(21, '0') + shared->streamExt;
return ret; return ret;
} }