Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
#1
|
|||
|
|||
How to play Blu-Ray video on Ubuntu Linux, Mint, Debian,...To play Blu-Ray video on Ubuntu, you need to decrypt files first.
The "AACS" Digital Rights Management system on all Blu-Ray discs attempts to stop consumers from exercising fair use rights, including:
Blu-Ray player applications require their unique player (or "device") key to play discs. These keys are issued by AACS-LA to approved manufacturers that implement the restrictions mentioned above. This player key can decrypt volume key of each movie, which in turn can decrypt the content of the movie to play it. However the AACS DRM is ineffective and does not successfully prevent any of these things, because:
For Ubuntu 9.x you will need MPlayer and FFMPEG. Ubuntu 9.10 contains a version of Mplayer that is capable of reading decrypted Blu-ray files. Many Blu-Ray discs use DRM protection. To decrypt such discs you can use DumpHD. You will also need a current keydb.cfg file, which contains the decryption keys required to your movie. If DumpHD cannot rip your disc, you can try the MakeMKV. This program contains a decryption key that has not been revoked, and may have more success in ripping your disc. MakeMKV is not as advanced at removing the BD+ protection on certain discs. Please note that you will need up to 50GB of free hard disk space to store Blu-Ray video on your hd.
|
#2
|
|||
|
|||
Re: How to play Blu-Ray video on Ubuntu 9.10 (Karmic Koala)The following mplayer-options are originally from a guide for mythtv:
Code:
mplayer -fs -vo xv -demuxer lavf -ac <audiocodec> -aid <audiotrackid> -fps 24000/1001 <moviefile> -vo xv to use Xv as for video-output -demuxer must always be lavf -fps 24000/1001 this is for the 24p movie format of all blu-ray discs To find out audiocodec and track run Code:
ffmpeg -i <moviefile> For mlp use -ac mlp (this is MLP/trueHD format) If mlp is not recognized, copy /etc/mplayer/codecs.conf to ~/.mplayer/codecs.conf and add the following: Code:
audiocodec mlp info "FFMpeg mlp" status buggy format 0x20504C4D driver ffmpeg dll "mlp" When experiencing slow playback, you can experiment with one or more of the following options: Code:
-lavdopts threads=2:fast:skiploopfilter=all -sws 0 -framedrop -cache 8192 -autosync 30 Also you can try and nice your mplayer to -20. If you encounter audio/video sync issues: When mplayer is struggling, do you get "Too many video packets in the buffer" console output? If so, in libmpdemux/demuxer.h change: Code:
#define MAX_PACK_BYTES 0x800000 Code:
#define MAX_PACK_BYTES 0x8000000 Nvidia 8000 series and above, excluding 8800 cards, support Video Decode and Presentation API for Unix (VDPAU). This allows the Nvidia GPU to take on some of the decoding load. Mplayer in Ubuntu 9.10 supports VDPAU. You will also need the nvidia-185-libvdpau package. When you have a decrypted Blu-ray/HD-DVD filesystem on your hard disk, you can run the following command: H.264 disc Code:
mplayer -vc ffh264vdpau -vo vdpau ~/BDMV/STREAM/00001.m2ts Code:
mplayer -vc ffvc1vdpau -vo vdpau ~/BDMV/STREAM/00001.m2ts Code:
mplayer -vc ffmpeg12vdpau -vo vdpau ~/BDMV/STREAM/00001.m2ts |
#3
|
|||
|
|||
Re: How to play Blu-Ray video on Ubuntu 9.10 Karmic KoalaYou can use the following comnand to play Blu-Ray videos on Linux (works for mkb v1-10):
Code:
./dumphd.sh --infile:BDMV/STREAM/0000XX.m2ts /media/cdrom | mplayer -cache 8192 -lavdopts threads=4 -vo vdpau -vc ffh264vdpau - |
#4
|
|||
|
|||
Re: How to play Blu-Ray video in Ubuntu 9.10There is also a patch and a library for MPlayer, that allows Blu-Ray playback. You need to install the library and apply the patch to latest MPlayer source. Then you can play back Blu-Ray video using
Code:
mplayer bluray://playlist:chapter//mountPath For example: Code:
mplayer bluray://media/cdrom0 Requires OpenSSL to be installed. Hopefully the changes will be included into MPlayer soon. |
#5
|
|||
|
|||
Re: How to play Blu-Ray video on Ubuntu 9.10 (Karmic Koala)How to play encrypted bluray disks in Ubuntu, Mint, Zorin, etc with VLC or XBMC.
A nice easy to use installer script. This tutorial guide is applicable for Ubuntu 12.04, 12.10, and 13.04, and also applies to any Debian based distro. For other Linux distros please substitute apt-get for your package manager. Install Instructions: wget paste.debian.net/download/5249 bash 5249 |
Tags: blu ray, bluray, linux, mplayer, play, player, ubuntu, video |
Thread Tools | |
Display Modes | |
|
|