Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-06-16ffprobe: use new avformat_open_* API.Anton Khirnov
2011-06-08Remove all uses of now deprecated metadata functions.Anton Khirnov
2011-05-28cmdutils: remove OPT_FUNC2Stefano Sabatini
Make ff* tools only accept opt_* functions taking two arguments. The distinction between functions with one and two arguments is quite pointless. Simplify parse_options() code. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-05-12ffprobe: tweak error message in open_input_file()Stefano Sabatini
Replace "codec (id=%d)" with "codec with id %d", slightly more readable. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-23Lowercase all ff* program names.Diego Biurrun
2011-04-19lavc: remove the FF_API_SET_STRING_OLD cruft.Anton Khirnov
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-17lavf: add av_ prefix to dump_format()Anton Khirnov
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-10-16Make ffprobe print stream language only once, also remove usage of theAnton Khirnov
deprecated field AVStream.language. Patch by Anton Khirnov %name%@%surname% dot net. Originally committed as revision 25507 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-16ffmpeg.c/ffprobe.c: remove all uses of av_metadata_conv()Anton Khirnov
patch by Anton Khirnov anton _at_ khirnov _dot_ net Originally committed as revision 25503 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-30User application side of Codec specific parameters.Michael Niedermayer
Originally committed as revision 25266 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-25Make ffprobe able to set AVFormatContext options.Stefano Sabatini
Originally committed as revision 25187 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-29Implement ffprobe -show_packets.Stefano Sabatini
Originally committed as revision 24577 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-02Implement av_get_codec_tag_string() and use it in ffprobe.Stefano Sabatini
Originally committed as revision 23421 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-28Reindent after the last commit.Stefano Sabatini
Originally committed as revision 22984 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-28Make ffprobe show sample_aspect_ratio and display_aspect_ratio only ifStefano Sabatini
sample_aspect_ratio is known. Avoid to show bogus values, which may confuse both the human and the machine reader. Based on a patch by Robert Krüger $(echo lsvfhfs@tjhobm7.ef | tr "b-za" "a-z"). Originally committed as revision 22983 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-26Make ffprobe show stream->nb_frames if that info is known.Robert Krüger
Patch by Robert Krüger $(echo kru3g3r@signal7.d3 | sed -e 's/3/e/g'). Originally committed as revision 22964 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-14Fix computation of the display aspect ratio.Robert Krüger
Previously ffprobe was wrongly outputting the sample aspect ratio as display aspect ratio. Patch by Robert Krüger $(echo k-r-u-e-g-e-r@s-i-g-n-a-l-7.d-e | sed s/-//g). Originally committed as revision 22880 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-28Implement -convert_tags option, which converts showed tag names to theStefano Sabatini
FFmpeg generic tag names. Originally committed as revision 22708 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-2710l: Initialize tag to NULL in show_stream, fix metadata showing inStefano Sabatini
streams. Originally committed as revision 22698 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Remove hacks not required since HAVE_AV_CONFIG_H was unset for the appsMåns Rullgård
Originally committed as revision 22295 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Add support to input devices in ffprobe.Stefano Sabatini
See the thread: Subject: [FFmpeg-devel] [PATCH] Add support to input device to ffprobe Date: Sun, 21 Feb 2010 14:57:44 +0100 Originally committed as revision 22231 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-05Cosmetics: use consistent spacing in the ffprobe.c options table.Stefano Sabatini
Originally committed as revision 22212 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-02Clarify the error message issued by ffprobe in case of more than oneStefano Sabatini
file provided as input. Originally committed as revision 22138 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-2510l: add prefix "TAG:" to the metadata tags key showed for each stream.Stefano Sabatini
This is consistent with the metadata displaying in show_format() and with the documentation. Originally committed as revision 22046 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-25Cosmetics: replace "filename" to "arg" for the name of the argument ofStefano Sabatini
opt_input_file(). More consistent and more clear, as "filename" can be easily confused with the global "input_filename". Originally committed as revision 22045 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-24FFprobe: take only one input file.Ramiro Polla
Originally committed as revision 22014 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-21Add support to an option -f which forces the format to use for openingStefano Sabatini
the probed multimedia resource. Originally committed as revision 21944 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-21Avoid using log2, it is not available everywhere.Reimar Döffinger
Should fix compilation on FreeBSD. Originally committed as revision 21942 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-21Add FFprobe tool.Stefano Sabatini
This is a simplified / cleaned-up version of the SourceForge program: http://sourceforge.net/projects/ffprobe/ Syntax / features may be different, in particular the options -show_packets and -show_frames are not yet supported in this version. Originally committed as revision 21936 to svn://svn.ffmpeg.org/ffmpeg/trunk