logo elektroda
logo elektroda
X
logo elektroda
Dostępna jest polska wersja

Czy wolisz polską wersję strony elektroda?

Nie, dziękuję Przekieruj mnie tam

Convert ISO to MP4 with HandBrake, VLC, MakeMKV and FFmpeg

User question

how to convert ISO to MP4

Artificial Intelligence Response

Direct answer to the question

To convert an ISO file to MP4, you need to extract the video content from the ISO disc image and encode it into an MP4 video file. The easiest free tool is HandBrake.

Recommended method:

  1. Install HandBrake.
  2. Open HandBrake.
  3. Click Open Source.
  4. Select your .iso file.
  5. Choose the correct Title — usually the longest one is the main movie.
  6. Set Format to MP4.
  7. Choose a preset such as Fast 1080p30 or HQ 1080p30.
  8. Choose the output filename and folder.
  9. Click Start Encode.

This will convert the video inside the ISO into an .mp4 file.


Detailed problem analysis

An ISO file is not itself a normal video file. It is a disc image, usually copied from a DVD, Blu-ray, or other optical disc. Inside it may be:

  • DVD video files such as VIDEO_TS, .VOB, .IFO, .BUP
  • Blu-ray folders such as BDMV, .m2ts
  • Menus, extras, subtitles, multiple audio tracks
  • Possibly copy protection, depending on the source

An MP4 file, by contrast, is a multimedia container that usually contains:

  • Video encoded as H.264/AVC or H.265/HEVC
  • Audio encoded as AAC, AC-3, or similar
  • Optional subtitles and metadata

So “ISO to MP4” usually means:

Read the movie or episode from the ISO, select the correct title, then transcode it into an MP4 container.


Method 1: Convert ISO to MP4 using HandBrake

This is the best general-purpose method.

Steps

  1. Install HandBrake

    • Available for Windows, macOS, and Linux.
  2. Open your ISO

    • Launch HandBrake.
    • Click Open Source.
    • Select File.
    • Choose your .iso file.
  3. Select the correct title

    • If the ISO is from a DVD or Blu-ray, it may contain several titles.
    • The main movie is usually the longest title.
    • For TV show discs, each episode may be a separate title.
  4. Choose MP4 output

    • Go to the Summary tab.
    • Set Format to MP4.
  5. Choose a preset Good general choices:

    • Fast 1080p30 — good balance of speed and quality
    • HQ 1080p30 — better quality, slower encoding
    • Fast 720p30 — smaller file size
    • H.265 preset — smaller file size, but slower and less universally compatible
  6. Check video settings In the Video tab:

    • Codec: H.264/x264 for best compatibility
    • Codec: H.265/x265 for smaller files, but slower encoding
    • Framerate: Same as source
    • Quality: RF around 18–22
      • Lower RF = better quality/larger file
      • Higher RF = lower quality/smaller file
  7. Check audio and subtitles

    • In the Audio tab, choose the language/audio track you want.
    • In the Subtitles tab, choose whether to include or burn in subtitles.
  8. Start conversion

    • Choose the output folder.
    • Name the file with .mp4.
    • Click Start Encode.

Method 2: Convert ISO to MP4 using VLC

VLC can also convert some ISO files, but it is less reliable than HandBrake for high-quality encoding.

Steps on Windows

  1. Open VLC Media Player.
  2. Go to Media → Convert / Save.
  3. Click Add and select your .iso file.
  4. Click Convert / Save.
  5. Under Profile, choose something like:
    • Video - H.264 + MP3 (MP4)
    • Video - H.264 + AAC (MP4) if available
  6. Choose the destination filename, ending in .mp4.
  7. Click Start.

VLC is suitable for quick conversions, but for better quality control, HandBrake is usually preferable.


Method 3: Use MakeMKV plus HandBrake

If HandBrake cannot read the ISO properly, especially if it came from a commercial DVD or Blu-ray, you can use a two-step workflow:

  1. Use MakeMKV to extract the main movie from the ISO into an .mkv file.
  2. Use HandBrake to convert the .mkv file into .mp4.

This method is useful when:

  • The ISO contains multiple titles.
  • The disc structure is complex.
  • You want to preserve multiple audio/subtitle tracks first.
  • HandBrake fails to open the ISO directly.

Method 4: Using FFmpeg

For advanced users, FFmpeg can be used from the command line. However, because ISO files often contain DVD/Blu-ray folder structures, you usually need to mount or extract the ISO first.

Example workflow

Mount or extract the ISO, then find the main video files.

For a DVD ISO, the main files are usually inside:

VIDEO_TS/

You may see files such as:

VTS_01_1.VOB
VTS_01_2.VOB
VTS_01_3.VOB

A basic FFmpeg conversion command may look like:

ffmpeg -i input.vob -c:v libx264 -crf 20 -preset medium -c:a aac -b:a 160k output.mp4

For multiple VOB files, you may need to concatenate them first or use the DVD title structure correctly. FFmpeg is powerful, but HandBrake is easier for most users.


Recommended settings

Purpose Video codec Quality setting Notes
Best compatibility H.264 RF 20–22 Works on most TVs, phones, tablets
Higher quality H.264 RF 18–20 Larger file
Smaller file size H.265 RF 22–26 Slower encoding
DVD source H.264 RF 18–21 Enable deinterlace/decomb if needed
Blu-ray source H.264 or H.265 RF 20–24 H.265 saves more space

For most people, use:

Format: MP4
Video codec: H.264
Quality: RF 20
Framerate: Same as source
Audio: AAC or AC-3

Important practical notes

1. If the ISO is copy-protected

Some commercial DVD or Blu-ray ISOs contain copy protection. HandBrake may fail to read them, show errors, or produce unusable output.

In that case, you may need a legal ripping tool appropriate for your jurisdiction. Be aware that bypassing copy protection may be restricted by law in some countries.

2. If the video looks striped or combed

DVD video is often interlaced. If you see horizontal lines during motion, enable:

Filters → Decomb

or:

Filters → Deinterlace

in HandBrake.

3. If the MP4 has no subtitles

Check the Subtitles tab before encoding. You can either:

  • Burn in subtitles permanently, or
  • Include them as selectable subtitle tracks, depending on format support.

For maximum subtitle flexibility, MKV is sometimes better than MP4.

4. If the output file is too large

Increase the RF value slightly.

Example:

RF 18 = higher quality, larger file
RF 22 = smaller file, still usually good
RF 26 = much smaller, visibly lower quality

5. If the output quality is poor

Lower the RF value.

Example:

RF 22 → RF 20 → RF 18

Each lower number improves quality but increases file size.


Practical guidelines

For most users, I recommend this workflow:

Best simple workflow

ISO → HandBrake → MP4

Use:

Preset: Fast 1080p30 or HQ 1080p30
Format: MP4
Video codec: H.264
Quality: RF 20
Audio: AAC

Best workflow for difficult DVD/Blu-ray ISOs

ISO → MakeMKV → MKV → HandBrake → MP4

Best workflow for batch automation

Mount ISO → FFmpeg script → MP4

Legal and ethical note

Only convert ISO files that you own or have the legal right to copy and convert. Laws concerning DVD/Blu-ray ripping and copy protection vary by country. Personal backup may be allowed in some places, while bypassing copy protection may still be restricted.


Brief summary

The easiest way to convert ISO to MP4 is to use HandBrake:

  1. Open the ISO in HandBrake.
  2. Choose the main title.
  3. Set output format to MP4.
  4. Choose an H.264 preset.
  5. Click Start Encode.

If HandBrake cannot read the ISO, use MakeMKV first, then convert the resulting MKV to MP4 with HandBrake.

Ask additional question

Wait...(2min)
Disclaimer: The responses provided by artificial intelligence (language model) may be inaccurate and misleading. Elektroda is not responsible for the accuracy, reliability, or completeness of the presented information. All responses should be verified by the user.