]> git.sesse.net Git - ffmpeg/blob - ffprobe.c
Merge remote-tracking branch 'luzero/segment'
[ffmpeg] / ffprobe.c
1 /*
2  * ffprobe : Simple Media Prober based on the FFmpeg libraries
3  * Copyright (c) 2007-2010 Stefano Sabatini
4  *
5  * This file is part of FFmpeg.
6  *
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.
11  *
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.
16  *
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
20  */
21
22 #include "config.h"
23
24 #include "libavformat/avformat.h"
25 #include "libavcodec/avcodec.h"
26 #include "libavutil/avstring.h"
27 #include "libavutil/opt.h"
28 #include "libavutil/pixdesc.h"
29 #include "libavutil/dict.h"
30 #include "libavdevice/avdevice.h"
31 #include "cmdutils.h"
32
33 const char program_name[] = "ffprobe";
34 const int program_birth_year = 2007;
35
36 static int do_show_format  = 0;
37 static int do_show_packets = 0;
38 static int do_show_streams = 0;
39
40 static int show_value_unit              = 0;
41 static int use_value_prefix             = 0;
42 static int use_byte_value_binary_prefix = 0;
43 static int use_value_sexagesimal_format = 0;
44
45 static char *print_format;
46
47 static const OptionDef options[];
48
49 /* FFprobe context */
50 static const char *input_filename;
51 static AVInputFormat *iformat = NULL;
52
53 static const char *binary_unit_prefixes [] = { "", "Ki", "Mi", "Gi", "Ti", "Pi" };
54 static const char *decimal_unit_prefixes[] = { "", "K" , "M" , "G" , "T" , "P"  };
55
56 static const char *unit_second_str          = "s"    ;
57 static const char *unit_hertz_str           = "Hz"   ;
58 static const char *unit_byte_str            = "byte" ;
59 static const char *unit_bit_per_second_str  = "bit/s";
60
61 void exit_program(int ret)
62 {
63     exit(ret);
64 }
65
66 static char *value_string(char *buf, int buf_size, double val, const char *unit)
67 {
68     if (unit == unit_second_str && use_value_sexagesimal_format) {
69         double secs;
70         int hours, mins;
71         secs  = val;
72         mins  = (int)secs / 60;
73         secs  = secs - mins * 60;
74         hours = mins / 60;
75         mins %= 60;
76         snprintf(buf, buf_size, "%d:%02d:%09.6f", hours, mins, secs);
77     } else if (use_value_prefix) {
78         const char *prefix_string;
79         int index;
80
81         if (unit == unit_byte_str && use_byte_value_binary_prefix) {
82             index = (int) (log(val)/log(2)) / 10;
83             index = av_clip(index, 0, FF_ARRAY_ELEMS(binary_unit_prefixes) -1);
84             val /= pow(2, index*10);
85             prefix_string = binary_unit_prefixes[index];
86         } else {
87             index = (int) (log10(val)) / 3;
88             index = av_clip(index, 0, FF_ARRAY_ELEMS(decimal_unit_prefixes) -1);
89             val /= pow(10, index*3);
90             prefix_string = decimal_unit_prefixes[index];
91         }
92
93         snprintf(buf, buf_size, "%.3f%s%s%s", val, prefix_string || show_value_unit ? " " : "",
94                  prefix_string, show_value_unit ? unit : "");
95     } else {
96         snprintf(buf, buf_size, "%f%s%s", val, show_value_unit ? " " : "",
97                  show_value_unit ? unit : "");
98     }
99
100     return buf;
101 }
102
103 static char *time_value_string(char *buf, int buf_size, int64_t val, const AVRational *time_base)
104 {
105     if (val == AV_NOPTS_VALUE) {
106         snprintf(buf, buf_size, "N/A");
107     } else {
108         value_string(buf, buf_size, val * av_q2d(*time_base), unit_second_str);
109     }
110
111     return buf;
112 }
113
114 static char *ts_value_string (char *buf, int buf_size, int64_t ts)
115 {
116     if (ts == AV_NOPTS_VALUE) {
117         snprintf(buf, buf_size, "N/A");
118     } else {
119         snprintf(buf, buf_size, "%"PRId64, ts);
120     }
121
122     return buf;
123 }
124
125 /* WRITERS API */
126
127 typedef struct WriterContext WriterContext;
128
129 typedef struct Writer {
130     int priv_size;                  ///< private size for the writer context
131     const char *name;
132
133     int  (*init)  (WriterContext *wctx, const char *args, void *opaque);
134     void (*uninit)(WriterContext *wctx);
135
136     void (*print_header)(WriterContext *ctx);
137     void (*print_footer)(WriterContext *ctx);
138
139     void (*print_chapter_header)(WriterContext *wctx, const char *);
140     void (*print_chapter_footer)(WriterContext *wctx, const char *);
141     void (*print_section_header)(WriterContext *wctx, const char *);
142     void (*print_section_footer)(WriterContext *wctx, const char *);
143     void (*print_integer)       (WriterContext *wctx, const char *, int);
144     void (*print_string)        (WriterContext *wctx, const char *, const char *);
145     void (*show_tags)           (WriterContext *wctx, AVDictionary *dict);
146 } Writer;
147
148 struct WriterContext {
149     const AVClass *class;           ///< class of the writer
150     const Writer *writer;           ///< the Writer of which this is an instance
151     char *name;                     ///< name of this writer instance
152     void *priv;                     ///< private data for use by the filter
153     unsigned int nb_item;           ///< number of the item printed in the given section, starting at 0
154     unsigned int nb_section;        ///< number of the section printed in the given section sequence, starting at 0
155     unsigned int nb_chapter;        ///< number of the chapter, starting at 0
156 };
157
158 static const char *writer_get_name(void *p)
159 {
160     WriterContext *wctx = p;
161     return wctx->writer->name;
162 }
163
164 static const AVClass writer_class = {
165     "Writer",
166     writer_get_name,
167     NULL,
168     LIBAVUTIL_VERSION_INT,
169 };
170
171 static void writer_close(WriterContext **wctx)
172 {
173     if (*wctx && (*wctx)->writer->uninit)
174         (*wctx)->writer->uninit(*wctx);
175
176     av_freep(&((*wctx)->priv));
177     av_freep(wctx);
178 }
179
180 static int writer_open(WriterContext **wctx, const Writer *writer,
181                        const char *args, void *opaque)
182 {
183     int ret = 0;
184
185     if (!(*wctx = av_malloc(sizeof(WriterContext)))) {
186         ret = AVERROR(ENOMEM);
187         goto fail;
188     }
189
190     if (!((*wctx)->priv = av_mallocz(writer->priv_size))) {
191         ret = AVERROR(ENOMEM);
192         goto fail;
193     }
194
195     (*wctx)->class = &writer_class;
196     (*wctx)->writer = writer;
197     if ((*wctx)->writer->init)
198         ret = (*wctx)->writer->init(*wctx, args, opaque);
199     if (ret < 0)
200         goto fail;
201
202     return 0;
203
204 fail:
205     writer_close(wctx);
206     return ret;
207 }
208
209 static inline void writer_print_header(WriterContext *wctx)
210 {
211     if (wctx->writer->print_header)
212         wctx->writer->print_header(wctx);
213     wctx->nb_chapter = 0;
214 }
215
216 static inline void writer_print_footer(WriterContext *wctx)
217 {
218     if (wctx->writer->print_footer)
219         wctx->writer->print_footer(wctx);
220 }
221
222 static inline void writer_print_chapter_header(WriterContext *wctx,
223                                                const char *header)
224 {
225     if (wctx->writer->print_chapter_header)
226         wctx->writer->print_chapter_header(wctx, header);
227     wctx->nb_section = 0;
228 }
229
230 static inline void writer_print_chapter_footer(WriterContext *wctx,
231                                                const char *footer)
232 {
233     if (wctx->writer->print_chapter_footer)
234         wctx->writer->print_chapter_footer(wctx, footer);
235     wctx->nb_chapter++;
236 }
237
238 static inline void writer_print_section_header(WriterContext *wctx,
239                                                const char *header)
240 {
241     if (wctx->writer->print_section_header)
242         wctx->writer->print_section_header(wctx, header);
243     wctx->nb_item = 0;
244 }
245
246 static inline void writer_print_section_footer(WriterContext *wctx,
247                                                const char *footer)
248 {
249     if (wctx->writer->print_section_footer)
250         wctx->writer->print_section_footer(wctx, footer);
251     wctx->nb_section++;
252 }
253
254 static inline void writer_print_integer(WriterContext *wctx,
255                                         const char *key, int val)
256 {
257     wctx->writer->print_integer(wctx, key, val);
258     wctx->nb_item++;
259 }
260
261 static inline void writer_print_string(WriterContext *wctx,
262                                        const char *key, const char *val)
263 {
264     wctx->writer->print_string(wctx, key, val);
265     wctx->nb_item++;
266 }
267
268 static inline void writer_show_tags(WriterContext *wctx, AVDictionary *dict)
269 {
270     wctx->writer->show_tags(wctx, dict);
271 }
272
273 #define MAX_REGISTERED_WRITERS_NB 64
274
275 static Writer *registered_writers[MAX_REGISTERED_WRITERS_NB + 1];
276
277 static int writer_register(Writer *writer)
278 {
279     static int next_registered_writer_idx = 0;
280
281     if (next_registered_writer_idx == MAX_REGISTERED_WRITERS_NB)
282         return AVERROR(ENOMEM);
283
284     registered_writers[next_registered_writer_idx++] = writer;
285     return 0;
286 }
287
288 static Writer *writer_get_by_name(const char *name)
289 {
290     int i;
291
292     for (i = 0; registered_writers[i]; i++)
293         if (!strcmp(registered_writers[i]->name, name))
294             return registered_writers[i];
295
296     return NULL;
297 }
298
299 /* Print helpers */
300
301 struct print_buf {
302     char *s;
303     int len;
304 };
305
306 static char *fast_asprintf(struct print_buf *pbuf, const char *fmt, ...)
307 {
308     va_list va;
309     int len;
310
311     va_start(va, fmt);
312     len = vsnprintf(NULL, 0, fmt, va);
313     va_end(va);
314     if (len < 0)
315         goto fail;
316
317     if (pbuf->len < len) {
318         char *p = av_realloc(pbuf->s, len + 1);
319         if (!p)
320             goto fail;
321         pbuf->s   = p;
322         pbuf->len = len;
323     }
324
325     va_start(va, fmt);
326     len = vsnprintf(pbuf->s, len + 1, fmt, va);
327     va_end(va);
328     if (len < 0)
329         goto fail;
330     return pbuf->s;
331
332 fail:
333     av_freep(&pbuf->s);
334     pbuf->len = 0;
335     return NULL;
336 }
337
338 /* WRITERS */
339
340 /* Default output */
341
342 static void default_print_footer(WriterContext *wctx)
343 {
344     printf("\n");
345 }
346
347 static void default_print_chapter_header(WriterContext *wctx, const char *chapter)
348 {
349     if (wctx->nb_chapter)
350         printf("\n");
351 }
352
353 /* lame uppercasing routine, assumes the string is lower case ASCII */
354 static inline char *upcase_string(char *dst, size_t dst_size, const char *src)
355 {
356     int i;
357     for (i = 0; src[i] && i < dst_size-1; i++)
358         dst[i] = src[i]-32;
359     dst[i] = 0;
360     return dst;
361 }
362
363 static void default_print_section_header(WriterContext *wctx, const char *section)
364 {
365     char buf[32];
366
367     if (wctx->nb_section)
368         printf("\n");
369     printf("[%s]\n", upcase_string(buf, sizeof(buf), section));
370 }
371
372 static void default_print_section_footer(WriterContext *wctx, const char *section)
373 {
374     char buf[32];
375
376     printf("[/%s]", upcase_string(buf, sizeof(buf), section));
377 }
378
379 static void default_print_str(WriterContext *wctx, const char *key, const char *value)
380 {
381     printf("%s=%s\n", key, value);
382 }
383
384 static void default_print_int(WriterContext *wctx, const char *key, int value)
385 {
386     printf("%s=%d\n", key, value);
387 }
388
389 static void default_show_tags(WriterContext *wctx, AVDictionary *dict)
390 {
391     AVDictionaryEntry *tag = NULL;
392     while ((tag = av_dict_get(dict, "", tag, AV_DICT_IGNORE_SUFFIX))) {
393         printf("TAG:");
394         writer_print_string(wctx, tag->key, tag->value);
395     }
396 }
397
398 static Writer default_writer = {
399     .name                  = "default",
400     .print_footer          = default_print_footer,
401     .print_chapter_header  = default_print_chapter_header,
402     .print_section_header  = default_print_section_header,
403     .print_section_footer  = default_print_section_footer,
404     .print_integer         = default_print_int,
405     .print_string          = default_print_str,
406     .show_tags             = default_show_tags
407 };
408
409 /* JSON output */
410
411 typedef struct {
412     int multiple_entries; ///< tells if the given chapter requires multiple entries
413 } JSONContext;
414
415 static char *json_escape_str(const char *s)
416 {
417     static const char json_escape[] = {'"', '\\', '\b', '\f', '\n', '\r', '\t', 0};
418     static const char json_subst[]  = {'"', '\\',  'b',  'f',  'n',  'r',  't', 0};
419     char *ret, *p;
420     int i, len = 0;
421
422     // compute the length of the escaped string
423     for (i = 0; s[i]; i++) {
424         if (strchr(json_escape, s[i]))     len += 2; // simple escape
425         else if ((unsigned char)s[i] < 32) len += 6; // handle non-printable chars
426         else                               len += 1; // char copy
427     }
428
429     p = ret = av_malloc(len + 1);
430     if (!p)
431         return NULL;
432     for (i = 0; s[i]; i++) {
433         char *q = strchr(json_escape, s[i]);
434         if (q) {
435             *p++ = '\\';
436             *p++ = json_subst[q - json_escape];
437         } else if ((unsigned char)s[i] < 32) {
438             snprintf(p, 7, "\\u00%02x", s[i] & 0xff);
439             p += 6;
440         } else {
441             *p++ = s[i];
442         }
443     }
444     *p = 0;
445     return ret;
446 }
447
448 static void json_print_header(WriterContext *wctx)
449 {
450     printf("{");
451 }
452
453 static void json_print_footer(WriterContext *wctx)
454 {
455     printf("\n}\n");
456 }
457
458 static void json_print_chapter_header(WriterContext *wctx, const char *chapter)
459 {
460     JSONContext *json = wctx->priv;
461     char *chapter_esc;
462
463     if (wctx->nb_chapter)
464         printf(",");
465     json->multiple_entries = !strcmp(chapter, "packets") || !strcmp(chapter, "streams");
466     chapter_esc = json_escape_str(chapter);
467     printf("\n  \"%s\":%s", chapter_esc ? chapter_esc : "",
468            json->multiple_entries ? " [" : " ");
469     av_free(chapter_esc);
470 }
471
472 static void json_print_chapter_footer(WriterContext *wctx, const char *chapter)
473 {
474     JSONContext *json = wctx->priv;
475
476     if (json->multiple_entries)
477         printf("]");
478 }
479
480 static void json_print_section_header(WriterContext *wctx, const char *section)
481 {
482     if (wctx->nb_section) printf(",");
483     printf("{\n");
484 }
485
486 static void json_print_section_footer(WriterContext *wctx, const char *section)
487 {
488     printf("\n  }");
489 }
490
491 static inline void json_print_item_str(WriterContext *wctx,
492                                        const char *key, const char *value,
493                                        const char *indent)
494 {
495     char *key_esc = json_escape_str(key);
496     char *value_esc = json_escape_str(value);
497
498     printf("%s\"%s\": \"%s\"", indent,
499            key_esc   ? key_esc   : "",
500            value_esc ? value_esc : "");
501     av_free(key_esc);
502     av_free(value_esc);
503 }
504
505 #define INDENT "    "
506
507 static void json_print_str(WriterContext *wctx, const char *key, const char *value)
508 {
509     if (wctx->nb_item) printf(",\n");
510     json_print_item_str(wctx, key, value, INDENT);
511 }
512
513 static void json_print_int(WriterContext *wctx, const char *key, int value)
514 {
515     char *key_esc = json_escape_str(key);
516
517     if (wctx->nb_item) printf(",\n");
518     printf(INDENT "\"%s\": %d", key_esc ? key_esc : "", value);
519     av_free(key_esc);
520 }
521
522 static void json_show_tags(WriterContext *wctx, AVDictionary *dict)
523 {
524     AVDictionaryEntry *tag = NULL;
525     int is_first = 1;
526     if (!dict)
527         return;
528     printf(",\n" INDENT "\"tags\": {\n");
529     while ((tag = av_dict_get(dict, "", tag, AV_DICT_IGNORE_SUFFIX))) {
530         if (is_first) is_first = 0;
531         else          printf(",\n");
532         json_print_item_str(wctx, tag->key, tag->value, INDENT INDENT);
533     }
534     printf("\n    }");
535 }
536
537 static Writer json_writer = {
538     .name         = "json",
539     .priv_size    = sizeof(JSONContext),
540
541     .print_header         = json_print_header,
542     .print_footer         = json_print_footer,
543     .print_chapter_header = json_print_chapter_header,
544     .print_chapter_footer = json_print_chapter_footer,
545     .print_section_header = json_print_section_header,
546     .print_section_footer = json_print_section_footer,
547     .print_integer        = json_print_int,
548     .print_string         = json_print_str,
549     .show_tags            = json_show_tags,
550 };
551
552 static void writer_register_all(void)
553 {
554     static int initialized;
555
556     if (initialized)
557         return;
558     initialized = 1;
559
560     writer_register(&default_writer);
561     writer_register(&json_writer);
562 }
563
564 #define print_fmt(k, f, ...) do {              \
565     if (fast_asprintf(&pbuf, f, __VA_ARGS__))  \
566         writer_print_string(w, k, pbuf.s);     \
567 } while (0)
568
569 #define print_int(k, v)         writer_print_integer(w, k, v)
570 #define print_str(k, v)         writer_print_string(w, k, v)
571 #define print_section_header(s) writer_print_section_header(w, s)
572 #define print_section_footer(s) writer_print_section_footer(w, s)
573 #define show_tags(metadata)     writer_show_tags(w, metadata)
574
575 static void show_packet(WriterContext *w, AVFormatContext *fmt_ctx, AVPacket *pkt, int packet_idx)
576 {
577     char val_str[128];
578     AVStream *st = fmt_ctx->streams[pkt->stream_index];
579     struct print_buf pbuf = {.s = NULL};
580
581     print_section_header("packet");
582     print_str("codec_type",       av_x_if_null(av_get_media_type_string(st->codec->codec_type), "unknown"));
583     print_int("stream_index",     pkt->stream_index);
584     print_str("pts",              ts_value_string  (val_str, sizeof(val_str), pkt->pts));
585     print_str("pts_time",         time_value_string(val_str, sizeof(val_str), pkt->pts, &st->time_base));
586     print_str("dts",              ts_value_string  (val_str, sizeof(val_str), pkt->dts));
587     print_str("dts_time",         time_value_string(val_str, sizeof(val_str), pkt->dts, &st->time_base));
588     print_str("duration",         ts_value_string  (val_str, sizeof(val_str), pkt->duration));
589     print_str("duration_time",    time_value_string(val_str, sizeof(val_str), pkt->duration, &st->time_base));
590     print_str("size",             value_string     (val_str, sizeof(val_str), pkt->size, unit_byte_str));
591     print_fmt("pos",   "%"PRId64, pkt->pos);
592     print_fmt("flags", "%c",      pkt->flags & AV_PKT_FLAG_KEY ? 'K' : '_');
593     print_section_footer("packet");
594
595     av_free(pbuf.s);
596     fflush(stdout);
597 }
598
599 static void show_packets(WriterContext *w, AVFormatContext *fmt_ctx)
600 {
601     AVPacket pkt;
602     int i = 0;
603
604     av_init_packet(&pkt);
605
606     while (!av_read_frame(fmt_ctx, &pkt))
607         show_packet(w, fmt_ctx, &pkt, i++);
608 }
609
610 static void show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_idx)
611 {
612     AVStream *stream = fmt_ctx->streams[stream_idx];
613     AVCodecContext *dec_ctx;
614     AVCodec *dec;
615     char val_str[128];
616     AVRational display_aspect_ratio;
617     struct print_buf pbuf = {.s = NULL};
618
619     print_section_header("stream");
620
621     print_int("index", stream->index);
622
623     if ((dec_ctx = stream->codec)) {
624         if ((dec = dec_ctx->codec)) {
625             print_str("codec_name",      dec->name);
626             print_str("codec_long_name", dec->long_name);
627         } else {
628             print_str("codec_name",      "unknown");
629         }
630
631         print_str("codec_type", av_x_if_null(av_get_media_type_string(dec_ctx->codec_type), "unknown"));
632         print_fmt("codec_time_base", "%d/%d", dec_ctx->time_base.num, dec_ctx->time_base.den);
633
634         /* print AVI/FourCC tag */
635         av_get_codec_tag_string(val_str, sizeof(val_str), dec_ctx->codec_tag);
636         print_str("codec_tag_string",    val_str);
637         print_fmt("codec_tag", "0x%04x", dec_ctx->codec_tag);
638
639         switch (dec_ctx->codec_type) {
640         case AVMEDIA_TYPE_VIDEO:
641             print_int("width",        dec_ctx->width);
642             print_int("height",       dec_ctx->height);
643             print_int("has_b_frames", dec_ctx->has_b_frames);
644             if (dec_ctx->sample_aspect_ratio.num) {
645                 print_fmt("sample_aspect_ratio", "%d:%d",
646                           dec_ctx->sample_aspect_ratio.num,
647                           dec_ctx->sample_aspect_ratio.den);
648                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
649                           dec_ctx->width  * dec_ctx->sample_aspect_ratio.num,
650                           dec_ctx->height * dec_ctx->sample_aspect_ratio.den,
651                           1024*1024);
652                 print_fmt("display_aspect_ratio", "%d:%d",
653                           display_aspect_ratio.num,
654                           display_aspect_ratio.den);
655             }
656             print_str("pix_fmt", av_x_if_null(av_get_pix_fmt_name(dec_ctx->pix_fmt), "unknown"));
657             print_int("level",   dec_ctx->level);
658             break;
659
660         case AVMEDIA_TYPE_AUDIO:
661             print_str("sample_fmt",
662                       av_x_if_null(av_get_sample_fmt_name(dec_ctx->sample_fmt), "unknown"));
663             print_str("sample_rate",     value_string(val_str, sizeof(val_str), dec_ctx->sample_rate, unit_hertz_str));
664             print_int("channels",        dec_ctx->channels);
665             print_int("bits_per_sample", av_get_bits_per_sample(dec_ctx->codec_id));
666             break;
667         }
668     } else {
669         print_str("codec_type", "unknown");
670     }
671
672     if (fmt_ctx->iformat->flags & AVFMT_SHOW_IDS)
673         print_fmt("id", "0x%x", stream->id);
674     print_fmt("r_frame_rate",   "%d/%d", stream->r_frame_rate.num,   stream->r_frame_rate.den);
675     print_fmt("avg_frame_rate", "%d/%d", stream->avg_frame_rate.num, stream->avg_frame_rate.den);
676     print_fmt("time_base",      "%d/%d", stream->time_base.num,      stream->time_base.den);
677     print_str("start_time", time_value_string(val_str, sizeof(val_str), stream->start_time, &stream->time_base));
678     print_str("duration",   time_value_string(val_str, sizeof(val_str), stream->duration,   &stream->time_base));
679     if (stream->nb_frames)
680         print_fmt("nb_frames", "%"PRId64, stream->nb_frames);
681
682     show_tags(stream->metadata);
683
684     print_section_footer("stream");
685     av_free(pbuf.s);
686     fflush(stdout);
687 }
688
689 static void show_streams(WriterContext *w, AVFormatContext *fmt_ctx)
690 {
691     int i;
692     for (i = 0; i < fmt_ctx->nb_streams; i++)
693         show_stream(w, fmt_ctx, i);
694 }
695
696 static void show_format(WriterContext *w, AVFormatContext *fmt_ctx)
697 {
698     char val_str[128];
699     struct print_buf pbuf = {.s = NULL};
700
701     print_section_header("format");
702     print_str("filename",         fmt_ctx->filename);
703     print_int("nb_streams",       fmt_ctx->nb_streams);
704     print_str("format_name",      fmt_ctx->iformat->name);
705     print_str("format_long_name", fmt_ctx->iformat->long_name);
706     print_str("start_time",       time_value_string(val_str, sizeof(val_str), fmt_ctx->start_time, &AV_TIME_BASE_Q));
707     print_str("duration",         time_value_string(val_str, sizeof(val_str), fmt_ctx->duration,   &AV_TIME_BASE_Q));
708     print_str("size",             value_string(val_str, sizeof(val_str), fmt_ctx->file_size, unit_byte_str));
709     print_str("bit_rate",         value_string(val_str, sizeof(val_str), fmt_ctx->bit_rate,  unit_bit_per_second_str));
710     show_tags(fmt_ctx->metadata);
711     print_section_footer("format");
712     av_free(pbuf.s);
713     fflush(stdout);
714 }
715
716 static int open_input_file(AVFormatContext **fmt_ctx_ptr, const char *filename)
717 {
718     int err, i;
719     AVFormatContext *fmt_ctx = NULL;
720     AVDictionaryEntry *t;
721
722     if ((err = avformat_open_input(&fmt_ctx, filename, iformat, &format_opts)) < 0) {
723         print_error(filename, err);
724         return err;
725     }
726     if ((t = av_dict_get(format_opts, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
727         av_log(NULL, AV_LOG_ERROR, "Option %s not found.\n", t->key);
728         return AVERROR_OPTION_NOT_FOUND;
729     }
730
731
732     /* fill the streams in the format context */
733     if ((err = avformat_find_stream_info(fmt_ctx, NULL)) < 0) {
734         print_error(filename, err);
735         return err;
736     }
737
738     av_dump_format(fmt_ctx, 0, filename, 0);
739
740     /* bind a decoder to each input stream */
741     for (i = 0; i < fmt_ctx->nb_streams; i++) {
742         AVStream *stream = fmt_ctx->streams[i];
743         AVCodec *codec;
744
745         if (!(codec = avcodec_find_decoder(stream->codec->codec_id))) {
746             fprintf(stderr, "Unsupported codec with id %d for input stream %d\n",
747                     stream->codec->codec_id, stream->index);
748         } else if (avcodec_open2(stream->codec, codec, NULL) < 0) {
749             fprintf(stderr, "Error while opening codec for input stream %d\n",
750                     stream->index);
751         }
752     }
753
754     *fmt_ctx_ptr = fmt_ctx;
755     return 0;
756 }
757
758 #define PRINT_CHAPTER(name) do {                                        \
759     if (do_show_ ## name) {                                             \
760         writer_print_chapter_header(wctx, #name);                       \
761         show_ ## name (wctx, fmt_ctx);                                  \
762         writer_print_chapter_footer(wctx, #name);                       \
763     }                                                                   \
764 } while (0)
765
766 static int probe_file(const char *filename)
767 {
768     AVFormatContext *fmt_ctx;
769     int ret;
770     Writer *w;
771     const char *buf = print_format;
772     char *w_str = NULL, *w_args = NULL;
773     WriterContext *wctx;
774
775     writer_register_all();
776
777     if (buf) {
778         w_str = av_get_token(&buf, "=");
779         if (*buf == '=') {
780             buf++;
781             w_args = av_get_token(&buf, "");
782         }
783     }
784
785     if (!w_str)
786         w_str = av_strdup("default");
787
788     w = writer_get_by_name(w_str);
789     if (!w) {
790         av_log(NULL, AV_LOG_ERROR, "Invalid output format '%s'\n", w_str);
791         ret = AVERROR(EINVAL);
792         goto end;
793     }
794
795     if ((ret = writer_open(&wctx, w, w_args, NULL)) < 0)
796         goto end;
797     if ((ret = open_input_file(&fmt_ctx, filename)))
798         goto end;
799
800     writer_print_header(wctx);
801     PRINT_CHAPTER(packets);
802     PRINT_CHAPTER(streams);
803     PRINT_CHAPTER(format);
804     writer_print_footer(wctx);
805
806     av_close_input_file(fmt_ctx);
807     writer_close(&wctx);
808
809 end:
810     av_free(w_str);
811     av_free(w_args);
812
813     return ret;
814 }
815
816 static void show_usage(void)
817 {
818     printf("Simple multimedia streams analyzer\n");
819     printf("usage: %s [OPTIONS] [INPUT_FILE]\n", program_name);
820     printf("\n");
821 }
822
823 static int opt_format(const char *opt, const char *arg)
824 {
825     iformat = av_find_input_format(arg);
826     if (!iformat) {
827         fprintf(stderr, "Unknown input format: %s\n", arg);
828         return AVERROR(EINVAL);
829     }
830     return 0;
831 }
832
833 static void opt_input_file(void *optctx, const char *arg)
834 {
835     if (input_filename) {
836         fprintf(stderr, "Argument '%s' provided as input filename, but '%s' was already specified.\n",
837                 arg, input_filename);
838         exit(1);
839     }
840     if (!strcmp(arg, "-"))
841         arg = "pipe:";
842     input_filename = arg;
843 }
844
845 static int opt_help(const char *opt, const char *arg)
846 {
847     av_log_set_callback(log_callback_help);
848     show_usage();
849     show_help_options(options, "Main options:\n", 0, 0);
850     printf("\n");
851
852     show_help_children(avformat_get_class(), AV_OPT_FLAG_DECODING_PARAM);
853
854     return 0;
855 }
856
857 static int opt_pretty(const char *opt, const char *arg)
858 {
859     show_value_unit              = 1;
860     use_value_prefix             = 1;
861     use_byte_value_binary_prefix = 1;
862     use_value_sexagesimal_format = 1;
863     return 0;
864 }
865
866 static const OptionDef options[] = {
867 #include "cmdutils_common_opts.h"
868     { "f", HAS_ARG, {(void*)opt_format}, "force format", "format" },
869     { "unit", OPT_BOOL, {(void*)&show_value_unit}, "show unit of the displayed values" },
870     { "prefix", OPT_BOOL, {(void*)&use_value_prefix}, "use SI prefixes for the displayed values" },
871     { "byte_binary_prefix", OPT_BOOL, {(void*)&use_byte_value_binary_prefix},
872       "use binary prefixes for byte units" },
873     { "sexagesimal", OPT_BOOL,  {(void*)&use_value_sexagesimal_format},
874       "use sexagesimal format HOURS:MM:SS.MICROSECONDS for time units" },
875     { "pretty", 0, {(void*)&opt_pretty},
876       "prettify the format of displayed values, make it more human readable" },
877     { "print_format", OPT_STRING | HAS_ARG, {(void*)&print_format}, "set the output printing format (available formats are: default, json)", "format" },
878     { "show_format",  OPT_BOOL, {(void*)&do_show_format} , "show format/container info" },
879     { "show_packets", OPT_BOOL, {(void*)&do_show_packets}, "show packets info" },
880     { "show_streams", OPT_BOOL, {(void*)&do_show_streams}, "show streams info" },
881     { "default", HAS_ARG | OPT_AUDIO | OPT_VIDEO | OPT_EXPERT, {(void*)opt_default}, "generic catch all option", "" },
882     { "i", HAS_ARG, {(void *)opt_input_file}, "read specified file", "input_file"},
883     { NULL, },
884 };
885
886 int main(int argc, char **argv)
887 {
888     int ret;
889
890     parse_loglevel(argc, argv, options);
891     av_register_all();
892     init_opts();
893 #if CONFIG_AVDEVICE
894     avdevice_register_all();
895 #endif
896
897     show_banner();
898     parse_options(NULL, argc, argv, options, opt_input_file);
899
900     if (!input_filename) {
901         show_usage();
902         fprintf(stderr, "You have to specify one input file.\n");
903         fprintf(stderr, "Use -h to get full help or, even better, run 'man %s'.\n", program_name);
904         exit(1);
905     }
906
907     ret = probe_file(input_filename);
908
909     return ret;
910 }