Convert mp4 to mpeg4

Convert MP4 to MPEG4

Distinguish MP4 containers from MPEG-4 Visual and convert only when a target requires it.

Convert MP4 files online

We don’t have a dedicated online converter for MP4 to MPEG4 yet, but you can convert MP4 files online to these and more formats:

How to convert mp4 to mpeg4 file

  • Video

A legacy player, editor, or upload system may request “MPEG4” although the source already ends in .mp4. The requirement can mean a filename extension, an MP4 container, or the older MPEG-4 Visual video codec; those are different changes.

Ask the receiving system which container, video codec, audio codec, resolution, and extension it accepts before converting. A needless re-encode reduces quality and can produce a less compatible file.

What MP4 is

MP4 is a media container standardized as MPEG-4 Part 14. It can contain H.264/AVC, H.265/HEVC, AV1, or MPEG-4 Visual video; AAC, MP3, or other audio; subtitles, chapters, and metadata.

Phones, cameras, screen-recording software, video editors, browsers, and streaming services commonly create or accept MP4 files. The .mp4 extension does not identify the codec inside the file: two MP4 files can contain completely different video and audio streams.

What “MPEG4” can mean

“MPEG4” is often used loosely for an MP4 file, but it can specifically mean MPEG-4 Visual, also called MPEG-4 Part 2, MP4V, or sometimes MPEG-4 ASP. This older video codec was common in legacy DVD players, photo frames, cameras, security systems, and editing applications.

MPEG-4 Visual's main advantage is compatibility with equipment designed for it. It is less compression-efficient than H.264 or H.265, so it usually needs a larger file for similar quality. A system that says “MPEG-4” may still accept H.264 video in an MP4 container, while another may reject it and require MPEG-4 Visual specifically.

Check the existing file first

Inspect the source in MediaInfo, or open it in VLC and select Tools → Codec Information. Check the video codec and audio codec, not just the extension.

If the video codec is already MPEG-4 Visual and the target accepts its audio, no re-encoding is necessary. If the target only requires an MP4 container, copy the streams into a fresh MP4 file with FFmpeg:

ffmpeg -i input.mp4 -c copy output.mp4

This remuxes the file without quality loss. If a system explicitly requires the nonstandard-looking .mpeg4 extension, create the same MP4 container with that filename:

ffmpeg -i input.mp4 -c copy -f mp4 output.mpeg4

Changing input.mp4 to input.mpeg4 in a file manager only changes the filename; it does not convert the container or codec. Use .mp4 unless the target documentation explicitly demands another extension, because many applications recognize only the standard MP4 extension.

Encode MPEG-4 Visual with FFmpeg

FFmpeg is the most direct desktop option when the target requires MPEG-4 Visual. Install FFmpeg, open a terminal in the source folder, and run:

ffmpeg -i input.mp4 -c:v mpeg4 -q:v 3 -pix_fmt yuv420p -c:a aac -b:a 128k -movflags +faststart output.mp4

-c:v mpeg4 selects FFmpeg's MPEG-4 Visual encoder. -q:v 3 sets variable visual quality; lower values such as 2 produce higher quality and larger files. yuv420p is the most widely accepted pixel format for older devices, and AAC audio is broadly compatible in MP4.

For a device limited to 640×480, retain the original aspect ratio and pad the result rather than stretching it:

ffmpeg -i input.mp4 -vf "scale=640:480:force_original_aspect_ratio=decrease,pad=640:480:(ow-iw)/2:(oh-ih)/2,setsar=1" -c:v mpeg4 -q:v 3 -pix_fmt yuv420p -c:a aac -b:a 128k output.mp4

Use the device's documented maximum dimensions, frame rate, and audio format instead of assuming 640×480 or AAC. Some older devices require MP3 audio, a 4:3 frame, a low frame rate, or a particular MPEG-4 Visual profile; DivX and Xvid requirements may need the exact encoder and settings named by the manufacturer.

Graphical and online options

HandBrake is suitable when the actual requirement is an MP4 file with H.264, not MPEG-4 Visual. Open the source, select Summary → Format → MP4, select Video → Video Encoder → H.264 (x264), then select Start Encode. Current HandBrake releases do not generally provide MPEG-4 Visual as an output encoder.

CloudConvert and Zamzar are reasonable browser-based options for occasional small, non-confidential files. Confirm that the service can select MPEG-4 Visual or MP4V when that codec is required: an output described only as “MP4” commonly contains H.264 instead. Do not upload private recordings, client footage, or regulated material to a third-party converter.

Quality and compatibility limits

Converting H.264, H.265, or AV1 to MPEG-4 Visual is lossy. Keep the original, test the converted file on the actual target device, and lower -q:v if blocking, ringing, or motion artifacts appear.

A successful conversion does not guarantee playback. The target may reject high resolutions, unsupported audio, subtitles, variable frame rates, or files above a size limit even when the video codec is MPEG-4 Visual.

Additional formats for
mp4 file conversion

Convert to mpeg4 from
other formats

Share on social media: