Code Monkey home page Code Monkey logo

ruby-ogg's Introduction

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

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

ruby-ogg's People

Contributors

anibali avatar jeanlazarou13 avatar

Watchers

Jean Lazarou avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.