How to convert a mp4 video to MPEG-1 Layer 1?

19,431

Solution 1

ffmpeg Install ffmpeg

can do this easily from command line

ffmpeg -i input.mp4 output.mpeg

There are felt one million additional options to change the output format.

Solution 2

ffmpeg has since been deprecated. Use avconv instead. Same invocation:

avconv -i input.mp4 output.mpeg

Solution 3

ffmpeg's .mpeg conversion gives you MPEG-1 Layer 2 audio.

ffmpeg doesn't have a layer 1 encoder.

Solution 4

Take a look at this answer: How can I maximum compress video files? Which may be helpful for understanding the transcoding process.

There are several GUI's that are able to perform this task, which includes but not limits to:

Mobile Media Converter

enter image description here

WinFF

enter image description here

And many more.

My favorite is the Mobile Media Converter but I have used the WinFF, Transmaggedon, Arista Transcoder, and many more in the past with excellent results.

Good luck!

Share:
19,431

Related videos on Youtube

The Student
Author by

The Student

My main interests: Object Oriented Programming (mainly Java, Python and C++) Mobile development (Android and iOS) Artificial Neural Networks Philosophy

Updated on September 18, 2022

Comments

  • The Student
    The Student over 1 year

    I need to convert a video to MPEG-1 Layer 1 to make some tests with the software I'm developing. How can I do this conversion?

  • sup
    sup almost 7 years
    Not true anymore, ffmpeg is still the way to go now.