summaryrefslogtreecommitdiff
path: root/doc/avconv.texi
Commit message (Collapse)AuthorAge
* avconv: extend -r to work on any input stream.Anton Khirnov2012-05-29
| | | | This is done by automatically inserting a setpts filter.
* doc/avconv: expand documentation for the -s option.Anton Khirnov2012-05-29
|
* avconv: automatically insert asyncts when -async is used.Anton Khirnov2012-05-14
| | | | Deprecate -async.
* avconv: add support for audio filters.Anton Khirnov2012-05-14
| | | | | The FATE changes are all off-by-one due to different rounding being used (lrintf vs av_rescale_q).
* doc: Replace a stray reference to the old '-intra' flag.Alex Converse2012-05-08
|
* avconv: add support for complex filtergraphs.Anton Khirnov2012-04-15
|
* doc/avconv: remove entries for AVOptions.Anton Khirnov2012-03-20
| | | | Documentation for those will be generated automatically.
* avconv: add -cpuflags option for setting supported cpuflags.Anton Khirnov2012-03-06
| | | | Useful for testing.
* avconv: saner output video timebase.Anton Khirnov2012-02-26
| | | | | | | | | | 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
* docs: use -bsf:[vas] instead of -[vas]bsf.John Van Sickle2012-02-24
| | | | | | The latter syntax is now invalid. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* avconv: deprecate the -deinterlace optionAnton Khirnov2012-01-30
| | | | Its quality is horrible, yadif should always be used instead.
* avconv: add symbolic names for -vsync parametersAnton Khirnov2012-01-04
|
* avconv: support stream specifiers in -metadata and -map_metadataAlexandra Khirnova2011-12-16
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* Fix a bunch of common typos.Diego Biurrun2011-12-11
|
* Warn about avserver being broken.Anton Khirnov2011-12-10
| | | | Also remove mentions of it from other avtools' manuals.
* avconv: move copy_initial_nonkeyframes to the options context.Anton Khirnov2011-11-06
| | | | Also document it.
* doc/avconv: elaborate on basic functionality.Anton Khirnov2011-11-06
|
* doc/avconv: -sample_fmts, not -help sample_fmts prints the sample formatsAnton Khirnov2011-11-06
|
* avconv: add -dump_attachment option.Anton Khirnov2011-11-03
|
* avconv: add -attach option.Anton Khirnov2011-11-03
| | | | It allows attaching arbitrary files, e.g. fonts to Matroska files.
* presets: rename presets directoryJanne Grunau2011-10-19
|
* avconv: add presetsAlexandra Khirnova2011-10-17
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* avtools: add -v as alias for -loglevelMans Rullgard2011-10-09
| | | | | | This saves a bit of typing. Signed-off-by: Mans Rullgard <mans@mansr.com>
* doc/avconv: add forgotten output/per-stream info to -filterAnton Khirnov2011-10-09
|
* avconv: add -stats option to enable/disable printing encoding progressAnton Khirnov2011-10-09
|
* doc/avconv: expand documentation for some options.Anton Khirnov2011-09-27
|
* doc/avconv: document -timelimit.Anton Khirnov2011-09-27
|
* avconv: replace all fprintf() by av_log().Anton Khirnov2011-09-26
| | | | Deprecate -v option, now only -loglevel is enough.
* doc/avconv: fix typo.Anton Khirnov2011-09-12
|
* doc/avconv: document option types (input/output/per-stream/...)Anton Khirnov2011-09-11
| | | | Also trim some redundant stream specifiers descriptions.
* doc/avconv: remove two pointless paragraphs.Anton Khirnov2011-09-11
| | | | They are misleading and carry no useful information.
* doc/avconv: document that global options should be specified first.Anton Khirnov2011-09-11
|
* doc/avconv: remove entries for nonexistent optionsAnton Khirnov2011-09-11
|
* doc/avconv: remove documentation for removed 'timestamp' optionAnton Khirnov2011-09-11
|
* doc: cosmetics, rename fftools-common-opts to avtools-....Anton Khirnov2011-09-11
|
* avconv: extend -vf syntaxAnton Khirnov2011-09-11
| | | | | Add a per-stream -filter option, make -vf an alias for -filter:v. Move vfilters to the options context.
* avconv: remove -psnr option.Anton Khirnov2011-09-11
| | | | It's redundant -- -flags +psnr does the same thing.
* avconv: move frame pixel format to the options context.Anton Khirnov2011-09-11
| | | | | | Also remove redundant -pix_fmt list syntax, it's inconsistent and only makes the code more complicated. -pix_fmts should be enough for everyone.
* avconv: rewrite -qscale and -aq handling.Anton Khirnov2011-09-11
| | | | | | 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.
* avconv: move audio_sample_fmt to options context.Anton Khirnov2011-09-11
| | | | | Also document it and replace undocumented and inconsistent '-sample_fmt list' syntax with -sample_fmts.
* avconv: remove -[vas]lang options.Anton Khirnov2011-09-10
| | | | They are redundant, the same can be now accomplished with -metadata.
* avconv: move codec tags to options context.Anton Khirnov2011-09-10
| | | | Add a new -tag option, make -[vas]tag an alias for -tag:[vas]
* avconv: move bitstream filters to options context.Anton Khirnov2011-09-05
| | | | | Change syntax -- -[vas]bsf are replaced by -bsf:[stream specifier], the argument is now a comma-separated list of bitstream filters.
* avconv: move max_frames to options context.Anton Khirnov2011-09-05
| | | | | Add a -frames option that uses generic stream specifiers, change -[vad]frames into aliases to it.
* avconv: move metadata to options context.Anton Khirnov2011-09-05
| | | | It is now possible to set metadata on streams and chapters.
* avconv: remove stubs of crop* and pad* optionsAnton Khirnov2011-08-29
|
* doc/avconv: replace forgotten av by avconv.Anton Khirnov2011-08-19
| | | | Signed-off-by: Alex Converse <alex.converse@gmail.com>
* avconv: reset input_ts_offset between files.Anton Khirnov2011-08-19
| | | | Signed-off-by: Alex Converse <alex.converse@gmail.com>
* doc/avconv: extend -ss documentation.Anton Khirnov2011-08-19
| | | | Signed-off-by: Alex Converse <alex.converse@gmail.com>
* avconv: remove -intra option.Anton Khirnov2011-08-18
| | | | It's equivalent to -g 0.