All Projects → jart → asterisk-voicechanger

jart / asterisk-voicechanger

Licence: GPL-2.0 License
Asterisk module for adjusting pitch of voices

Programming Languages

c
50402 projects - #5 most used programming language
C++
36643 projects - #6 most used programming language
              .--.                              .--.
            .'(`                               /  ..\
         __.>\ '.  _.---,._,'             ____.'  _o/
       /.--.  : |/' _.--.<                '--.     |.__
    _..-'    `\     /'     `'             _.-'     /--'
     >_.-``-. `Y  /' _.---._____     _.--'        /
    '` .-''. \|:  \.'   ___, .-'`   ~'--....___.-'
     .'--._ `-:  \/   /'    \\
         /.'`\ :;    /'       `-.
        -`    |     |
              :.; : |             Asterisk Voice Changer
              |:    |                  Version o.9
              |     |
              :. :  |      Copyright (c) 2005-2012 Justine Tunney
            .jgs    ;             Keep it open source pigs
            /:::.    `\
----------------------------------------------------------------------

Website: <http://lobstertech.com/code/voicechanger/>
Email: <[email protected]>

This is a module for Asterisk that can be used to alter the pitch of a
person's voice in real time during a telephone conversation.


Installation
============

Requirements for this release:

 - Asterisk 10+
 - SoundTouch >= 1.3.1   (apt-get install libsoundtouch-dev)

If you're running Asterisk 1.6, run: git checkout 8428491e2b

Asterisk 1.8 isn't supported at this time.

Once you've installed the software listed above, run these commands::

  make
  make install
  asterisk -rx 'module load app_voicechanger.so'
  asterisk -rx 'core show application VoiceChanger'


Examples
========

Add something like the following to your dialplan::

  ; scary monster voice
  exten => 9000,1,VoiceChanger(-5.0)
  exten => 9000,2,Dial(sip/[email protected])
  exten => 9000,3,StopVoiceChanger() ; not required

  ; chipmunk voice
  exten => 9001,1,VoiceChanger(5.0)
  exten => 9001,2,Dial(sip/[email protected])
  exten => 9001,3,StopVoiceChanger() ; not required
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].