All Projects → MattMoony → Figaro

MattMoony / Figaro

Licence: gpl-3.0
Real-time voice-changer for voice-chat, etc. Will support many different voice-filters and features in the future. 🎵

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Figaro

figaro
Real-time voice-changer for voice-chat, etc. Will support many different voice-filters and features in the future. 🎵
Stars: ✭ 362 (+352.5%)
Mutual labels:  roadmap, voice, microphone, sound, virtual
Spectro
🎶 Real-time audio spectrogram generator for the web
Stars: ✭ 383 (+378.75%)
Mutual labels:  microphone, audio, sound
Beats
A command-line drum machine. Convert a beat notated in YAML into a *.wav file.
Stars: ✭ 389 (+386.25%)
Mutual labels:  cli, audio, sound
Wad
Web Audio DAW. Use the Web Audio API for dynamic sound synthesis. It's like jQuery for your ears.
Stars: ✭ 1,540 (+1825%)
Mutual labels:  microphone, audio, sound
Pulsemixer
CLI and curses mixer for PulseAudio
Stars: ✭ 441 (+451.25%)
Mutual labels:  cli, audio, sound
Francium Voice
Record user voice and encode it as MP3 or WAV
Stars: ✭ 35 (-56.25%)
Mutual labels:  microphone, voice
Sound
core sound data structures and interfaces
Stars: ✭ 37 (-53.75%)
Mutual labels:  audio, sound
Soundable
Soundable allows you to play sounds, single and in sequence, in a very easy way
Stars: ✭ 78 (-2.5%)
Mutual labels:  audio, sound
Pandoraplayer
🅿️ PandoraPlayer is a lightweight music player for iOS, based on AudioKit and completely written in Swift.
Stars: ✭ 1,037 (+1196.25%)
Mutual labels:  audio, sound
Pyo
Python DSP module
Stars: ✭ 904 (+1030%)
Mutual labels:  audio, sound
Swiftysound
SwiftySound is a simple library that lets you play sounds with a single line of code.
Stars: ✭ 995 (+1143.75%)
Mutual labels:  audio, sound
Soloud
Free, easy, portable audio engine for games
Stars: ✭ 1,048 (+1210%)
Mutual labels:  audio, sound
Minimumaudioplugin
Minimum implementation of a native audio plugin for Unity
Stars: ✭ 33 (-58.75%)
Mutual labels:  audio, sound
Mems mic breakout Admp401
SparkFun MEMS Microphone Breakout - INMP401 (ADMP401)
Stars: ✭ 10 (-87.5%)
Mutual labels:  microphone, audio
Vchsm
C++ 11 algorithm implementation for voice conversion using harmonic plus stochastic models
Stars: ✭ 38 (-52.5%)
Mutual labels:  audio, voice
Blipkit
C library for creating the beautiful sound of old sound chips
Stars: ✭ 23 (-71.25%)
Mutual labels:  audio, sound
Simpletones.js
The goal of simpleTones.js is to provide every JavaScript developer with a lightweight solution for creating custom sounds in their web applications. This documentation has been written in hopes that the least experienced developer can read, understand and go on to do great things. You can check out several examples at this link:
Stars: ✭ 45 (-43.75%)
Mutual labels:  audio, sound
Peep
Easy Sound Generator 🐥
Stars: ✭ 59 (-26.25%)
Mutual labels:  audio, sound
Chime
🎵 Python sound notifications made easy
Stars: ✭ 56 (-30%)
Mutual labels:  audio, sound
App Media
Elements for accessing data from media input devices and visualizing that data for users
Stars: ✭ 60 (-25%)
Mutual labels:  microphone, audio

Figaro

Figaro

License Top Language GitHub stars


About

Real-time open-source voice modification program. Can be useful for many things, especially when used in combination with virtual sound i/o devices.

Table of Contents

Setup

If you're on Linux or Windows, setup is much easier now! Simply run the appropriate setup script and it will guide you through the whole process.

Linux

Make ./setup.sh executable ... (or run it with an appropriate interpreter) ...

chmod 755 ./setup.sh

... execute it: ./setup.sh ... and have fun with python figaro.py!

Mac

The same as the Linux Setup, just use ./setup-mac.sh instead of ./setup.sh.

Windows

First, in order to allow the setup powershell script to run, you need to execute the following command in an administrator powershell:

Set-ExecutionPolicy RemoteSigned

... afterwards, executing .\setup.ps1 will guide you through the whole setup process! You can now execute python figaro.py.

Manual Setup

