Skip to content
Snippets Groups Projects
Commit dc41bae7 authored by Pierre Lespagnol's avatar Pierre Lespagnol Committed by Adrien Béraud
Browse files

recorder: adjust recorder quality

Better compromise between quality and size of the file

Change-Id: I0fa59683f4f49e108fcbe41aefa428f291309095
parent 1c09ee1f
No related branches found
No related tags found
No related merge requests found
...@@ -878,9 +878,9 @@ MediaEncoder::initVP8(AVCodecContext* encoderCtx, uint64_t br) ...@@ -878,9 +878,9 @@ MediaEncoder::initVP8(AVCodecContext* encoderCtx, uint64_t br)
av_opt_set_int(encoderCtx, "qmax", 50, AV_OPT_SEARCH_CHILDREN); av_opt_set_int(encoderCtx, "qmax", 50, AV_OPT_SEARCH_CHILDREN);
av_opt_set_int(encoderCtx, "qmin", 0, AV_OPT_SEARCH_CHILDREN); av_opt_set_int(encoderCtx, "qmin", 0, AV_OPT_SEARCH_CHILDREN);
av_opt_set_int(encoderCtx, "slices", 4, AV_OPT_SEARCH_CHILDREN); av_opt_set_int(encoderCtx, "slices", 4, AV_OPT_SEARCH_CHILDREN);
av_opt_set_int(encoderCtx, "crf", 10, AV_OPT_SEARCH_CHILDREN); av_opt_set_int(encoderCtx, "crf", 18, AV_OPT_SEARCH_CHILDREN);
av_opt_set_int(encoderCtx, "b", 0, AV_OPT_SEARCH_CHILDREN); av_opt_set_int(encoderCtx, "b", 0, AV_OPT_SEARCH_CHILDREN);
JAMI_DBG("VP8 encoder setup: crf=10"); JAMI_DBG("VP8 encoder setup: crf=18");
} else { } else {
// 1- if quality is set use it // 1- if quality is set use it
// bitrate need to be set. The target bitrate becomes the maximum allowed bitrate // bitrate need to be set. The target bitrate becomes the maximum allowed bitrate
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment