Results 1 to 5 of 5

Thread: Medibuntu and libdvdcss: Building your own...

  1. #1
    Join Date
    Dec 2006
    Beans
    7,349

    Lightbulb Medibuntu and libdvdcss: Building your own...

    The future of Medibuntu's Repository is a little uncertain so now might be a good time to consider building your own copy of libdvdcss. Building your own copy is pretty easy, simply paste the following single command into a Terminal window:

    Code:
    sudo apt-get -y install build-essential checkinstall && \
    mkdir -pv $HOME/libdvdcss_build && cd $HOME/libdvdcss_build && \
    sudo apt-get remove libdvdcss2 && \
    wget http://download.videolan.org/pub/libdvdcss/1.2.13/libdvdcss-1.2.13.tar.bz2 && \
    tar xvf libdvdcss-1.2.13.tar.bz2 && \
    cd libdvdcss-1.2.13 && \
    ./configure && make && \
    sudo checkinstall --pakdir "$HOME/libdvdcss_build" --backup=no --deldoc=yes \
                      --pkgname libdvdcss2 --pkgversion "1.2.13" --fstrans=no \
                      --deldesc=yes --delspec=yes --default && \
    make distclean && sudo ldconfig
    Now you should be right to go with playing back encrypted DVDs .
    Last edited by andrew.46; June 5th, 2013 at 11:25 PM. Reason: Changed to libdvdcss2...
    You think that's air you're breathing now?

  2. #2
    Join Date
    Jan 2013
    Location
    East Yorkshire
    Beans
    Hidden!
    Distro
    Ubuntu 22.04 Jammy Jellyfish

    Re: Medibuntu and libdvdcss: Building your own...

    Hi Andrew,
    I had dvd playback working via medibuntu, but decided to give this a go.
    I deleted the libdvdcss already installed, then ran your command.
    Everything seemed to work & I had libdvdcss 1.2.13 installed, but could get no dvd playback.
    I reverted to the medibuntu repo again & everything worked fine.
    What am I doing wrong, or are there any other commands I need to run?
    Using 12.04 by the way, if that makes a difference.

  3. #3
    Join Date
    Jun 2007
    Beans
    17,337

    Re: Medibuntu and libdvdcss: Building your own...

    Quote Originally Posted by speartip View Post
    Hi Andrew,
    I had dvd playback working via medibuntu, but decided to give this a go.
    I deleted the libdvdcss already installed, then ran your command.
    Everything seemed to work & I had libdvdcss 1.2.13 installed, but could get no dvd playback.
    I reverted to the medibuntu repo again & everything worked fine.
    What am I doing wrong, or are there any other commands I need to run?
    Using 12.04 by the way, if that makes a difference.
    Andrew's command set is missing this for after the build/install -
    sudo ldconfig

    (whether the package name should be libdvdcss2 is also a question...

  4. #4
    monkeybrain2012 is offline Grande Half-n-Half Cinnamon Ubuntu
    Join Date
    Oct 2012
    Beans
    874

    Re: Medibuntu and libdvdcss: Building your own...

    I have compiled libdvdcss by simply downloading the tarball from videolan, extract it and cd into and did
    Code:
    ./configure --prefix=/usr
    make
    sudo checkinstall
    I named the package libdvdcss2 (instead of libdvdcss) and it works. Basically it is the same as what Andrew did, except for the name (don't think it matters whether you install in /usr or /usr/local and run ldconfig afterwords)
    Last edited by monkeybrain2012; June 5th, 2013 at 06:17 PM.

  5. #5
    Join Date
    Dec 2006
    Beans
    7,349

    Re: Medibuntu and libdvdcss: Building your own...

    Work & life have me at the moment but I have made the changes suggested, hopefully this gets things running ok...
    You think that's air you're breathing now?

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •