1

While inserting a DVD (which plays well in a DVD player) into my laptop, a message appears, requesting me to install gstreamer1.0-plugins-bad.

What is this? How can I solve this problem and watch my DVD?

Byte Commander
  • 107,489
Bapi Saha
  • 459
  • 3
  • 11
  • 25

1 Answers1

1

The mentioned package gstreamer1.0-plugins-bad is a package containing codecs needed to decode and play DVD video content. Here is its description:

Description-en: GStreamer plugins from the "bad" set

GStreamer is a streaming media framework, based on graphs of filters which operate on media data. Applications using this library can do anything from real-time sound processing to playing videos, and just about anything else media-related. Its plugin-based architecture means that new data types or processing capabilities can be added simply by installing new plug-ins.

GStreamer Bad Plug-ins is a set of plug-ins that aren't up to par compared to the rest. They might be close to being good quality, but they're missing something - be it a good code review, some documentation, a set of tests, a real live maintainer, or some actual wide use.

It is not installed by default in Ubuntu, because it contains proprietary or non-freely licensed codecs. You may still use them legally, but the Ubuntu developers preferred to only ship open-source software with the default installation.

The following command typed in a terminal window (Ctrl+Alt+T) should solve the problem:

sudo apt-get install ubuntu-restricted-extras

Alternatively, click the red button below which will take you to a site that helps you installing the package through your Software Center.
However, I strongly recommend using the terminal, because the other method might lead to problems because the Software Center fails to display you the License Agreement.

Install via the software center


If you want, you can probably also just install the requested gstreamer1.0-plugins-bad Install gstreamer1.0-plugins-bad codec package only (not tested by me, I can't guarantee that this will work):

sudo apt-get install gstreamer1.0-plugins-bad
Glorfindel
  • 971
  • 3
  • 13
  • 20
Byte Commander
  • 107,489
  • well, by following these instruction , i see that it consumes 341 MB of data . is it a such type of huge software ?? is there any other way to play dvd inspite of this ?? – Bapi Saha Dec 29 '15 at 15:44
  • You can also probably only install the requested gstreamer1.0-plugins-bad package alone: run sudo apt-get install gstreamer1.0-plugins-bad in a terminal window instead. – Byte Commander Dec 29 '15 at 15:58
  • @Bapi : When you decide to install only the gstreamer codecs, you might want to consider installing gstreamer1.0-plugins-ugly additionally. :) – cl-netbox Jan 03 '16 at 12:11