d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Computers & IT > Mp4 To Mpeg Converte Software ???
Add Reply New Topic New Poll
Member
Posts: 1,147
Joined: Feb 17 2021
Gold: 312.00
Aug 27 2023 07:59am
Hi guys,

im looking for a save, free and good software to converte MP4 to MPEG.

Lmk if you have some good links.

thx mates
Member
Posts: 15,801
Joined: Jul 9 2021
Gold: 291.00
Aug 27 2023 05:37pm
can use ffmpeg for that

Code
ffmpeg -i input.mp4 -c:v mpeg2video -b:v 8000k -c:a mp2 output.mpg


Quote
1. ffmpeg: This is the command to run the ffmpeg tool.
2. -i input.mp4: Specifies the input file, in this case, "input.mp4".
3. -c:v mpeg2video: Specifies the video codec to use for the output file, which is MPEG-2 video codec.
4. -b:v 8000k: Sets the target video bitrate to 8000 kbps. You can adjust this value based on your preferences.
5. -c:a mp2: Specifies the audio codec to use for the output file, which is MPEG-1 Layer II audio codec (MP2).
6. output.mpg: Specifies the output file name, in this case, "output.mpg".


run ffmpeg in the same directory as where your mp4 file is at

This post was edited by ChocolateCoveredGummyBears on Aug 27 2023 05:39pm
Member
Posts: 22,458
Joined: Dec 6 2008
Gold: 14.00
Trader: Trusted
Aug 29 2023 09:22am
handbrake
Jr Admin
Posts: 18,917
Joined: Aug 11 2011
Gold: 25,841.07
Trader: Mediator
Aug 31 2023 03:11am
Shotcut is pretty amazing if you want a GUI for your ffmpeg. Been using it quite a bit for .avi and .mp4 conversion to .webp with custom compression (but it also supports the formats you require). It's also free and open source.
Member
Posts: 1,147
Joined: Feb 17 2021
Gold: 312.00
Sep 4 2023 11:53pm
thanks for your help mates <3
Go Back To Computers & IT Topic List
Add Reply New Topic New Poll