Skip to main content

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 hashes)

Uploaded Source

Built Distribution

pyparsebluray-0.1.4-py3-none-any.whl (11.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page