Parse and extract binary data from bluray files
Project description
pyparsebluray
Parse and extract binary data from bluray files
Installation
python -m pip install pyparsebluray
or from Github:
python -m pip install git+https://github.com/Ichunjo/pyparsebluray.git
Example
import os
from pyparsebluray import mpls
with open('/BD-ROM/BDMV/PLAYLIST/00001.mpls', 'rb') as mpls_file:
print('_____________Header_____________')
header = mpls.load_movie_playlist(mpls_file)
print(header)
print('_____________AppInfo_____________')
appinfo = mpls.load_app_info_playlist(mpls_file)
print(appinfo)
print('_____________Playlist_____________')
mpls_file.seek(header.playlist_start_address, os.SEEK_SET)
pls = mpls.load_playlist(mpls_file)
print(pls)
print('_____________Playlist Mark_____________')
mpls_file.seek(header.playlist_mark_start_address, os.SEEK_SET)
marks = mpls.load_playlist_mark(mpls_file)
print(marks)
print('_____________Extension_____________')
if header.extension_data_start_address != 0:
mpls_file.seek(header.extension_data_start_address, os.SEEK_SET)
extension = mpls.load_extention_data(mpls_file)
print(extension)
TODO
- Add clpi, index table and movie object
Credits
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyparsebluray-0.1.4.tar.gz
(8.0 kB
view details)
Built Distribution
File details
Details for the file pyparsebluray-0.1.4.tar.gz
.
File metadata
- Download URL: pyparsebluray-0.1.4.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 877e587d0eb3ce6ab502fba6fc895929d35a956c44474e29df91bc4b560987e2 |
|
MD5 | 9aee938eedb943ff158d484f6a6ab8c1 |
|
BLAKE2b-256 | 20b9454a2ea44256e14612c92d380afac6ea89c046d90882587a4472aa7b944b |
File details
Details for the file pyparsebluray-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: pyparsebluray-0.1.4-py3-none-any.whl
- Upload date:
- Size: 11.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc3deb62257648aaca09400c86fae148da6ba71fd959969d9c73107b8b295990 |
|
MD5 | d7542dc7bad322b2ccca9853e6752ff7 |
|
BLAKE2b-256 | 02612d1abdd40aa2fd9d748b9bb057081e2076c1ac74a37366e8a91ff5b792ac |