FFmpeg ライブラリ git-ee94362 libavformat v55.2.100 を使用しています。目的は、HLS を使用して 2 つのストリーム (ビデオとオーディオ) を M3U8 プレイリストに多重化することです。さらに、すべての TS セグメント ファイルの長さを正確に 3.0 秒にする必要があります (フレーム レートは 25 fps)。
これに到達するために、いくつかのオプションとプロパティを設定しようとしています
。
コードは次のようになります。
AVCodecContext *codec_ctx = NULL;
AVFormatContext *ofmt_ctx = NULL;
int ret = 0, gopSize = (int)(3.0 * 25); // 3 sec * 25 fps
// ofmt_ctx and codec_ctx initialization and filling are OK, but:
codec_ctx->time_base.num = 1;
codec_ctx->time_base.den = 25 // fps
// It seems, that the following three lines have no effect without explisit setting of the "hls_time" property
codec_ctx->keyint_min = gopSize; // in FFMpeg application, the corresponding option is "-keyint_min 3"
codec_ctx->scenechange_threshold = 0; // in FFMpeg application, the corresponding option is "-sc_threshold 0"
codec_ctx->gop_size = gopSize; // in FFMpeg application, the corresponding option is "-g 3"
ret = av_opt_set_double(ofmt_ctx, "hls_time", 3.0, AV_OPT_SEARCH_CHILDREN);
// Any of the following lines causes "Option not found" error.
ret = av_opt_set(codec_ctx->priv_data, "profile", "main", AV_OPT_SEARCH_CHILDREN);
ret = av_opt_set(codec_ctx->priv_data, "preset", "ultrafast", AV_OPT_SEARCH_CHILDREN);
ret = av_opt_get(ofmt_ctx, "segment_time", AV_OPT_SEARCH_CHILDREN, &str);
ret = av_opt_set((ofmt_ctx, "segment_time", "3.0", AV_OPT_SEARCH_CHILDREN);
とにかく、TS ファイルの長さは異なり (~2-3 秒)、正確には 3.0 秒ではありません。私たちの質問: 問題を解決する最善の方法は何ですか?
アンドレイ・モチェノフ。