2 * FFprobe : Simple Media Prober based on the FFmpeg libraries
3 * Copyright (c) 2007-2010 Stefano Sabatini
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #undef HAVE_AV_CONFIG_H
23 #include "libavformat/avformat.h"
24 #include "libavcodec/avcodec.h"
25 #include "libavcodec/opt.h"
26 #include "libavutil/pixdesc.h"
29 const char program_name
[] = "FFprobe";
30 const int program_birth_year
= 2007;
32 static int do_show_format
= 0;
33 static int do_show_streams
= 0;
35 static int show_value_unit
= 0;
36 static int use_value_prefix
= 0;
37 static int use_byte_value_binary_prefix
= 0;
38 static int use_value_sexagesimal_format
= 0;
41 static const OptionDef options
[];
44 static const char *input_filename
;
46 static const char *binary_unit_prefixes
[] = { "", "Ki", "Mi", "Gi", "Ti", "Pi" };
47 static const char *decimal_unit_prefixes
[] = { "", "K" , "M" , "G" , "T" , "P" };
49 static const char *unit_second_str
= "s" ;
50 static const char *unit_hertz_str
= "Hz" ;
51 static const char *unit_byte_str
= "byte" ;
52 static const char *unit_bit_per_second_str
= "bit/s";
54 static char *value_string(char *buf
, int buf_size
, double val
, const char *unit
)
56 if (unit
== unit_second_str
&& use_value_sexagesimal_format
) {
60 mins
= (int)secs
/ 60;
61 secs
= secs
- mins
* 60;
64 snprintf(buf
, buf_size
, "%d:%02d:%09.6f", hours
, mins
, secs
);
65 } else if (use_value_prefix
) {
66 const char *prefix_string
;
69 if (unit
== unit_byte_str
&& use_byte_value_binary_prefix
) {
70 index
= (int) (log(val
)/log(2)) / 10;
71 index
= av_clip(index
, 0, FF_ARRAY_ELEMS(binary_unit_prefixes
) -1);
72 val
/= pow(2, index
*10);
73 prefix_string
= binary_unit_prefixes
[index
];
75 index
= (int) (log10(val
)) / 3;
76 index
= av_clip(index
, 0, FF_ARRAY_ELEMS(decimal_unit_prefixes
) -1);
77 val
/= pow(10, index
*3);
78 prefix_string
= decimal_unit_prefixes
[index
];
81 snprintf(buf
, buf_size
, "%.3f %s%s", val
, prefix_string
, show_value_unit ? unit
: "");
83 snprintf(buf
, buf_size
, "%f %s", val
, show_value_unit ? unit
: "");
89 static char *time_value_string(char *buf
, int buf_size
, int64_t val
, const AVRational
*time_base
)
91 if (val
== AV_NOPTS_VALUE
) {
92 snprintf(buf
, buf_size
, "N/A");
94 value_string(buf
, buf_size
, val
* av_q2d(*time_base
), unit_second_str
);
100 static const char *codec_type_string(enum CodecType codec_type
)
102 switch (codec_type
) {
103 case CODEC_TYPE_VIDEO
: return "video";
104 case CODEC_TYPE_AUDIO
: return "audio";
105 case CODEC_TYPE_DATA
: return "data";
106 case CODEC_TYPE_SUBTITLE
: return "subtitle";
107 case CODEC_TYPE_ATTACHMENT
: return "attachment";
108 default: return "unknown";
112 static void show_stream(AVFormatContext
*fmt_ctx
, int stream_idx
)
114 AVStream
*stream
= fmt_ctx
->streams
[stream_idx
];
115 AVCodecContext
*dec_ctx
;
121 printf("[STREAM]\n");
123 printf("index=%d\n", stream
->index
);
125 if ((dec_ctx
= stream
->codec
)) {
126 if ((dec
= dec_ctx
->codec
)) {
127 printf("codec_name=%s\n", dec
->name
);
128 printf("codec_long_name=%s\n", dec
->long_name
);
130 printf("codec_name=unknown\n");
133 printf("codec_type=%s\n", codec_type_string(dec_ctx
->codec_type
));
134 printf("codec_time_base=%d/%d\n", dec_ctx
->time_base
.num
, dec_ctx
->time_base
.den
);
136 /* print AVI/FourCC tag */
137 a
= dec_ctx
->codec_tag
& 0xff;
138 b
= dec_ctx
->codec_tag
>>8 & 0xff;
139 c
= dec_ctx
->codec_tag
>>16 & 0xff;
140 d
= dec_ctx
->codec_tag
>>24 & 0xff;
141 printf("codec_tag_string=");
142 if (isprint(a
)) printf("%c", a
); else printf("[%d]", a
);
143 if (isprint(b
)) printf("%c", b
); else printf("[%d]", b
);
144 if (isprint(c
)) printf("%c", c
); else printf("[%d]", c
);
145 if (isprint(d
)) printf("%c", d
); else printf("[%d]", d
);
146 printf("\ncodec_tag=0x%04x\n", dec_ctx
->codec_tag
);
148 switch (dec_ctx
->codec_type
) {
149 case CODEC_TYPE_VIDEO
:
150 printf("width=%d\n", dec_ctx
->width
);
151 printf("height=%d\n", dec_ctx
->height
);
152 printf("has_b_frames=%d\n", dec_ctx
->has_b_frames
);
153 printf("sample_aspect_ratio=%d:%d\n", dec_ctx
->sample_aspect_ratio
.num
,
154 dec_ctx
->sample_aspect_ratio
.den
);
155 printf("display_aspect_ratio=%d:%d\n", dec_ctx
->sample_aspect_ratio
.num
,
156 dec_ctx
->sample_aspect_ratio
.den
);
157 printf("pix_fmt=%s\n", dec_ctx
->pix_fmt
!= PIX_FMT_NONE ?
158 av_pix_fmt_descriptors
[dec_ctx
->pix_fmt
].name
: "unknown");
161 case CODEC_TYPE_AUDIO
:
162 printf("sample_rate=%s\n", value_string(val_str
, sizeof(val_str
),
163 dec_ctx
->sample_rate
,
165 printf("channels=%d\n", dec_ctx
->channels
);
166 printf("bits_per_sample=%d\n", av_get_bits_per_sample(dec_ctx
->codec_id
));
170 printf("codec_type=unknown\n");
173 if (fmt_ctx
->iformat
->flags
& AVFMT_SHOW_IDS
)
174 printf("id=0x%x\n", stream
->id
);
175 printf("r_frame_rate=%d/%d\n", stream
->r_frame_rate
.num
, stream
->r_frame_rate
.den
);
176 printf("avg_frame_rate=%d/%d\n", stream
->avg_frame_rate
.num
, stream
->avg_frame_rate
.den
);
177 printf("time_base=%d/%d\n", stream
->time_base
.num
, stream
->time_base
.den
);
178 if (stream
->language
[0])
179 printf("language=%s\n", stream
->language
);
180 printf("start_time=%s\n", time_value_string(val_str
, sizeof(val_str
), stream
->start_time
,
181 &stream
->time_base
));
182 printf("duration=%s\n", time_value_string(val_str
, sizeof(val_str
), stream
->duration
,
183 &stream
->time_base
));
185 while ((tag
= av_metadata_get(stream
->metadata
, "", tag
, AV_METADATA_IGNORE_SUFFIX
)))
186 printf("%s=%s\n", tag
->key
, tag
->value
);
188 printf("[/STREAM]\n");
191 static void show_format(AVFormatContext
*fmt_ctx
)
193 AVMetadataTag
*tag
= NULL
;
196 printf("[FORMAT]\n");
198 printf("filename=%s\n", fmt_ctx
->filename
);
199 printf("nb_streams=%d\n", fmt_ctx
->nb_streams
);
200 printf("format_name=%s\n", fmt_ctx
->iformat
->name
);
201 printf("format_long_name=%s\n", fmt_ctx
->iformat
->long_name
);
202 printf("start_time=%s\n", time_value_string(val_str
, sizeof(val_str
), fmt_ctx
->start_time
,
204 printf("duration=%s\n", time_value_string(val_str
, sizeof(val_str
), fmt_ctx
->duration
,
206 printf("size=%s\n", value_string(val_str
, sizeof(val_str
), fmt_ctx
->file_size
,
208 printf("bit_rate=%s\n", value_string(val_str
, sizeof(val_str
), fmt_ctx
->bit_rate
,
209 unit_bit_per_second_str
));
211 while ((tag
= av_metadata_get(fmt_ctx
->metadata
, "", tag
, AV_METADATA_IGNORE_SUFFIX
)))
212 printf("TAG:%s=%s\n", tag
->key
, tag
->value
);
214 printf("[/FORMAT]\n");
217 static int open_input_file(AVFormatContext
**fmt_ctx_ptr
, const char *filename
)
220 AVFormatContext
*fmt_ctx
;
222 fmt_ctx
= avformat_alloc_context();
224 if ((err
= av_open_input_file(&fmt_ctx
, filename
, NULL
, 0, NULL
)) < 0) {
225 print_error(filename
, err
);
229 /* fill the streams in the format context */
230 if ((err
= av_find_stream_info(fmt_ctx
)) < 0) {
231 print_error(filename
, err
);
235 dump_format(fmt_ctx
, 0, filename
, 0);
237 /* bind a decoder to each input stream */
238 for (i
= 0; i
< fmt_ctx
->nb_streams
; i
++) {
239 AVStream
*stream
= fmt_ctx
->streams
[i
];
242 if (!(codec
= avcodec_find_decoder(stream
->codec
->codec_id
))) {
243 fprintf(stderr
, "Unsupported codec (id=%d) for input stream %d\n",
244 stream
->codec
->codec_id
, stream
->index
);
245 } else if (avcodec_open(stream
->codec
, codec
) < 0) {
246 fprintf(stderr
, "Error while opening codec for input stream %d\n",
251 *fmt_ctx_ptr
= fmt_ctx
;
255 static int probe_file(const char *filename
)
257 AVFormatContext
*fmt_ctx
;
260 if ((ret
= open_input_file(&fmt_ctx
, filename
)))
264 for (i
= 0; i
< fmt_ctx
->nb_streams
; i
++)
265 show_stream(fmt_ctx
, i
);
268 show_format(fmt_ctx
);
270 av_close_input_file(fmt_ctx
);
274 static void show_usage(void)
276 printf("Simple multimedia streams analyzer\n");
277 printf("usage: ffprobe [OPTIONS] [INPUT_FILE]\n");
281 static void opt_input_file(const char *filename
)
283 if (!strcmp(filename
, "-"))
285 input_filename
= filename
;
288 static void show_help(void)
291 show_help_options(options
, "Main options:\n", 0, 0);
295 static void opt_pretty(void)
298 use_value_prefix
= 1;
299 use_byte_value_binary_prefix
= 1;
300 use_value_sexagesimal_format
= 1;
303 static const OptionDef options
[] = {
304 #include "cmdutils_common_opts.h"
305 { "unit", OPT_BOOL
, {(void*)&show_value_unit
}, "show unit of the displayed values" },
306 { "prefix", OPT_BOOL
, {(void*)&use_value_prefix
}, "use SI prefixes for the displayed values" },
307 { "byte_binary_prefix", OPT_BOOL
, {(void*)&use_byte_value_binary_prefix
},
308 "use binary prefixes for byte units" },
309 { "sexagesimal", OPT_BOOL
, {(void*)&use_value_sexagesimal_format
},
310 "use sexagesimal format HOURS:MM:SS.MICROSECONDS for time units" },
311 { "pretty", 0, {(void*)&opt_pretty
},
312 "prettify the format of displayed values, make it more human readable" },
313 { "show_format", OPT_BOOL
, {(void*)&do_show_format
} , "show format/container info" },
314 { "show_streams", OPT_BOOL
, {(void*)&do_show_streams
}, "show streams info" },
318 int main(int argc
, char **argv
)
323 parse_options(argc
, argv
, options
, opt_input_file
);
325 if (!input_filename
) {
327 fprintf(stderr
, "You have to specify one input file.\n");
328 fprintf(stderr
, "Use -h to get full help or, even better, run 'man ffprobe'.\n");
332 return probe_file(input_filename
);