| Index: source/patched-ffmpeg-mt/ffprobe.c
|
| ===================================================================
|
| --- source/patched-ffmpeg-mt/ffprobe.c (revision 65184)
|
| +++ source/patched-ffmpeg-mt/ffprobe.c (working copy)
|
| @@ -35,7 +35,6 @@
|
| static int do_show_packets = 0;
|
| static int do_show_streams = 0;
|
|
|
| -static int convert_tags = 0;
|
| static int show_value_unit = 0;
|
| static int use_value_prefix = 0;
|
| static int use_byte_value_binary_prefix = 0;
|
| @@ -220,8 +219,6 @@
|
| printf("r_frame_rate=%d/%d\n", stream->r_frame_rate.num, stream->r_frame_rate.den);
|
| printf("avg_frame_rate=%d/%d\n", stream->avg_frame_rate.num, stream->avg_frame_rate.den);
|
| printf("time_base=%d/%d\n", stream->time_base.num, stream->time_base.den);
|
| - if (stream->language[0])
|
| - printf("language=%s\n", stream->language);
|
| printf("start_time=%s\n", time_value_string(val_str, sizeof(val_str), stream->start_time,
|
| &stream->time_base));
|
| printf("duration=%s\n", time_value_string(val_str, sizeof(val_str), stream->duration,
|
| @@ -255,8 +252,6 @@
|
| printf("bit_rate=%s\n", value_string(val_str, sizeof(val_str), fmt_ctx->bit_rate,
|
| unit_bit_per_second_str));
|
|
|
| - if (convert_tags)
|
| - av_metadata_conv(fmt_ctx, NULL, fmt_ctx->iformat->metadata_conv);
|
| while ((tag = av_metadata_get(fmt_ctx->metadata, "", tag, AV_METADATA_IGNORE_SUFFIX)))
|
| printf("TAG:%s=%s\n", tag->key, tag->value);
|
|
|
| @@ -372,7 +367,6 @@
|
|
|
| static const OptionDef options[] = {
|
| #include "cmdutils_common_opts.h"
|
| - { "convert_tags", OPT_BOOL, {(void*)&convert_tags}, "convert tag names to the FFmpeg generic tag names" },
|
| { "f", HAS_ARG, {(void*)opt_format}, "force format", "format" },
|
| { "unit", OPT_BOOL, {(void*)&show_value_unit}, "show unit of the displayed values" },
|
| { "prefix", OPT_BOOL, {(void*)&use_value_prefix}, "use SI prefixes for the displayed values" },
|
|
|