Convert to flv linux

8 Best Free Linux Video Converters

Given there are many different video formats available, a free video converter is an extremely useful piece of software. The best video converters make the conversion process simple, and support a wide number of different codecs and formats.

Video conversion is a narrower term for transcoding. Transcoding is the process of the conversion of digital data (typically video and audio files) from one format to another. It involves extracting tracks from a digital media file, decoding the tracks, filtering, encoding, and then multiplexing the new tracks into a new container. Transcoding will reduce the quality of the tracks unless lossless formats are used.

There are many reasons to transcode media files. Some popular examples include the ability to convert files so that they are supported on a target device, and at the same time removing commercials, and reducing the file size. While transcoding is a very CPU intensive task, modern processors with a high number of cores offer impressive conversion rates provided the transcoding software supports multi-core architectures.

Please be aware that if you’re converting videos from YouTube, that’s against Google’s terms of service. And it’s also likely to be illegal as it constitutes a breach of copyright unless the copyright holder has given explicit consent, or the video is published under an open source license.

Here’s our rating for the best free video converters. They are each published under an open source license. While VLC and mpv are primarily multimedia players they also offer conversion functionality.

Now, let’s explore the 8 video converters at hand. For each title we have compiled its own portal page, a full description with an in-depth analysis of its features, a screenshot of the software in action, together with links to relevant resources.

Best Free Video Converters
HandBrake Multithreaded cross-platform media transcoding application
avconv Part of libav-tools; fork of FFmpeg
FFmpeg Multimedia player, server and encoder
MEncoder MEncoder is included in MPlayer
Ciano Easy way to convert your multimedia files to the most popular formats
mpv Cross-platform media player with video encoding support
VLC While primarily a video player, VLC also converts multimedia to different formats
transcode Utility to encode raw video/audio streams

There’s a few free open source video converters that have been around for a while we recommend you avoid. We used to like Transmageddon and RetroCode, but both are abandoned. And viDrop appears dead in the water too.

Источник

19 команд ffmpeg для любых нужд

От переводчика:
Многие знают, что ffmpeg — это сила, но не все знают, какая именно. Он многогранен и безграничен, а его man объёмен и местами малопонятен, лишь немногие постигли дао профессиональной работы с ним. И тем не менее, этот инструмент может быть полезен почти всем, кто хоть иногда работает с видео и звуком, даже на бытовом уровне. О некоторых полезных консольных командах ffmpeg и пойдёт речь в статье. В некоторых местах я взял на себя смелость вставить ссылки на поясняющие статьи.

ffmpeg — это кроссплатформенная open-source библиотека для обработки видео- и аудиофайлов. Я собрал 19 полезных и удивительных команд, покрывающих почти все нужды: конвертация видео, извлечение звуковой дорожки, конвертирование для iPod или PSP, и многое другое.

1. Получение информации о видеофайле
2. Превратить набор картинок в видео

Эта команда преобразует все картинки из текущей директории (названные image1.jpg, image2.jpg и т.д.) в видеофайл video.mpg

(примечание переводчика: мне больше нравится такой формат:

здесь задаётся frame rate (12) для видео, формат «image_%010d.png» означает, что картинки будут искаться в виде image_0000000001.png, image_0000000002.png и тд, то есть, в формате printf)

3. Порезать видео на картинки

Эта команда создаст файлы image1.jpg, image2.jpg и т.д., поддерживаются так же форматы PGM, PPM, PAM, PGMYUV, JPEG, GIF, PNG, TIFF, SGI.

Источник

15 Useful ‘FFmpeg’ Commands for Video, Audio and Image Conversion in Linux – Part 2

In this article we are going to look at some options and examples of how you can use FFmpeg multimedia framework to perform various conversion procedures on audio and video files.

15 FFMPEG Command Examples in Linux

For more details about FFmpeg and steps to install it in different Linux distros, read the article from the link below:

Useful FFmpeg Commands

FFmpeg utility supports almost all major audio and video formats, if you want to check the ffmpeg supported available formats you can use ./ffmpeg -formats command to list all supported formats. If you are new to this tool, here are some handy commands that will give you a better idea about the capabilities of this powerful tool.

1. Get Video File Information

To get information about a file (say video.mp4), run the following command. Remember you have to specify an ouput file, but in this case we only want to get some information about the input file.

Get Video Information

Note: The -hide_banner option is used to hide a copyright notice shown my ffmpeg, such as build options and library versions. This option can be used to suppress printing this information.

For example, if you run the above command without adding -hide_banner option it will print the all FFmpeg tools copyright information as shown.

Hide FFmpeg Version Information

2. Split a video into images

To turn a video to number of images, run the command below. The command generates the files named image1.jpg, image2.jpg and so on…

Split Video into Images

After successful execution of above command you can verify that the video turn into multiple images using following ls command.

3. Convert images into a video

Turn number of images to a video sequence, use the following command. This command will transform all the images from the current directory (named image1.jpg, image2.jpg, etc…) to a video file named imagestovideo.mpg.

There are many other image formats (such as jpeg, png, jpg, etc) you can use.

Convert Images to Video

4. Convert a video into mp3 format

To convert an .flv format video file to Mp3 format, run the following command.

Convert Video to Audio

Description about the options used in above command:

  1. vn: helps to disable video recording during the conversion.
  2. ar: helps you set audio sampling rate in Hz.
  3. ab: set the audio bitrate.
  4. ac: to set the number of audio channels.
  5. -f: format.

5. Covert flv video file to mpg format

To convert a .flv video file to .mpg, use the following command.

Convert Avi to MPG Video Format

6. Convert video into animated gif

To convert a .flv video file to animated, uncompressed gif file, use the command below.

Covert Video to Animated Gif

7. Convert mpg video file to flv

