RunItYourself

Free code snippets and tools you can run yourself!
Video to Text Transcription
Transcribe audio from video to text using open-source libraries.
OPTION 1: Run yourself in Google Colab
Google Colab is a free online computer that runs on securely on Google's servers. No downloads and no installations required!
Just select any options and hit the play button to run the tool!
OPTION 2: Run it on your local computer (requires Python)
# This work is licensed under CC BY-NC-SA 4.0
# Import necessary libraries!
!pip install openai-whisper --quiet
import whisper
from google.colab import files
# Video upload!
uploaded = files.upload()
model_option = "base" #@param ["tiny", "base", "small", "medium", "large"]
print_to_console = False # @param {type:"boolean"}
model = whisper.load_model(model_option)
... #some code hidden ...
Click here to show all code!
Request new features or report bugs at reddit.com/r/runityourself