Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andrewimpellitteri/anki_tts
Utility to convert Anki decks into audio
https://github.com/andrewimpellitteri/anki_tts
anki cli-tool studying-tool tts
Last synced: 23 days ago
JSON representation
Utility to convert Anki decks into audio
- Host: GitHub
- URL: https://github.com/andrewimpellitteri/anki_tts
- Owner: andrewimpellitteri
- License: mit
- Created: 2024-03-31T21:00:31.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-01T20:39:34.000Z (9 months ago)
- Last Synced: 2024-10-31T05:21:25.744Z (2 months ago)
- Topics: anki, cli-tool, studying-tool, tts
- Language: Python
- Homepage:
- Size: 5.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Anki TTS
Anki TTS is a command-line tool that converts an Anki deck into an audio file using text-to-speech (TTS) technology. This tool allows you to create audio versions of your Anki decks, which can be helpful for studying on-the-go or for auditory learners.
## Prerequisites
Before using Anki TTS, make sure you have the following dependencies installed:
- Python 3.x
- `gTTS` library (Google Text-to-Speech)
- `pydub` library (for audio manipulation)You can install the required libraries using pip:
```
pip install gTTS pydub
```## Usage
```
python ankitts.py /path/to/your/anki/deck.apkg output.mp3
```## Contributing
Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request.
## License
This project is licensed under the [MIT License](LICENSE).
## Acknowledgments
- [Anki](https://apps.ankiweb.net/) for the amazing spaced repetition software
- [gTTS](https://github.com/pndurette/gTTS) for the Google Text-to-Speech library
- [pydub](https://github.com/jiaaro/pydub) for the audio manipulation library