To convert a .mpg file to .flv format, use the following command.

Convert Mpg to Flv Video Format

8. Convert avi video file to mpeg

To convert a .avi file to mpeg for dvd players, run the command below:

Explanation about the options used in above command.

  1. target pal-dvd : Output format
  2. ps 2000000000 maximum size for the output file, in bits (here, 2 Gb).
  3. aspect 16:9 : Widescreen.

Convert Avi to Mpeg Video Format

9. Convert a video to CD or DVD format

To create a video CD or DVD, FFmpeg makes it simple by letting you specify a target type and the format options required automatically.

You can set a target type as follows: add -target type; type can of the following be vcd, svcd, dvd, dv, pal-vcd or ntsc-svcd on the command line.

To create a VCD, you can run the following command:

Convert Video to DVD Format

10. Extract audio from video file

To extract sound from a video file, and save it as Mp3 file, use the following command:

Explanation about the options used in above command.

  1. Source video : video.avi
  2. Audio bitrate : 192kb/s
  3. output format : mp3
  4. Generated sound : audio3.mp3

Extract Audio from Video

11. Mix a video and audio together

You can also mix a video with a sound file as follows:

Mix Video and Audio

12. Increase/Reduce Video Playback Speed

To increase video play back speed, run this command. The -vf option sets the video filters that helps to adjust the speed.

Increase Video Playback Speed

You can also reduce video speed as follows:

Reduce Video Playback Speed

13. Compare/Test Video and Audio Quality

To compare videos and audios after converting you can use the commands below. This helps you to test videos and audio quality.

Test Video Quality

To test audio quality simply use the name of the audio file as follows:

Test Audio Quality

You can listen to them while they play and compare the qualities from the sound.

14. Add Photo or Banner to Audio

You can add a cover poster or image to an audio file using the following command, this comes very useful for uploading MP3s to YouTube.

Add Image to Audio

15. Add subtitles to a Movie

If you have a separate subtitle file called subtitle.srt, you can use following command to add subtitle to a movie file:

Summary

That is all for now but these are just few examples of using FFmpeg, you can find more options for what you wish to accomplish. Remember to post a comment to provide information about how to use FFmpeg or if you have encountered errors while using it.

If You Appreciate What We Do Here On TecMint, You Should Consider:

TecMint is the fastest growing and most trusted community site for any kind of Linux Articles, Guides and Books on the web. Millions of people visit TecMint! to search or browse the thousands of published articles available FREELY to all.

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

We are thankful for your never ending support.

Источник

5 лучших приложений для конвертирования аудио и видеофайлов в Linux

В этой статье я собрал лучшие на сегодняшний день медиаконвертеры Linux, охватывающие широкий спектр форматов файлов.

1. soundKonverter

soundKonverter — один из лучших конвертеров аудио в Linux. Может конвертировать большинство аудиофайлов, включая MP3, FLAC, WMA, AAC, M4A и множество других. Несмотря на название, приложение не ограничивается аудиоформатами. Если вы установите плагины, то сможете конвертировать MKV, MPEG, MOV и MP4 видео файлы.

Настройки позволяют задавать битрейт аудиофайла, использовать ли плагины Lame или FFmpeg, а также выходные каталоги. Переключение между типами выходных данных также позволяет задавать такие параметры, как степень сжатия файлов FLAC и качество вывода для форматов Ogg Vorbis.

2. HandBrake

HandBrake — это хорошо зарекомендовавшее себя решение на рынке медиаконвертеров. Это приложение, вероятно, больше всего известно как конвертер видео для Windows, но также оно доступно и для Linux В отличие от soundKonverter, HandBrake фокусируется исключительно на конвертации видео. Он также прост в использовании, предлагая встроенные предустановки для определенных устройств.

Эти предустановки оптимизируют конвертацию видео для нужного устройства, будь то смартфон, ноутбук или телевизор. Существует также ряд опций, позволяющих добавлять маркеры глав, субтитры и фильтры видео. Чтобы помочь в организации, Handbrake позволяет добавлять теги к выходному файлу. Вы можете обрезать видео и добавить масштабирование.

HandBrake доступен для Linux, macOS и Windows, что делает его одним из лучших мультиплатформенных конвертеров видео. Это удобно, если вы используете несколько операционных систем, и вам бы хотелось единообразия в каждой из них. Если у вас есть физические DVD-диски, которые вы хотите копировать в вашу электронную библиотеку, HandBrake может помочь и в этом случае.

3. SoundConverter

Не стоит путать с soundKonverter, SoundConverter — это еще один отличный аудиоконвертер для Linux. Приложение предназначено для GNOME Desktop и поддерживает вывод в аудиоформаты Ogg Vorbis, FLAC, MP3 и WAV.

4. FFmpeg

FFmpeg — один из лучших MP3 конвертеров. Кросс-платформенное программное обеспечение доступно для Linux, macOS и Windows.

5. K3b

K3b можно использовать для создания аудиодисков, а также для резервного копирования.

Спасибо, что читаете! Подписывайтесь на мои каналы в Telegram, Яндекс.Мессенджере и Яндекс.Дзен. Только там последние обновления блога и новости мира информационных технологий.

Респект за пост! Спасибо за работу!

Хотите больше постов? Узнавать новости технологий? Читать обзоры на гаджеты? Для всего этого, а также для продвижения сайта, покупки нового дизайна и оплаты хостинга, мне необходима помощь от вас, преданные и благодарные читатели. Подробнее о донатах читайте на специальной странице.

Заранее спасибо! Все собранные средства будут пущены на развитие сайта. Поддержка проекта является подарком владельцу сайта.

Источник

Читайте также:  Как сделать скриншот рабочего стола windows 10 ноутбук
Оцените статью