• General ReviewsTRENDING
    Kicksta reviews

    Kicksta Reviews

    Lift My Social Review

    Lift My Social review

    Hypeplanner reviews

    Hypeplanner reviews

    SocialCaptain Reviews

    SocialCaptain Reviews

    How to customize dock icons and folders in macOS

    How to customize dock icons and folders in macOS

    Google Maps

    This is the full dark mode of Google Maps, the application prepares to activate it

    Access Dots

    Access Dots – Knowing if an app is filming you without your knowledge

    Fitocracy (iOS)

    Free smartphone apps to keep in shape

    Spotify Lite is finally available on Android

    Spotify Lite is finally available on Android

  • Company ReviewsLOVED
    Kicksta reviews

    Kicksta Reviews

    Lift My Social Review

    Lift My Social review

    Hypeplanner reviews

    Hypeplanner reviews

    SocialCaptain Reviews

    SocialCaptain Reviews

    How to customize dock icons and folders in macOS

    How to customize dock icons and folders in macOS

    Google Maps

    This is the full dark mode of Google Maps, the application prepares to activate it

    Access Dots

    Access Dots – Knowing if an app is filming you without your knowledge

    Fitocracy (iOS)

    Free smartphone apps to keep in shape

    Spotify Lite is finally available on Android

    Spotify Lite is finally available on Android

  • Service ReviewsTHE VERY BEST
    Kicksta reviews

    Kicksta Reviews

    Lift My Social Review

    Lift My Social review

    Hypeplanner reviews

    Hypeplanner reviews

    SocialCaptain Reviews

    SocialCaptain Reviews

    This free extension will help you read faster and more concentrated

    This free extension will help you read faster and more concentrated

    Google Maps

    This is the full dark mode of Google Maps, the application prepares to activate it

    Dashlane

    Dashlane – The simple, transparent and super convenient password manager

    Windows 10: the build 18956 is here, what's new on the horizon?

    Windows 10: the build 18956 is here, what’s new on the horizon?

    Windows 10

    Windows 10: tips to improve security

  • Popular ReviewsHOT!
Review of US
  • General ReviewsTRENDING
    Kicksta reviews

    Kicksta Reviews

    Lift My Social Review

    Lift My Social review

    Hypeplanner reviews

    Hypeplanner reviews

    SocialCaptain Reviews

    SocialCaptain Reviews

    How to customize dock icons and folders in macOS

    How to customize dock icons and folders in macOS

    Google Maps

    This is the full dark mode of Google Maps, the application prepares to activate it

    Access Dots

    Access Dots – Knowing if an app is filming you without your knowledge

    Fitocracy (iOS)

    Free smartphone apps to keep in shape

    Spotify Lite is finally available on Android

    Spotify Lite is finally available on Android

  • Company ReviewsLOVED
    Kicksta reviews

    Kicksta Reviews

    Lift My Social Review

    Lift My Social review

    Hypeplanner reviews

    Hypeplanner reviews

    SocialCaptain Reviews

    SocialCaptain Reviews

    How to customize dock icons and folders in macOS

    How to customize dock icons and folders in macOS

    Google Maps

    This is the full dark mode of Google Maps, the application prepares to activate it

    Access Dots

    Access Dots – Knowing if an app is filming you without your knowledge

    Fitocracy (iOS)

    Free smartphone apps to keep in shape

    Spotify Lite is finally available on Android

    Spotify Lite is finally available on Android

  • Service ReviewsTHE VERY BEST
    Kicksta reviews

    Kicksta Reviews

    Lift My Social Review

    Lift My Social review

    Hypeplanner reviews

    Hypeplanner reviews

    SocialCaptain Reviews

    SocialCaptain Reviews

    This free extension will help you read faster and more concentrated

    This free extension will help you read faster and more concentrated

    Google Maps

    This is the full dark mode of Google Maps, the application prepares to activate it

    Dashlane

    Dashlane – The simple, transparent and super convenient password manager

    Windows 10: the build 18956 is here, what's new on the horizon?

    Windows 10: the build 18956 is here, what’s new on the horizon?

    Windows 10

    Windows 10: tips to improve security

  • Popular ReviewsHOT!
