Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
blu-ray [2023/04/09 20:23] beandog |
blu-ray [2023/04/09 21:26] (current) beandog [ffmpeg] |
||
---|---|---|---|
Line 2: | Line 2: | ||
* [[Blu-ray DRM]] | * [[Blu-ray DRM]] | ||
+ | * [[bluray_info]] | ||
+ | * [[bluray_copy]] | ||
+ | * [[bluray_player]] | ||
Some good software: | Some good software: | ||
Line 15: | Line 18: | ||
* [[KEYDB]] | * [[KEYDB]] | ||
* [[libaacs]] | * [[libaacs]] | ||
+ | * [[libbluray]] | ||
* [[MakeMKV]] | * [[MakeMKV]] | ||
Line 24: | Line 28: | ||
* [[http://www.blu-raydisc.com/Assets/Downloadablefile/White_Paper_General_4th_20150817_clean.pdf|Blu-ray Specifications 4th Edition PDF]] - includes 4K | * [[http://www.blu-raydisc.com/Assets/Downloadablefile/White_Paper_General_4th_20150817_clean.pdf|Blu-ray Specifications 4th Edition PDF]] - includes 4K | ||
* Max 4K disc size: 128 GB or 137438953472 bytes (1024 * 1024 * 1024 * 128) | * Max 4K disc size: 128 GB or 137438953472 bytes (1024 * 1024 * 1024 * 128) | ||
+ | |||
+ | ==== ffmpeg ==== | ||
+ | |||
+ | You can access a Blu-ray directly using ''[[ffmpeg]]'' as long as you have the playlist number (which [[bluray_info]] can supply). Note that ''playlist'' must be the **first** option passed. | ||
+ | |||
+ | An example to simply remux a title: | ||
+ | |||
+ | <code> | ||
+ | ffmpeg -playlist 800 -i bluray:/dev/sr0 -codec copy bluray_playlist.mkv | ||
+ | </code> |