3

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?

The Student
  • 11,926

4 Answers4

4

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.

Takkat
  • 142,284
2

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

avconv -i input.mp4 output.mpeg

tbc0
  • 163
  • 6
1

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

ffmpeg doesn't have a layer 1 encoder.

Tymcode
  • 11
1

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!