Skip to content

Instantly share code, notes, and snippets.

View markgukov's full-sized avatar
🎯
Focusing

Mark Gukov markgukov

🎯
Focusing
View GitHub Profile
@markgukov
markgukov / fast_speech_text_speech.py
Created February 16, 2024 04:44 — forked from thomwolf/fast_speech_text_speech.py
speech to text to speech
""" To use: install LLM studio (or Ollama), clone OpenVoice, run this script in the OpenVoice directory
git clone https://github.com/myshell-ai/OpenVoice
cd OpenVoice
git clone https://huggingface.co/myshell-ai/OpenVoice
cp -r OpenVoice/* .
pip install whisper pynput pyaudio
"""
from openai import OpenAI
import time
@markgukov
markgukov / Installing Node on AWS Linux AMI
Created March 31, 2011 18:37
Here are the steps to install node, npm and express on Amazon 32 bit Linux AMI
Here are the steps to install node, npm and express on Amazon 32 bit Linux AMI:
sudo yum install gcc-c++
sudo yum install openssl-devel
wget http://nodejs.org/dist/node-v0.4.2.tar.gz (Pick the stable version available)
tar -zxvf node-v0.4.2.tar.gz
cd node-v0.4.2
export JOBS=2
./configure
make