Project

ruby-ogg

0.01
No commit activity in last 3 years
No release in over 3 years
A pure Ruby library for reading Ogg bitstreams, with a bundled Vorbis metadata reader.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0
>= 0

Runtime

~> 1.4
 Project Readme

ruby-ogg¶ ↑

Synopsis¶ ↑

ruby-ogg brings pure Ruby love to the Ogg container format. It provides a nice abstraction which permits you to access packets from an Ogg bitstream without worrying about strange things such as “captures” and “pages”. For more information about Ogg bitstreams check out the blog post at dismaldenizen.wordpress.com/2010/08/20/the-ogg-container-format-explained

require 'ogg'

open("file.ogg", "rb") do |file|
  dec = Ogg::Decoder.new(file) # Create a decoder for an Ogg file
  packet = dec.read_packet     # Direct access to packet, no pages!
  # Do something with the packet...
end

Vorbis¶ ↑

Vorbis is not the same as Ogg. Vorbis is an audio codec which is commonly packed in the Ogg container format with the file extension “.ogg”. Because Vorbis has become so deeply associated with Ogg (and I’m such a nice guy), a Vorbis metadata decoder is bundled with ruby-ogg. This provides a good example of how to use ruby-ogg, and is also fully functional. See the Vorbis::Info documentation for more information.

require 'vorbis'

Vorbis::Info.open('echoplex.ogg') do |info|
  info.comments[:artist].first #=> "Nine Inch Nails"
  info.comments[:title].first  #=> "Echoplex"
  info.sample_rate             #=> 44100
end

Installation¶ ↑

Add this line to your application’s Gemfile:

gem 'ruby-ogg'

And then execute:

$ bundle

Or install it yourself as:

$ gem install ruby-ogg

Requirements¶ ↑

  • Ruby 1.8+

  • RubyGems

Features¶ ↑

  • 100% pure Ruby

  • Read Ogg bitstreams

  • Read Vorbis metadata

  • Optionally validate page integrity with CRCs (eg Ogg::Decoder.new(file, :verify_checksum => true))

TODO¶ ↑

  • Write Ogg bitstreams

  • Write Vorbis metadata