No Result
View All Result
Review of US
No Result
View All Result
Home Blockchain

How to use the avconv -i command

in Blockchain, Gaming, Popular Reviews, Smartphones, Technology, Windows
How to use the avconv -i command
Share on FacebookShare on Twitter

As I told you in previous articles, since the Linux terminal we can do whatever we want, in the tutorial I will develop below, I will teach you how to use the avconv -i command.

This command will help us to get information about media files or transform them into other formats compatible.

How these tutorials are intended for novice users with Linux, We are not going to complicate life much and I will teach you the most useful and easy to assimilate concepts.

To install avconv, all you have to do is open a new terminal and type:

sudo apt-get install avconv

the comando for information on any media file is as follows:

avconv -i but the filename with its extension, for example, avconv -i video.mp4

With this command the terminal will return all the information related to the selected video.

Table of Contents

  • Converting video formats
  • Here the method of using the order is the same, the only thing that is a bit complicated as we have to tell you exactly how will the mp3 file be created, So to extract the audio to a video file we have to type the following: avconv -i video.avi -vn -ar 44100 -ac 2 -ab 192 -f mp3 audio.mp3 Where video.avi is the input video file and audio-mp3 is the file obtained. As you can see, we need to specify the Kbs of the mp3 file as well as frequency rate. Then let’s make one couple of hands-on exercises because see the process to follow. ReadAlso [Unity] Add desktop display icon in launcher April 20, 2021 Enable notification area for all applications in Ubuntu 11.04 April 20, 2021 Unity or Gnome Shell? | Ubunlog April 19, 2021 Try Ubuntu 11.04 Online | Ubunlog April 19, 2021 var jnews_module_1504_1_607ecd8f722aa = {"header_icon":"","first_title":"Read","second_title":"Also","url":"","header_type":"heading_3","header_background":"","header_secondary_background":"","header_text_color":"","header_line_color":"","header_accent_color":"","header_filter_category":"","header_filter_author":"","header_filter_tag":"","header_filter_text":"All","post_type":"post","content_type":"all","number_post":"4","post_offset":0,"unique_content":"disable","include_post":"","exclude_post":1504,"include_category":"89,53,106,97,58,76","exclude_category":"","include_author":"","include_tag":"","exclude_tag":"","sort_by":"latest","date_format":"default","date_format_custom":"Y\/m\/d","force_normal_image_load":"","pagination_mode":"nextprev","pagination_nextprev_showtext":"","pagination_number_post":"4","pagination_scroll_limit":0,"boxed":"","boxed_shadow":"","el_id":"","el_class":"","scheme":"","column_width":"auto","title_color":"","accent_color":"","alt_color":"","excerpt_color":"","css":"","paged":1,"column_class":"jeg_col_2o3","class":"jnews_block_21"}; Exercise 1: Transforming avi (mp4) to mpeg
  • Exercise 2: from video to mp3

Converting video formats

command avconv

To convert from an mpeg or avi video format, it’s as simple as typing the following line into the terminal:

avconv -i video.avi videotransformed.mpeg

Video.avi would be the source file and videotransformed the destination file or video already transformed.

This would be to transform it from avi to mpeg, we can also do it from mpeg to avi in ​​the same way:

avconv -i video.mpeg transformed video.avi

As you can see, transforming from video to video is the sea of ​​simple.

avconv -i

Here the method of using the order is the same, the only thing that is a bit complicated as we have to tell you exactly how will the mp3 file be created, So to extract the audio to a video file we have to type the following:

avconv -i video.avi -vn -ar 44100 -ac 2 -ab 192 -f mp3 audio.mp3

Where video.avi is the input video file and audio-mp3 is the file obtained.

As you can see, we need to specify the Kbs of the mp3 file as well as frequency rate.

