Skip to content

staticfloat/Ogg.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ogg

Build Status

Basic bindings to libogg to read Ogg bitstreams. Basic operation is to use load() to read in an array of packets which can then be decoded by whatever higher-level codec can use them (such as Opus.jl), or use save() to write out a set of packets and their respective granule positions. Manual use of this package is unusual, however if you are curious as to how .ogg files work, this package can act as a nice debugging tool.

To look into details of an .ogg file such as its actual pages, you must keep track of the OggDecoder object so you can inspect its internal fields pages and packets. The definition of load() is roughly equivalent to:

dec = OggDecoder()
Ogg.decode_all_pages(dec, fio)
Ogg.decode_all_packets(dec, fio)

Where fio is an IO object you wish to decode. The fields dec.pages and dec.packets now contains much information about the .ogg file you have just decoded.

About

Julia package to interface with Ogg containers and streams

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages