Sha256: dbd996240a3ae04dbb1ac08b6e9f974f5f4133c0748aa98175151313a85da34c
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
= ruby-audioinfo by Guillaume Pierronnet * http://ruby-audioinfo.rubyforge.org * http://rubyforge.org/projects/ruby-audioinfo/ == DESCRIPTION: ruby-audioinfo glue together various audio ruby libraries and presents a unified API to the developper. Currently, supported formats are: mp3, ogg, mpc, ape, wma, flac, aac, mp4, m4a. == FEATURES/PROBLEMS: * beta write support for mp3 and ogg tags (other to be written) * unified support for tag text-encoding. AudioInfo.new("file", "utf-8") and you're done! * support for MusicBrainz tags * AudioInfo::Album class included, which gives an unified way to manage an album in a given directory. == SYNOPSIS: AudioInfo.open("audio_file.one_of_supported_extensions") do |info| info.artist # or info["artist"] info.title # or info["title"] info.length # playing time of the file info.bitrate # average bitrate info.to_h # { "artist" => "artist", "title" => "title", etc... } end == REQUIREMENTS: * ruby-mp3info * ruby-ogginfo * MP4Info * flacinfo-rb * wmainfo-rb == INSTALL: * sudo gem install ruby-audioinfo == LICENSE: Ruby
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-audioinfo-0.1 | README.txt |