Software for converting mp4 files from 720p to 480p

9,051

Solution 1

the best software for your usage willl be Handbrake. It is a very advanced software with lots of options for you to choose.

enter image description here

As shown in image you can set any value of width or height of video, in your case height=480p


Installation

download deb from here. (easy way to go, but you wont get updates)

or go by PPA ( for Ubuntu 14.10 and previous versions; no ppa available for ubuntu 15.04) from here ( you need to select the Ubuntu version to get ppa). After this, run either of these:

for GUI software:

apt-get install handbrake-gtk

for command line tool:

apt-get install handbrake-cli

Solution 2

Certainly under Xenial Xerus you have access to a quite reasonable copy of FFmpeg so the resize can be handled easily with FFmpeg from the command line.

Definitions:

First some definitions to solve the endless confusion over terminology:

  1. 720p: Has a vertical resolution of 720 pixels, horizontal resolution usually of 1280px. Aspect ratio is most usually 16:9. The 'p' simply stands for progressive scan, i.e. non-interlaced.
  2. 480p: Has a vertical resolution of 480 pixels, horizontal resolution usually of 640 pixels. Aspect ratio is most usually 4:3. Again the 'p' stands for progressive scan, i.e. non-interlaced.

Required Software:

The great news is that FFmpeg will do the calculations for the horizontal resolution for you as well as maintaining the required aspect ratio, it is only required for you to give the desired vertical resolution. So first install FFmpeg:

sudo apt-get install ffmpeg libavcodec-extra 

The libavcodec-extra package will install some often-needed extra codecs for FFmpeg.

The 'Resize' Syntax:

The basic syntax to resize your video is as follows:

ffmpeg -i input -vf scale=-1:480 output

The scale filter uses width:height and you can see in my example that I have specified a height (vertical resolution) of 480 while the '-1' tells FFmpeg to resize the width (horizontal resolution) as necessary to maintain the existing aspect ratio. Pretty cool :).

A Full Example:

Bear in mind that you will need to also re-encode when you are resizing and your selected settings will depend very much on your source material. To give an example:

  1. Resize the video stream to 480p and export as an H.264 stream
  2. Copy the audio stream

For this use the following command line:

ffmpeg -i input.mp4 \
-vf scale=-2:480 -c:v libx264 -preset slow -crf 22 \
-c:a copy output.mp4

Note that I have specified -2:480 for width and height, this allows FFmpeg to calculate a number for width that is divisible by 2 which will give more efficient encoding.

There is a great deal more to scaling with FFmpeg, I have included a reference at the base if you wish to dig a little deeper...

References:

Solution 3

Mobile Media Converter by Miksoft can be an easier way to do transcoding tasks.

enter image description here

In the above screenshot we can see a queue of videos (one in this example) to be processed with the same customised properties which includes transcoding for one or more of the next:

For Audio

  1. Audio Bitrate
  2. Audio Frequency
  3. Audio Channels
  4. Audio Codec

For Video

  1. Video Bitrate
  2. Video FPS
  3. Video Size
  4. Video Codec

Of course you will be in need to add (on your own) the proper codecs for which you wish transcoding your video files so that they will become available in the "Video Codec" Drop Down.

But please have in consideration that the most of the times it is not just about changing the video dimensions but the bitrate itself. I would suggest you to do some transcoding with small portions of video (just for testing) and watch how the results behave on your computer. Perhaps (and just perhaps) you can have a 720p video file with balanced compression which give you enough quality and also light enough for your computer to play it.

Please have a look at this answer in which I explain something related.

How can I maximum compress video files?

Good luck!

Share:
9,051

Related videos on Youtube

Blessy Chio
Author by

Blessy Chio

Updated on September 18, 2022

Comments

  • Blessy Chio
    Blessy Chio over 1 year

    I have some videos I want to convert into 480p since my netbook can't handle 720p videos and higher. Do you guys know any free software that can do so? Thanks!

    • Panther
      Panther almost 9 years
      ffmpeg, handbrake, openshot, you have a long list of options. ffmpeg has a bit of a learning curve, but more options.
    • psusi
      psusi almost 9 years
      This question is NOT opinion based, do not vote to close for that reason.
  • JoKeR
    JoKeR almost 9 years
    you can also include installation steps in your answer ;)
  • Edward Torvalds
    Edward Torvalds almost 9 years
    @BlessyChio maybe not, try