First of all, for Figaro to be able to work with audio files other than wav, you need to download and install ffmpeg (see References for the link to the official download page).

  • Linux: pip install -r requirements-unix.txt
  • Mac: pip install -r requirements-unix.txt
  • Windows: pip install -r requirements-windows.txt

... if you're on Windows and you get an error when installing PyAudio try downloading a PIP wheel suitable for your Python version from the link provided in References.

If everything works out, you're good to go!

Advanced setup

The following steps will explain how to use this program with the commonly used voice-chat application Discord on Windows:

  1. Download and install a virtual audio input device (if you don't know any specific one, try the one mentioned in References).
  2. When selecting an output device at the startup of Figaro, choose the virtual input device you just installed (e.g.: CABLE Input).
  3. In Discord, go to User Settings > Voice & Video > Input Device and select the virtual input device from the dropdown (e.g.: CABLE Output).
  4. There you go, your friends should only be able to hear your filtered voice now.

Usage

CLI

CLI-Usage is explained here.

GUI

GUI-Usage is explained here.

Figaro-Script

You can now also use figaro script (.fig) for defining hotkeys and their behaviour. Whether you want a sound effect to be played, or an attribute to be shown, it can all be bound to a certain keypress.

General Syntax

Figaro-Script was heavily inspired by AutoHotkey, so, if you are capable of defining hotkeys and their functionality with ahk-script, think of this as a very, very simplified version of that.

But, if you aren't aware of ahk, let me introduce you to the basic syntax very quickly:

Your script, the .fig file, consists of multiple hotkey-definition blocks which tell Figaro which key combinations should result in what behaviour. Apart from that, you can also have comments, to make your script more readable and easier to understand for a future you.

Defining a Hotkey

In order to define which keys make up your hotkey, you just need to write all of them in one line and end it with ::. After this first line, you write all your commands and end the definition block with return. This could look something like the following:

...

q::
start sound tmp/asdf.mp3 2
return

...

... this hotkey would be triggered every time the q is pressed.

Certain control keys need alternative symbols (this is equalivalent to ahk-script):

  • alt is represented by !
  • ctrl is represented by ^
  • shift is represented by +

... keep in mind that the definition of hotkeys is usually case insensitive, which means in order to, for example, only trigger the hotkey on an uppercase Q, you would need to use +q:: as your definition.

Comments

This is fairly easy to explain. If you have ever used a popular programming language such as C, C++, Java, etc. you already know how to use comments. The only thing to bear in mind is that so far, I have only implemented single-line comments.

For people who have never used such a programming language before, this is the correct syntax for comments in Figaro-Script:

...

// triggered by pressing `lower-case q`
// will play the mp3 file "tmp/asdf.mp3" at 200% of the original volume ...
q::
start sound tmp/asdf.mp3 2
return

...

Builtins

Despite the CLI commands, certain builtin functions are also available to you (at the moment there aren't many, but I will at more should the need to do so arise):

Pause

You can use this command in order play a sound effect, or do anything else for that matter, after waiting for a given amount of milliseconds. E.g.:

...
start sound tmp/1.mp3
pause 3000
start sound tmp/2.mp3
...

... this would play the sound effect tmp/1.mp3, wait for 3 seconds and then play the next sound effect tmp/2.mp3.

More docs coming soon! Disclaimer: Some of the commands described above might still be removed or altered...

Roadmap

Just a small preview of what is about to come. It's very likely that this roadmap will continue to grow in the future, as I get more ideas or if somebody wants to contribute.

  • [x] CLI
    • [x] I/O device selection
    • [x] Live status (live audio graph in console)
    • [x] Filter control
    • [x] Sound effects (soundboard-like abilities)
  • [ ] GUI
    • [x] I/O device selection
    • [x] Live sound wave graph
    • [ ] Filter control
    • [x] Soundboard
  • [ ] Filters
    • [x] Volume
    • [x] Pitch-Shift
    • [x] "Trippy"-Filter
    • [x] Echo
    • [x] Noise
    • [x] Crackle
    • [ ] Randomized
  • [ ] Figaro-Script
    • [x] Using CLI commands
    • [x] Hotkeys
    • [ ] Advanced builtins
  • [ ] Security
    • [ ] Remote ...
      • [x] Authentication
      • [ ] Authorization
      • [ ] Accounting
    • [ ] Encrypted sockets
    • [ ] Fine-grained settings

References

  • Windows Virtual Sound I/O ... vb-audio
  • PyAudio Windows Wheel ... uci
  • FFmpeg download ... ffmpeg.org
  • JWT minimum secret length ... RFC 7518
  • JWT recommended secret length ... Auth0

... MattMoony (June 2020)

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].