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?
Asked
Active
Viewed 2.1k times
4 Answers
4
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.
2
ffmpeg
has since been deprecated. Use avconv
instead. Same invocation:
avconv -i input.mp4 output.mpeg

tbc0
- 163
- 6
-
1Not true anymore, ffmpeg is still the way to go now. – sup Jun 04 '17 at 08:13
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
WinFF
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!

Geppettvs D'Constanzo
- 19,552