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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-08-19avconv: deprecate -isync.Anton Khirnov
This option does not do anything. Also remove OPT_GRAB, since -isync is the last option using it.
2012-08-18avconv: make -shortest a per-output file option.Anton Khirnov
2012-08-08avconv: allow no input files.Anton Khirnov
It is now possible to use lavfi sources.
2012-06-04doc/avconv: add some details about the transcoding process.Anton Khirnov
2012-05-29avconv: extend -r to work on any input stream.Anton Khirnov
This is done by automatically inserting a setpts filter.
2012-05-29doc/avconv: expand documentation for the -s option.Anton Khirnov
2012-05-14avconv: automatically insert asyncts when -async is used.Anton Khirnov
Deprecate -async.
2012-05-14avconv: add support for audio filters.Anton Khirnov
The FATE changes are all off-by-one due to different rounding being used (lrintf vs av_rescale_q).
2012-05-08doc: Replace a stray reference to the old '-intra' flag.Alex Converse
2012-04-15avconv: add support for complex filtergraphs.Anton Khirnov
2012-03-20doc/avconv: remove entries for AVOptions.Anton Khirnov
Documentation for those will be generated automatically.
2012-03-06avconv: add -cpuflags option for setting supported cpuflags.Anton Khirnov
Useful for testing.
2012-02-26avconv: saner output video timebase.Anton Khirnov
r_frame_rate should in theory have something to do with input framerate, but in practice it is often made up from thin air by lavf. So unless we are targeting a constant output framerate, it's better to just use input stream timebase. Brings back dropped frames in nuv and cscd tests introduced in cd1ad18a6539bd7fc2dc4c1740fbcbd498c0c0a2
2012-02-25docs: use -bsf:[vas] instead of -[vas]bsf.John Van Sickle
The latter syntax is now invalid. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-01-31avconv: deprecate the -deinterlace optionAnton Khirnov
Its quality is horrible, yadif should always be used instead.
2012-01-05avconv: add symbolic names for -vsync parametersAnton Khirnov
2011-12-17avconv: support stream specifiers in -metadata and -map_metadataAlexandra Khirnova
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-12-11Fix a bunch of common typos.Diego Biurrun
2011-12-11Warn about avserver being broken.Anton Khirnov
Also remove mentions of it from other avtools' manuals.
2011-11-06avconv: move copy_initial_nonkeyframes to the options context.Anton Khirnov
Also document it.
2011-11-06doc/avconv: elaborate on basic functionality.Anton Khirnov
2011-11-06doc/avconv: -sample_fmts, not -help sample_fmts prints the sample formatsAnton Khirnov
2011-11-03avconv: add -dump_attachment option.Anton Khirnov
2011-11-03avconv: add -attach option.Anton Khirnov
It allows attaching arbitrary files, e.g. fonts to Matroska files.
2011-10-19presets: rename presets directoryJanne Grunau
2011-10-18avconv: add presetsAlexandra Khirnova
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-10-09avtools: add -v as alias for -loglevelMans Rullgard
This saves a bit of typing. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-10-09doc/avconv: add forgotten output/per-stream info to -filterAnton Khirnov
2011-10-09avconv: add -stats option to enable/disable printing encoding progressAnton Khirnov
2011-09-27doc/avconv: expand documentation for some options.Anton Khirnov
2011-09-27doc/avconv: document -timelimit.Anton Khirnov
2011-09-26avconv: replace all fprintf() by av_log().Anton Khirnov
Deprecate -v option, now only -loglevel is enough.
2011-09-12doc/avconv: fix typo.Anton Khirnov
2011-09-11doc/avconv: document option types (input/output/per-stream/...)Anton Khirnov
Also trim some redundant stream specifiers descriptions.
2011-09-11doc/avconv: remove two pointless paragraphs.Anton Khirnov
They are misleading and carry no useful information.
2011-09-11doc/avconv: document that global options should be specified first.Anton Khirnov
2011-09-11doc/avconv: remove entries for nonexistent optionsAnton Khirnov
2011-09-11doc/avconv: remove documentation for removed 'timestamp' optionAnton Khirnov
2011-09-11doc: cosmetics, rename fftools-common-opts to avtools-....Anton Khirnov
2011-09-11avconv: extend -vf syntaxAnton Khirnov
Add a per-stream -filter option, make -vf an alias for -filter:v. Move vfilters to the options context.
2011-09-11avconv: remove -psnr option.Anton Khirnov
It's redundant -- -flags +psnr does the same thing.
2011-09-11avconv: move frame pixel format to the options context.Anton Khirnov
Also remove redundant -pix_fmt list syntax, it's inconsistent and only makes the code more complicated. -pix_fmts should be enough for everyone.
2011-09-11avconv: rewrite -qscale and -aq handling.Anton Khirnov
Merge video_qscale (set by -qscale) and audio_qscale (set by -aq) into one 'qscale' field in the options context. Add a shortcut -q for -qscale and make -aq an alias for -q:a.
2011-09-11avconv: move audio_sample_fmt to options context.Anton Khirnov
Also document it and replace undocumented and inconsistent '-sample_fmt list' syntax with -sample_fmts.
2011-09-10avconv: remove -[vas]lang options.Anton Khirnov
They are redundant, the same can be now accomplished with -metadata.
2011-09-10avconv: move codec tags to options context.Anton Khirnov
Add a new -tag option, make -[vas]tag an alias for -tag:[vas]
2011-09-05avconv: move bitstream filters to options context.Anton Khirnov
Change syntax -- -[vas]bsf are replaced by -bsf:[stream specifier], the argument is now a comma-separated list of bitstream filters.
2011-09-05avconv: move max_frames to options context.Anton Khirnov
Add a -frames option that uses generic stream specifiers, change -[vad]frames into aliases to it.
2011-09-05avconv: move metadata to options context.Anton Khirnov
It is now possible to set metadata on streams and chapters.
2011-08-29avconv: remove stubs of crop* and pad* optionsAnton Khirnov