No commit activity in last 3 years
No release in over 3 years
adds audio support to simple captcha
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6
~> 10.0
~> 3.3.0

Runtime

 Project Readme

SimpleAudioCaptcha

Simple audio support for the simple_captcha.

Installation

Add this line to your application's Gemfile:

  gem 'simple_audio_captcha'

And then execute:

$ bundle

Or install it yourself as:

$ gem install simple_audio_captcha

Usage

Use rails g simple_audio_captcha [templatetype] to generate the default template with audio support and overwrite the existing simple captcha template.

Simple Captcha Audio Utilises Espeak to produce audio. The Espeak configuration for voice, pitch and speed can be added to simple captcha:

SimpleCaptcha.setup do |simple_captcha|
  simple_captcha.voice = 'en'
  simple_captcha.speed = 100
  simple_captcha.pitch = 100
end

See espeak documentation for further details for these parameters.

Requirements

  • Ruby >= 1.9.3
  • Rails >= 3.2
  • You need to install espeak and lame system libraries which would help you in the text to speech conversion and exporting the audio to the mp3 format.

You can install them on OSX from homebrew:

brew install espeak lame

or on a linux based system from your package manager.

Contributing

  1. Fork it ( https://github.com/[my-github-username]/simple_audio_captcha/fork )
  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 a new Pull Request