How to convert a video format with ffmpeg (mp4 to avi, move to mp4, ..) ?

Card Puncher Data Processing

About

This article shows you how to convert a video from one format to an another with ffmpeg

Interface

Command line

Once, you have installed it, you can run the following command.

from mp4 to avi

The command is pretty simple

ffmpeg -i input.mp4 output.avi

from mov to mp4

The command may also add more information such as the codec

ffmpeg -i {in-video}.mov -vcodec h264 -acodec aac {out-video}.mp4

Web

See How to use ffmpeg in a web page ?





Discover More
Card Puncher Data Processing
Video / Motion / Animation / Film

A video is : a sequence of image called frame shown at the frequency called frequence rate (per second) compressed to follow a bitrate. Movies at first were called moving pictures. A good example...
Card Puncher Data Processing
What is ffmpeg ?

What is ffmpeg ? ffmpeg is a command line to record, convert and stream audio and video. This is the simple tool to manipulate and convert any video. * * * * * * FFmpeg...



Share this page:
Follow us:
Task Runner