avconv icon
avconv icon

avconv

 2 likes

avconv is a very fast video and audio converter that can also grab from a live audio/video source. It can also convert between arbitrary sample rates and resize video on the fly with a high quality polyphase filter.

License model

  • FreeOpen Source

Country of Origin

  • FR flagFrance
  • European Union flagEU

Platforms

  • Linux
Discontinued

Last version is from 2018. The author said the project is dead and users should FFmpeg instead: https://lists.libav.org/pipermail/libav-devel/2020-April/086589.html

  No rating
2likes
0comments
0news articles

Features

Suggest and vote on features
  1.  Audio Conversion
  2.  Support for subtitles
  3.  Video Converter
  4.  Screen Recording
  5.  Built-in editor

 Tags

  • media-converter

avconv News & Activities

Highlights All activities

Recent activities

Show all activities

avconv information

  • Developed by

    FR flaglibav
  • Licensing

    Open Source and Free product.
  • Alternatives

    81 alternatives listed
  • Supported Languages

    • English

Our users have written 0 comments and reviews about avconv, and it has gotten 2 likes

avconv was added to AlternativeTo by wisd0m on Jul 14, 2014 and this page was last updated Sep 9, 2022.
No comments or reviews, maybe you want to be first?
Post comment/review

What is avconv?

avconv is a very fast video and audio converter that can also grab from a live audio/video source. It can also convert between arbitrary sample rates and resize video on the fly with a high quality polyphase filter.

avconv reads from an arbitrary number of input "files" (which can be regular files, pipes, network streams, grabbing devices, etc.), specified by the -i option, and writes to an arbitrary number of output "files", which are specified by a plain output filename. Anything found on the command line which cannot be interpreted as an option is considered to be an output filename.

Each input or output file can in principle contain any number of streams of different types (video/audio/subtitle/attachment/data). Allowed number and/or types of streams can be limited by the container format. Selecting, which streams from which inputs go into output, is done either automatically or with the -map option (see the Stream selection chapter).

To refer to input files in options, you must use their indices (0-based). E.g. the first input file is 0, the second is 1 etc. Similarly, streams within a file are referred to by their indices. E.g. 2:3 refers to the fourth stream in the third input file. See also the Stream specifiers chapter.

As a general rule, options are applied to the next specified file. Therefore, order is important, and you can have the same option on the command line multiple times. Each occurrence is then applied to the next input or output file. Exceptions from this rule are the global options (e.g. verbosity level), which should be specified first.