Then let’s make one couple of hands-on exercises because see the process to follow.

ReadAlso

[Unity] Add desktop display icon in launcher

[Unity] Add desktop display icon in launcher

April 20, 2021
Enable notification area for all applications in Ubuntu 11.04

Enable notification area for all applications in Ubuntu 11.04

April 20, 2021
Unity or Gnome Shell?  |  Ubunlog

Unity or Gnome Shell? | Ubunlog

April 19, 2021
Try Ubuntu 11.04 Online |  Ubunlog

Try Ubuntu 11.04 Online | Ubunlog

April 19, 2021

Exercise 1: Transforming avi (mp4) to mpeg

We open a new terminal and type the path where we have the videos stored:

cd Videos

avconv command

then type the ls command to list the contents of the folder or directory:

ls

avconv command

Now as you can check in the screenshot above, we just need to use the command avconv -i, The name of the video to convert, in this case test.mp4 and the file in which we want to transform it, which in this case would be test.mpeg:

avconv -i test.mp4 test.mpeg with this command the terminal would start working on the conversion of the selected Viseo:

avconv command

avconv command

avconv command

Exercise 2: from video to mp3

At the terminal we will run the line:

avconv -i prova.mpeg -vn -ar 44100 -ac 2 -ab 192 -f mp3 audio.mp3

avconv -i

the order avconv -i it will serve us for a lot of things, although here I have taught you the most basic to defend.

More information – Entering the terminal: updating and installing applications

Previous Post

Linux Mint 13 Maya, one of the best Debian-based distros

Next Post

How to sync Ubuntu with the PS3 using mediatomb

Related Posts

[Unity] Add desktop display icon in launcher
Blockchain

[Unity] Add desktop display icon in launcher

April 20, 2021
Enable notification area for all applications in Ubuntu 11.04
Blockchain

Enable notification area for all applications in Ubuntu 11.04

April 20, 2021
Unity or Gnome Shell?  |  Ubunlog
Blockchain

Unity or Gnome Shell? | Ubunlog

April 19, 2021
Try Ubuntu 11.04 Online |  Ubunlog
Blockchain

Try Ubuntu 11.04 Online | Ubunlog

April 19, 2021
4 Conky configurations that you will surely like
Blockchain

4 Conky configurations that you will surely like

April 19, 2021
Get higher screen resolution, with NVIDIA drivers in Ubuntu
Blockchain

Get higher screen resolution, with NVIDIA drivers in Ubuntu

April 18, 2021
Blockchain

QInk, control ink level of our printer in Ubuntu

April 18, 2021
Next Post
How to sync Ubuntu with the PS3 using mediatomb

How to sync Ubuntu with the PS3 using mediatomb

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

You might also like

[Unity] Add desktop display icon in launcher

[Unity] Add desktop display icon in launcher

April 20, 2021
Enable notification area for all applications in Ubuntu 11.04

Enable notification area for all applications in Ubuntu 11.04

April 20, 2021
Unity or Gnome Shell?  |  Ubunlog

Unity or Gnome Shell? | Ubunlog

April 19, 2021
Try Ubuntu 11.04 Online |  Ubunlog

Try Ubuntu 11.04 Online | Ubunlog

April 19, 2021
4 Conky configurations that you will surely like

4 Conky configurations that you will surely like

April 19, 2021
Get higher screen resolution, with NVIDIA drivers in Ubuntu

Get higher screen resolution, with NVIDIA drivers in Ubuntu

April 18, 2021
  • Privacy Policy
  • Cookies Policy
  • Terms and Conditions
Call us: +1 949 662 3421
No Result
View All Result
  • General Reviews
  • Company Reviews
  • Service Reviews
  • Popular Reviews

© 2020 Review of U.S. - Truth matters Stay connetced.

Welcome Back!

Login to your account below

Forgotten Password?

Create New Account!

Fill the forms below to register

All fields are required. Log In

Retrieve your password

Please enter your username or email address to reset your password.

Log In