Skip to content

Ichunjo/pyparsebluray

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyparsebluray

Parse and extract binary data from bluray files

Example

import os
import pprint

from pyparsebluray import mpls

with open('/BD-ROM/BDMV/PLAYLIST/00001.mpls', 'rb') as mpls_file:
    header = mpls.load_movie_playlist(mpls_file)
    pprint.pprint(vars(header))

    mpls_file.seek(header.playlist_start_address, os.SEEK_SET)
    pls = mpls.load_playlist(mpls_file)

    pprint.pprint(vars(pls))

TODO

  • Add clpi, index table and movie object

Credits

About

Parse and extract binary data from bluray files

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages