Project

sounder

0.0
No commit activity in last 3 years
No release in over 3 years
Play sounds on your Mac
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
 Project Readme

Sounder

Play sounds on your Mac

Installation

Add this line to your application's Gemfile:

gem 'sounder'

And then execute:

$ bundle

Or install it yourself as:

$ gem install sounder

Usage

Sounder::System.set_volume 70 # 0-100

Sounder.play File.expand_path('../support/mysound.m4a', __FILE__)

sound = Sounder::Sound.new "/path/to/audio/file"
sound.play

my_group = Sounder::SoundGroup.new(
  :sound_one  => File.expand_path('../../lib/support/sound1.m4a', __FILE__),
  "sound_two" => File.expand_path('../../lib/support/sound2.m4a', __FILE__)
)
my_group.play "tw"  # fuzzy matching of names
my_group.random     # plays a random sound from the group
my_group.usage      # returns a usage string with all the sound

names and commands Not Implemented my_group.names # array of sound names Not Implemented my_group.sounds # array of Sounder::Sound objects

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request