X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=video_encoder.cpp;h=a622ba2af6640425d72dc5a72de44b4cc8f218e3;hb=96cb6414f85e0ef4d660b7bd56267303e80fcd05;hp=6a4ebf7219b04ec7b7bd5c85cdcb0bff4ca60680;hpb=2abf57fbc06f52c04fb2ca1f765459908e688890;p=nageru diff --git a/video_encoder.cpp b/video_encoder.cpp index 6a4ebf7..a622ba2 100644 --- a/video_encoder.cpp +++ b/video_encoder.cpp @@ -40,7 +40,8 @@ string generate_local_dump_filename(int frame) // Use the frame number to disambiguate between two cuts starting // on the same second. char filename[256]; - snprintf(filename, sizeof(filename), "%s%s-f%02d%s", + snprintf(filename, sizeof(filename), "%s/%s%s-f%02d%s", + global_flags.recording_dir.c_str(), LOCAL_DUMP_PREFIX, timestamp, frame % 100, LOCAL_DUMP_SUFFIX); return filename; } @@ -185,7 +186,8 @@ void VideoEncoder::open_output_stream() int time_base = global_flags.stream_coarse_timebase ? COARSE_TIMEBASE : TIMEBASE; stream_mux.reset(new Mux(avctx, width, height, video_codec, video_extradata, stream_audio_encoder->get_codec_parameters().get(), time_base, - /*write_callback=*/nullptr)); + /*write_callback=*/nullptr, { &stream_mux_metrics })); + stream_mux_metrics.init({{ "destination", "http" }}); } int VideoEncoder::write_packet2_thunk(void *opaque, uint8_t *buf, int buf_size, AVIODataMarkerType type, int64_t time)