Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 275 Bytes

README.md

File metadata and controls

10 lines (9 loc) · 275 Bytes

bluray

GO bluray information parser library

Example usage

Listing PlayLists in (more or less) human readable format

b, _ := bluray.OpenBDMV(http.Dir("/mnt/Movies/Awesome BluRay Movie/BDMV"))
bytes, _ := json.Marshal(b.PlayLists)
fmt.Printf("%s\n", bytes)