How to make VLC play an iso file directly

vlc

Running vlc /path/to/dvd-video.iso, I'm getting:

[0x8787ccc] main decoder error: no suitable decoder module for fourcc `undf'. VLC probably does not support this sound or video format.

notes:

  • The version of vlc is 1.1.3.
  • The DVD plays well when not in iso format (when it's normal files on the filesystem).

Best Answer

Mount it as a loopback first.

mount -o loop,ro -t iso9660 /path/to/file.iso /path/to/mountpoint/

Or try this...

vlc dvd://path/to/iso
Related Question