123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944 |
- /*
- * ffprobe : Simple Media Prober based on the FFmpeg libraries
- * Copyright (c) 2007-2010 Stefano Sabatini
- *
- * This file is part of FFmpeg.
- *
- * FFmpeg is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * FFmpeg is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with FFmpeg; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
- #include "config.h"
- #include "libavformat/avformat.h"
- #include "libavcodec/avcodec.h"
- #include "libavutil/avstring.h"
- #include "libavutil/opt.h"
- #include "libavutil/pixdesc.h"
- #include "libavutil/dict.h"
- #include "libavdevice/avdevice.h"
- #include "cmdutils.h"
- const char program_name[] = "ffprobe";
- const int program_birth_year = 2007;
- static int do_show_format = 0;
- static int do_show_packets = 0;
- static int do_show_streams = 0;
- static int show_value_unit = 0;
- static int use_value_prefix = 0;
- static int use_byte_value_binary_prefix = 0;
- static int use_value_sexagesimal_format = 0;
- static char *print_format;
- static const OptionDef options[];
- /* FFprobe context */
- static const char *input_filename;
- static AVInputFormat *iformat = NULL;
- static const char *binary_unit_prefixes [] = { "", "Ki", "Mi", "Gi", "Ti", "Pi" };
- static const char *decimal_unit_prefixes[] = { "", "K" , "M" , "G" , "T" , "P" };
- static const char *unit_second_str = "s" ;
- static const char *unit_hertz_str = "Hz" ;
- static const char *unit_byte_str = "byte" ;
- static const char *unit_bit_per_second_str = "bit/s";
- void exit_program(int ret)
- {
- exit(ret);
- }
- static char *value_string(char *buf, int buf_size, double val, const char *unit)
- {
- if (unit == unit_second_str && use_value_sexagesimal_format) {
- double secs;
- int hours, mins;
- secs = val;
- mins = (int)secs / 60;
- secs = secs - mins * 60;
- hours = mins / 60;
- mins %= 60;
- snprintf(buf, buf_size, "%d:%02d:%09.6f", hours, mins, secs);
- } else if (use_value_prefix) {
- const char *prefix_string;
- int index;
- if (unit == unit_byte_str && use_byte_value_binary_prefix) {
- index = (int) (log(val)/log(2)) / 10;
- index = av_clip(index, 0, FF_ARRAY_ELEMS(binary_unit_prefixes) -1);
- val /= pow(2, index*10);
- prefix_string = binary_unit_prefixes[index];
- } else {
- index = (int) (log10(val)) / 3;
- index = av_clip(index, 0, FF_ARRAY_ELEMS(decimal_unit_prefixes) -1);
- val /= pow(10, index*3);
- prefix_string = decimal_unit_prefixes[index];
- }
- snprintf(buf, buf_size, "%.3f%s%s%s", val, prefix_string || show_value_unit ? " " : "",
- prefix_string, show_value_unit ? unit : "");
- } else {
- snprintf(buf, buf_size, "%f%s%s", val, show_value_unit ? " " : "",
- show_value_unit ? unit : "");
- }
- return buf;
- }
- static char *time_value_string(char *buf, int buf_size, int64_t val, const AVRational *time_base)
- {
- if (val == AV_NOPTS_VALUE) {
- snprintf(buf, buf_size, "N/A");
- } else {
- value_string(buf, buf_size, val * av_q2d(*time_base), unit_second_str);
- }
- return buf;
- }
- static char *ts_value_string (char *buf, int buf_size, int64_t ts)
- {
- if (ts == AV_NOPTS_VALUE) {
- snprintf(buf, buf_size, "N/A");
- } else {
- snprintf(buf, buf_size, "%"PRId64, ts);
- }
- return buf;
- }
- /* WRITERS API */
- typedef struct WriterContext WriterContext;
- typedef struct Writer {
- int priv_size; ///< private size for the writer context
- const char *name;
- int (*init) (WriterContext *wctx, const char *args, void *opaque);
- void (*uninit)(WriterContext *wctx);
- void (*print_header)(WriterContext *ctx);
- void (*print_footer)(WriterContext *ctx);
- void (*print_chapter_header)(WriterContext *wctx, const char *);
- void (*print_chapter_footer)(WriterContext *wctx, const char *);
- void (*print_section_header)(WriterContext *wctx, const char *);
- void (*print_section_footer)(WriterContext *wctx, const char *);
- void (*print_integer) (WriterContext *wctx, const char *, int);
- void (*print_string) (WriterContext *wctx, const char *, const char *);
- void (*show_tags) (WriterContext *wctx, AVDictionary *dict);
- } Writer;
- struct WriterContext {
- const AVClass *class; ///< class of the writer
- const Writer *writer; ///< the Writer of which this is an instance
- char *name; ///< name of this writer instance
- void *priv; ///< private data for use by the filter
- unsigned int nb_item; ///< number of the item printed in the given section, starting at 0
- unsigned int nb_section; ///< number of the section printed in the given section sequence, starting at 0
- unsigned int nb_chapter; ///< number of the chapter, starting at 0
- };
- static const char *writer_get_name(void *p)
- {
- WriterContext *wctx = p;
- return wctx->writer->name;
- }
- static const AVClass writer_class = {
- "Writer",
- writer_get_name,
- NULL,
- LIBAVUTIL_VERSION_INT,
- };
- static void writer_close(WriterContext **wctx)
- {
- if (*wctx && (*wctx)->writer->uninit)
- (*wctx)->writer->uninit(*wctx);
- av_freep(&((*wctx)->priv));
- av_freep(wctx);
- }
- static int writer_open(WriterContext **wctx, const Writer *writer,
- const char *args, void *opaque)
- {
- int ret = 0;
- if (!(*wctx = av_malloc(sizeof(WriterContext)))) {
- ret = AVERROR(ENOMEM);
- goto fail;
- }
- if (!((*wctx)->priv = av_mallocz(writer->priv_size))) {
- ret = AVERROR(ENOMEM);
- goto fail;
- }
- (*wctx)->class = &writer_class;
- (*wctx)->writer = writer;
- if ((*wctx)->writer->init)
- ret = (*wctx)->writer->init(*wctx, args, opaque);
- if (ret < 0)
- goto fail;
- return 0;
- fail:
- writer_close(wctx);
- return ret;
- }
- static inline void writer_print_header(WriterContext *wctx)
- {
- if (wctx->writer->print_header)
- wctx->writer->print_header(wctx);
- wctx->nb_chapter = 0;
- }
- static inline void writer_print_footer(WriterContext *wctx)
- {
- if (wctx->writer->print_footer)
- wctx->writer->print_footer(wctx);
- }
- static inline void writer_print_chapter_header(WriterContext *wctx,
- const char *header)
- {
- if (wctx->writer->print_chapter_header)
- wctx->writer->print_chapter_header(wctx, header);
- wctx->nb_section = 0;
- }
- static inline void writer_print_chapter_footer(WriterContext *wctx,
- const char *footer)
- {
- if (wctx->writer->print_chapter_footer)
- wctx->writer->print_chapter_footer(wctx, footer);
- wctx->nb_chapter++;
- }
- static inline void writer_print_section_header(WriterContext *wctx,
- const char *header)
- {
- if (wctx->writer->print_section_header)
- wctx->writer->print_section_header(wctx, header);
- wctx->nb_item = 0;
- }
- static inline void writer_print_section_footer(WriterContext *wctx,
- const char *footer)
- {
- if (wctx->writer->print_section_footer)
- wctx->writer->print_section_footer(wctx, footer);
- wctx->nb_section++;
- }
- static inline void writer_print_integer(WriterContext *wctx,
- const char *key, int val)
- {
- wctx->writer->print_integer(wctx, key, val);
- wctx->nb_item++;
- }
- static inline void writer_print_string(WriterContext *wctx,
- const char *key, const char *val)
- {
- wctx->writer->print_string(wctx, key, val);
- wctx->nb_item++;
- }
- static inline void writer_show_tags(WriterContext *wctx, AVDictionary *dict)
- {
- wctx->writer->show_tags(wctx, dict);
- }
- #define MAX_REGISTERED_WRITERS_NB 64
- static Writer *registered_writers[MAX_REGISTERED_WRITERS_NB + 1];
- static int writer_register(Writer *writer)
- {
- static int next_registered_writer_idx = 0;
- if (next_registered_writer_idx == MAX_REGISTERED_WRITERS_NB)
- return AVERROR(ENOMEM);
- registered_writers[next_registered_writer_idx++] = writer;
- return 0;
- }
- static Writer *writer_get_by_name(const char *name)
- {
- int i;
- for (i = 0; registered_writers[i]; i++)
- if (!strcmp(registered_writers[i]->name, name))
- return registered_writers[i];
- return NULL;
- }
- /* Print helpers */
- struct print_buf {
- char *s;
- int len;
- };
- static char *fast_asprintf(struct print_buf *pbuf, const char *fmt, ...)
- {
- va_list va;
- int len;
- va_start(va, fmt);
- len = vsnprintf(NULL, 0, fmt, va);
- va_end(va);
- if (len < 0)
- goto fail;
- if (pbuf->len < len) {
- char *p = av_realloc(pbuf->s, len + 1);
- if (!p)
- goto fail;
- pbuf->s = p;
- pbuf->len = len;
- }
- va_start(va, fmt);
- len = vsnprintf(pbuf->s, len + 1, fmt, va);
- va_end(va);
- if (len < 0)
- goto fail;
- return pbuf->s;
- fail:
- av_freep(&pbuf->s);
- pbuf->len = 0;
- return NULL;
- }
- #define ESCAPE_INIT_BUF_SIZE 256
- #define ESCAPE_CHECK_SIZE(src, size, max_size) \
- if (size > max_size) { \
- char buf[64]; \
- snprintf(buf, sizeof(buf), "%s", src); \
- av_log(log_ctx, AV_LOG_WARNING, \
- "String '%s...' with is too big\n", buf); \
- return "FFPROBE_TOO_BIG_STRING"; \
- }
- #define ESCAPE_REALLOC_BUF(dst_size_p, dst_p, src, size) \
- if (*dst_size_p < size) { \
- char *q = av_realloc(*dst_p, size); \
- if (!q) { \
- char buf[64]; \
- snprintf(buf, sizeof(buf), "%s", src); \
- av_log(log_ctx, AV_LOG_WARNING, \
- "String '%s...' could not be escaped\n", buf); \
- return "FFPROBE_THIS_STRING_COULD_NOT_BE_ESCAPED"; \
- } \
- *dst_size_p = size; \
- *dst = q; \
- }
- /* WRITERS */
- /* Default output */
- static void default_print_footer(WriterContext *wctx)
- {
- printf("\n");
- }
- static void default_print_chapter_header(WriterContext *wctx, const char *chapter)
- {
- if (wctx->nb_chapter)
- printf("\n");
- }
- /* lame uppercasing routine, assumes the string is lower case ASCII */
- static inline char *upcase_string(char *dst, size_t dst_size, const char *src)
- {
- int i;
- for (i = 0; src[i] && i < dst_size-1; i++)
- dst[i] = src[i]-32;
- dst[i] = 0;
- return dst;
- }
- static void default_print_section_header(WriterContext *wctx, const char *section)
- {
- char buf[32];
- if (wctx->nb_section)
- printf("\n");
- printf("[%s]\n", upcase_string(buf, sizeof(buf), section));
- }
- static void default_print_section_footer(WriterContext *wctx, const char *section)
- {
- char buf[32];
- printf("[/%s]", upcase_string(buf, sizeof(buf), section));
- }
- static void default_print_str(WriterContext *wctx, const char *key, const char *value)
- {
- printf("%s=%s\n", key, value);
- }
- static void default_print_int(WriterContext *wctx, const char *key, int value)
- {
- printf("%s=%d\n", key, value);
- }
- static void default_show_tags(WriterContext *wctx, AVDictionary *dict)
- {
- AVDictionaryEntry *tag = NULL;
- while ((tag = av_dict_get(dict, "", tag, AV_DICT_IGNORE_SUFFIX))) {
- printf("TAG:");
- writer_print_string(wctx, tag->key, tag->value);
- }
- }
- static Writer default_writer = {
- .name = "default",
- .print_footer = default_print_footer,
- .print_chapter_header = default_print_chapter_header,
- .print_section_header = default_print_section_header,
- .print_section_footer = default_print_section_footer,
- .print_integer = default_print_int,
- .print_string = default_print_str,
- .show_tags = default_show_tags
- };
- /* JSON output */
- typedef struct {
- int multiple_entries; ///< tells if the given chapter requires multiple entries
- char *buf;
- size_t buf_size;
- } JSONContext;
- static av_cold int json_init(WriterContext *wctx, const char *args, void *opaque)
- {
- JSONContext *json = wctx->priv;
- json->buf_size = ESCAPE_INIT_BUF_SIZE;
- if (!(json->buf = av_malloc(json->buf_size)))
- return AVERROR(ENOMEM);
- return 0;
- }
- static av_cold void json_uninit(WriterContext *wctx)
- {
- JSONContext *json = wctx->priv;
- av_freep(&json->buf);
- }
- static const char *json_escape_str(char **dst, size_t *dst_size, const char *src,
- void *log_ctx)
- {
- static const char json_escape[] = {'"', '\\', '\b', '\f', '\n', '\r', '\t', 0};
- static const char json_subst[] = {'"', '\\', 'b', 'f', 'n', 'r', 't', 0};
- const char *p;
- char *q;
- size_t size = 1;
- // compute the length of the escaped string
- for (p = src; *p; p++) {
- ESCAPE_CHECK_SIZE(src, size, SIZE_MAX-6);
- if (strchr(json_escape, *p)) size += 2; // simple escape
- else if ((unsigned char)*p < 32) size += 6; // handle non-printable chars
- else size += 1; // char copy
- }
- ESCAPE_REALLOC_BUF(dst_size, dst, src, size);
- q = *dst;
- for (p = src; *p; p++) {
- char *s = strchr(json_escape, *p);
- if (s) {
- *q++ = '\\';
- *q++ = json_subst[s - json_escape];
- } else if ((unsigned char)*p < 32) {
- snprintf(q, 7, "\\u00%02x", *p & 0xff);
- q += 6;
- } else {
- *q++ = *p;
- }
- }
- *q = 0;
- return *dst;
- }
- static void json_print_header(WriterContext *wctx)
- {
- printf("{");
- }
- static void json_print_footer(WriterContext *wctx)
- {
- printf("\n}\n");
- }
- static void json_print_chapter_header(WriterContext *wctx, const char *chapter)
- {
- JSONContext *json = wctx->priv;
- if (wctx->nb_chapter)
- printf(",");
- json->multiple_entries = !strcmp(chapter, "packets") || !strcmp(chapter, "streams");
- printf("\n \"%s\":%s", json_escape_str(&json->buf, &json->buf_size, chapter, wctx),
- json->multiple_entries ? " [" : " ");
- }
- static void json_print_chapter_footer(WriterContext *wctx, const char *chapter)
- {
- JSONContext *json = wctx->priv;
- if (json->multiple_entries)
- printf("]");
- }
- static void json_print_section_header(WriterContext *wctx, const char *section)
- {
- if (wctx->nb_section) printf(",");
- printf("{\n");
- }
- static void json_print_section_footer(WriterContext *wctx, const char *section)
- {
- printf("\n }");
- }
- static inline void json_print_item_str(WriterContext *wctx,
- const char *key, const char *value,
- const char *indent)
- {
- JSONContext *json = wctx->priv;
- printf("%s\"%s\":", indent, json_escape_str(&json->buf, &json->buf_size, key, wctx));
- printf(" \"%s\"", json_escape_str(&json->buf, &json->buf_size, value, wctx));
- }
- #define INDENT " "
- static void json_print_str(WriterContext *wctx, const char *key, const char *value)
- {
- if (wctx->nb_item) printf(",\n");
- json_print_item_str(wctx, key, value, INDENT);
- }
- static void json_print_int(WriterContext *wctx, const char *key, int value)
- {
- JSONContext *json = wctx->priv;
- if (wctx->nb_item) printf(",\n");
- printf(INDENT "\"%s\": %d",
- json_escape_str(&json->buf, &json->buf_size, key, wctx), value);
- }
- static void json_show_tags(WriterContext *wctx, AVDictionary *dict)
- {
- AVDictionaryEntry *tag = NULL;
- int is_first = 1;
- if (!dict)
- return;
- printf(",\n" INDENT "\"tags\": {\n");
- while ((tag = av_dict_get(dict, "", tag, AV_DICT_IGNORE_SUFFIX))) {
- if (is_first) is_first = 0;
- else printf(",\n");
- json_print_item_str(wctx, tag->key, tag->value, INDENT INDENT);
- }
- printf("\n }");
- }
- static Writer json_writer = {
- .name = "json",
- .priv_size = sizeof(JSONContext),
- .init = json_init,
- .uninit = json_uninit,
- .print_header = json_print_header,
- .print_footer = json_print_footer,
- .print_chapter_header = json_print_chapter_header,
- .print_chapter_footer = json_print_chapter_footer,
- .print_section_header = json_print_section_header,
- .print_section_footer = json_print_section_footer,
- .print_integer = json_print_int,
- .print_string = json_print_str,
- .show_tags = json_show_tags,
- };
- static void writer_register_all(void)
- {
- static int initialized;
- if (initialized)
- return;
- initialized = 1;
- writer_register(&default_writer);
- writer_register(&json_writer);
- }
- #define print_fmt(k, f, ...) do { \
- if (fast_asprintf(&pbuf, f, __VA_ARGS__)) \
- writer_print_string(w, k, pbuf.s); \
- } while (0)
- #define print_int(k, v) writer_print_integer(w, k, v)
- #define print_str(k, v) writer_print_string(w, k, v)
- #define print_section_header(s) writer_print_section_header(w, s)
- #define print_section_footer(s) writer_print_section_footer(w, s)
- #define show_tags(metadata) writer_show_tags(w, metadata)
- static void show_packet(WriterContext *w, AVFormatContext *fmt_ctx, AVPacket *pkt, int packet_idx)
- {
- char val_str[128];
- AVStream *st = fmt_ctx->streams[pkt->stream_index];
- struct print_buf pbuf = {.s = NULL};
- print_section_header("packet");
- print_str("codec_type", av_x_if_null(av_get_media_type_string(st->codec->codec_type), "unknown"));
- print_int("stream_index", pkt->stream_index);
- print_str("pts", ts_value_string (val_str, sizeof(val_str), pkt->pts));
- print_str("pts_time", time_value_string(val_str, sizeof(val_str), pkt->pts, &st->time_base));
- print_str("dts", ts_value_string (val_str, sizeof(val_str), pkt->dts));
- print_str("dts_time", time_value_string(val_str, sizeof(val_str), pkt->dts, &st->time_base));
- print_str("duration", ts_value_string (val_str, sizeof(val_str), pkt->duration));
- print_str("duration_time", time_value_string(val_str, sizeof(val_str), pkt->duration, &st->time_base));
- print_str("size", value_string (val_str, sizeof(val_str), pkt->size, unit_byte_str));
- print_fmt("pos", "%"PRId64, pkt->pos);
- print_fmt("flags", "%c", pkt->flags & AV_PKT_FLAG_KEY ? 'K' : '_');
- print_section_footer("packet");
- av_free(pbuf.s);
- fflush(stdout);
- }
- static void show_packets(WriterContext *w, AVFormatContext *fmt_ctx)
- {
- AVPacket pkt;
- int i = 0;
- av_init_packet(&pkt);
- while (!av_read_frame(fmt_ctx, &pkt))
- show_packet(w, fmt_ctx, &pkt, i++);
- }
- static void show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_idx)
- {
- AVStream *stream = fmt_ctx->streams[stream_idx];
- AVCodecContext *dec_ctx;
- AVCodec *dec;
- char val_str[128];
- AVRational display_aspect_ratio;
- struct print_buf pbuf = {.s = NULL};
- print_section_header("stream");
- print_int("index", stream->index);
- if ((dec_ctx = stream->codec)) {
- if ((dec = dec_ctx->codec)) {
- print_str("codec_name", dec->name);
- print_str("codec_long_name", dec->long_name);
- } else {
- print_str("codec_name", "unknown");
- }
- print_str("codec_type", av_x_if_null(av_get_media_type_string(dec_ctx->codec_type), "unknown"));
- print_fmt("codec_time_base", "%d/%d", dec_ctx->time_base.num, dec_ctx->time_base.den);
- /* print AVI/FourCC tag */
- av_get_codec_tag_string(val_str, sizeof(val_str), dec_ctx->codec_tag);
- print_str("codec_tag_string", val_str);
- print_fmt("codec_tag", "0x%04x", dec_ctx->codec_tag);
- switch (dec_ctx->codec_type) {
- case AVMEDIA_TYPE_VIDEO:
- print_int("width", dec_ctx->width);
- print_int("height", dec_ctx->height);
- print_int("has_b_frames", dec_ctx->has_b_frames);
- if (dec_ctx->sample_aspect_ratio.num) {
- print_fmt("sample_aspect_ratio", "%d:%d",
- dec_ctx->sample_aspect_ratio.num,
- dec_ctx->sample_aspect_ratio.den);
- av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
- dec_ctx->width * dec_ctx->sample_aspect_ratio.num,
- dec_ctx->height * dec_ctx->sample_aspect_ratio.den,
- 1024*1024);
- print_fmt("display_aspect_ratio", "%d:%d",
- display_aspect_ratio.num,
- display_aspect_ratio.den);
- }
- print_str("pix_fmt", av_x_if_null(av_get_pix_fmt_name(dec_ctx->pix_fmt), "unknown"));
- print_int("level", dec_ctx->level);
- break;
- case AVMEDIA_TYPE_AUDIO:
- print_str("sample_fmt",
- av_x_if_null(av_get_sample_fmt_name(dec_ctx->sample_fmt), "unknown"));
- print_str("sample_rate", value_string(val_str, sizeof(val_str), dec_ctx->sample_rate, unit_hertz_str));
- print_int("channels", dec_ctx->channels);
- print_int("bits_per_sample", av_get_bits_per_sample(dec_ctx->codec_id));
- break;
- }
- } else {
- print_str("codec_type", "unknown");
- }
- if (fmt_ctx->iformat->flags & AVFMT_SHOW_IDS)
- print_fmt("id", "0x%x", stream->id);
- print_fmt("r_frame_rate", "%d/%d", stream->r_frame_rate.num, stream->r_frame_rate.den);
- print_fmt("avg_frame_rate", "%d/%d", stream->avg_frame_rate.num, stream->avg_frame_rate.den);
- print_fmt("time_base", "%d/%d", stream->time_base.num, stream->time_base.den);
- print_str("start_time", time_value_string(val_str, sizeof(val_str), stream->start_time, &stream->time_base));
- print_str("duration", time_value_string(val_str, sizeof(val_str), stream->duration, &stream->time_base));
- if (stream->nb_frames)
- print_fmt("nb_frames", "%"PRId64, stream->nb_frames);
- show_tags(stream->metadata);
- print_section_footer("stream");
- av_free(pbuf.s);
- fflush(stdout);
- }
- static void show_streams(WriterContext *w, AVFormatContext *fmt_ctx)
- {
- int i;
- for (i = 0; i < fmt_ctx->nb_streams; i++)
- show_stream(w, fmt_ctx, i);
- }
- static void show_format(WriterContext *w, AVFormatContext *fmt_ctx)
- {
- char val_str[128];
- struct print_buf pbuf = {.s = NULL};
- print_section_header("format");
- print_str("filename", fmt_ctx->filename);
- print_int("nb_streams", fmt_ctx->nb_streams);
- print_str("format_name", fmt_ctx->iformat->name);
- print_str("format_long_name", fmt_ctx->iformat->long_name);
- print_str("start_time", time_value_string(val_str, sizeof(val_str), fmt_ctx->start_time, &AV_TIME_BASE_Q));
- print_str("duration", time_value_string(val_str, sizeof(val_str), fmt_ctx->duration, &AV_TIME_BASE_Q));
- print_str("size", value_string(val_str, sizeof(val_str), fmt_ctx->file_size, unit_byte_str));
- print_str("bit_rate", value_string(val_str, sizeof(val_str), fmt_ctx->bit_rate, unit_bit_per_second_str));
- show_tags(fmt_ctx->metadata);
- print_section_footer("format");
- av_free(pbuf.s);
- fflush(stdout);
- }
- static int open_input_file(AVFormatContext **fmt_ctx_ptr, const char *filename)
- {
- int err, i;
- AVFormatContext *fmt_ctx = NULL;
- AVDictionaryEntry *t;
- if ((err = avformat_open_input(&fmt_ctx, filename, iformat, &format_opts)) < 0) {
- print_error(filename, err);
- return err;
- }
- if ((t = av_dict_get(format_opts, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
- av_log(NULL, AV_LOG_ERROR, "Option %s not found.\n", t->key);
- return AVERROR_OPTION_NOT_FOUND;
- }
- /* fill the streams in the format context */
- if ((err = avformat_find_stream_info(fmt_ctx, NULL)) < 0) {
- print_error(filename, err);
- return err;
- }
- av_dump_format(fmt_ctx, 0, filename, 0);
- /* bind a decoder to each input stream */
- for (i = 0; i < fmt_ctx->nb_streams; i++) {
- AVStream *stream = fmt_ctx->streams[i];
- AVCodec *codec;
- if (!(codec = avcodec_find_decoder(stream->codec->codec_id))) {
- fprintf(stderr, "Unsupported codec with id %d for input stream %d\n",
- stream->codec->codec_id, stream->index);
- } else if (avcodec_open2(stream->codec, codec, NULL) < 0) {
- fprintf(stderr, "Error while opening codec for input stream %d\n",
- stream->index);
- }
- }
- *fmt_ctx_ptr = fmt_ctx;
- return 0;
- }
- #define PRINT_CHAPTER(name) do { \
- if (do_show_ ## name) { \
- writer_print_chapter_header(wctx, #name); \
- show_ ## name (wctx, fmt_ctx); \
- writer_print_chapter_footer(wctx, #name); \
- } \
- } while (0)
- static int probe_file(const char *filename)
- {
- AVFormatContext *fmt_ctx;
- int ret;
- Writer *w;
- char *buf;
- char *w_name = NULL, *w_args = NULL;
- WriterContext *wctx;
- writer_register_all();
- if (!print_format)
- print_format = av_strdup("default");
- w_name = av_strtok(print_format, "=", &buf);
- w_args = buf;
- w = writer_get_by_name(w_name);
- if (!w) {
- av_log(NULL, AV_LOG_ERROR, "Unknown output format with name '%s'\n", w_name);
- ret = AVERROR(EINVAL);
- goto end;
- }
- if ((ret = writer_open(&wctx, w, w_args, NULL)) < 0)
- goto end;
- if ((ret = open_input_file(&fmt_ctx, filename)))
- goto end;
- writer_print_header(wctx);
- PRINT_CHAPTER(packets);
- PRINT_CHAPTER(streams);
- PRINT_CHAPTER(format);
- writer_print_footer(wctx);
- av_close_input_file(fmt_ctx);
- writer_close(&wctx);
- end:
- av_freep(&print_format);
- return ret;
- }
- static void show_usage(void)
- {
- printf("Simple multimedia streams analyzer\n");
- printf("usage: %s [OPTIONS] [INPUT_FILE]\n", program_name);
- printf("\n");
- }
- static int opt_format(const char *opt, const char *arg)
- {
- iformat = av_find_input_format(arg);
- if (!iformat) {
- fprintf(stderr, "Unknown input format: %s\n", arg);
- return AVERROR(EINVAL);
- }
- return 0;
- }
- static void opt_input_file(void *optctx, const char *arg)
- {
- if (input_filename) {
- fprintf(stderr, "Argument '%s' provided as input filename, but '%s' was already specified.\n",
- arg, input_filename);
- exit(1);
- }
- if (!strcmp(arg, "-"))
- arg = "pipe:";
- input_filename = arg;
- }
- static int opt_help(const char *opt, const char *arg)
- {
- av_log_set_callback(log_callback_help);
- show_usage();
- show_help_options(options, "Main options:\n", 0, 0);
- printf("\n");
- show_help_children(avformat_get_class(), AV_OPT_FLAG_DECODING_PARAM);
- return 0;
- }
- static int opt_pretty(const char *opt, const char *arg)
- {
- show_value_unit = 1;
- use_value_prefix = 1;
- use_byte_value_binary_prefix = 1;
- use_value_sexagesimal_format = 1;
- return 0;
- }
- static const OptionDef options[] = {
- #include "cmdutils_common_opts.h"
- { "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" },
- { "byte_binary_prefix", OPT_BOOL, {(void*)&use_byte_value_binary_prefix},
- "use binary prefixes for byte units" },
- { "sexagesimal", OPT_BOOL, {(void*)&use_value_sexagesimal_format},
- "use sexagesimal format HOURS:MM:SS.MICROSECONDS for time units" },
- { "pretty", 0, {(void*)&opt_pretty},
- "prettify the format of displayed values, make it more human readable" },
- { "print_format", OPT_STRING | HAS_ARG, {(void*)&print_format}, "set the output printing format (available formats are: default, json)", "format" },
- { "show_format", OPT_BOOL, {(void*)&do_show_format} , "show format/container info" },
- { "show_packets", OPT_BOOL, {(void*)&do_show_packets}, "show packets info" },
- { "show_streams", OPT_BOOL, {(void*)&do_show_streams}, "show streams info" },
- { "default", HAS_ARG | OPT_AUDIO | OPT_VIDEO | OPT_EXPERT, {(void*)opt_default}, "generic catch all option", "" },
- { "i", HAS_ARG, {(void *)opt_input_file}, "read specified file", "input_file"},
- { NULL, },
- };
- int main(int argc, char **argv)
- {
- int ret;
- parse_loglevel(argc, argv, options);
- av_register_all();
- init_opts();
- #if CONFIG_AVDEVICE
- avdevice_register_all();
- #endif
- show_banner();
- parse_options(NULL, argc, argv, options, opt_input_file);
- if (!input_filename) {
- show_usage();
- fprintf(stderr, "You have to specify one input file.\n");
- fprintf(stderr, "Use -h to get full help or, even better, run 'man %s'.\n", program_name);
- exit(1);
- }
- ret = probe_file(input_filename);
- return ret;
- }
|