I installed VLC player on my Ubuntu 14.04 system. DVD movies won't play (no sound or picture) even though the computer tries to start the movie. What's wrong? Is the version wrong for Ubuntu 14.04?
-
2When using install ubuntu-restricted-extras as described in the answer below, to accept the EULA agreement, hit Tab, then Enter, as in http://askubuntu.com/questions/16225/how-can-i-accept-the-microsoft-eula-agreement-for-ttf-mscorefonts-installer – Berry Sep 13 '15 at 13:07
4 Answers
Install package ubuntu-restricted-extras:
sudo apt-get install ubuntu-restricted-extras
then run:
sudo /usr/share/doc/libdvdread4/install-css.sh
to install libdvdcss2 library, that is not included in offical repos due to legal reasons. Now all DVD movies should play like a charm.

- 615
- 4
- 11
-
1
-
8
-
12I don't have the rep to post an answer: for Ubuntu 15.10 and newer, the libdvdread4 no longer contains the install-css.sh. Instead, run: 'sudo apt-get install libdvd-pkg'. See https://help.ubuntu.com/community/RestrictedFormats/PlayingDVDs for more details. – marts Sep 14 '16 at 13:37
-
This did not work for me running Ubuntu 16.04 and VLC 2.2.2 – The Duke Of Marshall שלום Jan 30 '18 at 00:39
-
-
1This did not work in 20.04.
/usr/share/doc/libdvdread4
no longer exists, and the corresponding libdvdread7 doesn't contain theinstall-css.sh
script. – Calimo Dec 11 '20 at 09:39
Confirmed working from 16.04 - 22.04
sudo apt-get install libdvd-pkg
followed by
sudo dpkg-reconfigure libdvd-pkg
Then just drag-and-drop the IFO (usually VIDEO_TS.IFO
) into VLC window.
This also is the official VLC solution.

- 478
-
-
1Also worked for me in 20.04.01 - would be nice if VLC had a dialog that said what the issue was, instead of just doing nothing trying to play DVDs! – Ruth Jul 10 '21 at 22:37
-
1
15.10 and upper
Copy to terminal:
sudo apt-get install libdvd-pkg
Then install something such as:
sudo apt-get install pyrenamer;
sudo apt-get remove pyrenamer;
to run building script of libdvdcss2.
15.04 and lower
Copy to terminal:
sudo apt-get install ubuntu-restricted-extras;
sudo /usr/share/doc/libdvdread4/install-css.sh;

- 409
- 6
- 13
-
1This worked for me running Ubuntu 16.04 and VLC 2.2.2 – The Duke Of Marshall שלום Jan 30 '18 at 00:39
-
-
If you have the same problem with me because we open disk in wrong way, please try the following way:
http://howtoubuntu.org/how-to-play-a-dvd-in-ubuntu
First, insert DVD and do nothing with it (no run, no open).
Second, launch VLC Media Player. You can find it by searching for VLC.
Lastly, brown to DVD files by click File and select Open Disc.

- 17