33 lines
688 B
Markdown
33 lines
688 B
Markdown
#Readme
|
|
|
|
This script uses OpenAI to convert text to speech, and then speak that speech over a virtual microphone
|
|
|
|
Install VB-Cable:
|
|
https://vb-audio.com/Cable/
|
|
|
|
This sets up a virtual microphone that we can use to sent text to speech audio to. Then, when you join a meeting, such as a google meeting, you can select this virtual cable to hear the audio being sent on the channel.
|
|
|
|
|
|
|
|
#Dependencies
|
|
|
|
To get this script working you will need to install the following on the relevant operating system
|
|
|
|
###Windows
|
|
|
|
pip install pyaudio
|
|
pip install python-dotenv
|
|
pip install wave
|
|
pip install pydub
|
|
|
|
|
|
###Mac
|
|
|
|
brew install portaudio
|
|
pip install python-dotenv
|
|
pip install wave
|
|
pip install pydub
|
|
|
|
|
|
|