Skip to content

Instantly share code, notes, and snippets.

View BerniWittmann's full-sized avatar
👨‍💻
Coding

Bernhard Wittmann BerniWittmann

👨‍💻
Coding
View GitHub Profile
@BerniWittmann
BerniWittmann / parse_speech_to_text.py
Last active June 4, 2020 15:07
Parse speech in mp3 files to text using IBM Watson Speech to Text
import argparse
import requests
import json
import os
from halo import Halo
URL = "<url-to-ibm-watson-speech-to-text-instance-here>"
API_KEY = "<your-api-key-here>"
PARAMS = {
"model": "de-DE_BroadbandModel",

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@BerniWittmann
BerniWittmann / .hyper.js
Created February 14, 2017 23:21
Hyper Config
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 12,
// font family with optional fallbacks
fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
cursorColor: 'rgba(248,28,229,0.8)',