Skip to content

Commit d5f66dc

Browse files
committed
Framerate cmdline argument fix
Changing used ffmpeg command line option from '-r' to '-framerate'
1 parent ba592cc commit d5f66dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/hevc_enc/ffmpeg/src/hevc_enc_ffmpeg.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ ffmpeg_init
120120
}
121121

122122
// frame rate
123-
ffmpeg_call += " -r " + state->data->frame_rate;
123+
ffmpeg_call += " -framerate " + state->data->frame_rate;
124124

125125
// INPUT
126126
ffmpeg_call += " -i ";

0 commit comments

Comments
 (0)