add -safe 0 to ffmpeg command line option so that it will generate the concat file

pull/2077/head
Isaac Connor 2017-07-11 16:11:52 -04:00
parent 8497e4c24d
commit a9e72288f6
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ if ( $concat_name ) {
}
close $fd;
my $command = $Config{ZM_PATH_FFMPEG}
. " -f concat -i $concat_list_file -c copy "
. " -f concat -safe 0 -i $concat_list_file -c copy "
.$Config{ZM_FFMPEG_OUTPUT_OPTIONS}
." '$video_file' > $Config{ZM_PATH_LOGS}/ffmpeg_${concat_name}.log 2>&1"
;