Number of threads used by ffmeg configurable

This commit is contained in:
loki
2019-12-06 21:41:30 +01:00
parent d0f0e0b239
commit e308f96abb
4 changed files with 10 additions and 1 deletions

View File

@@ -20,6 +20,8 @@ video_t video {
24, // gop_size
35, // crf
4, // threads
"baseline"s, // profile
"superfast"s, // preset
"zerolatency"s // tune
@@ -118,6 +120,7 @@ void parse_file(const char *file) {
int_f(vars, "max_b_frames", video.max_b_frames);
int_f(vars, "gop_size", video.gop_size);
int_f(vars, "crf", video.crf);
int_f(vars, "threads", video.threads);
string_f(vars, "profile", video.profile);
string_f(vars, "preset", video.preset);
string_f(vars, "tune", video.tune);