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