Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/equalo-official/animalese-generator
Generate audio like the dialogue from animal crossing
https://github.com/equalo-official/animalese-generator
Last synced: 1 day ago
JSON representation
Generate audio like the dialogue from animal crossing
- Host: GitHub
- URL: https://github.com/equalo-official/animalese-generator
- Owner: equalo-official
- License: mit
- Created: 2020-05-14T19:38:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-10T17:42:13.000Z (almost 2 years ago)
- Last Synced: 2024-08-02T11:24:44.104Z (3 months ago)
- Language: Python
- Size: 2.45 MB
- Stars: 215
- Watchers: 8
- Forks: 36
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- starred - equalo-official/animalese-generator - Generate audio like the dialogue from animal crossing (Python)
README
# Animalese Audio Generator
## General info
This project allows you to generate audio from text in the style of animalese from the Animal Crossing games.## Usage
```
$ ./animalese.py the quick brown fox jumps over the lazy dog
```The program accepts two options, one to control the pitch (available options: 'lowest', 'low', 'med', 'high')
and one to control the output file
```
$ ./animalese.py the quick brown fox jumps over the lazy dog --pitch high --out output_name.wav
```## Technologies
Project is created with:
* pydub## Installing required dependencies
```
$ pip install pydub
```
[You'll also need to install `ffmpeg` or `libav` for this to work](https://github.com/jiaaro/pydub#dependencies)
```
$ brew install ffmpeg
```
or
```
$ brew install libav
```