Skip to content

Instantly share code, notes, and snippets.

View SuperKogito's full-sized avatar

Ayoub Malek SuperKogito

View GitHub Profile
@voznesenskym
voznesenskym / tess_bulk_download.py
Last active January 10, 2020 11:24
Bulk Download the Toronto emotional speech set (TESS) https://tspace.library.utoronto.ca/handle/1807/
#!/usr/bin/env python3
# Python Version: 3.4.2
# bs4 version: 4.3.2-2
from urllib.request import urlopen
from bs4 import BeautifulSoup
import pickle
links = []
@protrolium
protrolium / ffmpeg.md
Last active July 23, 2024 06:07
ffmpeg guide

ffmpeg

Converting Audio into Different Formats / Sample Rates

Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma

You can get the list of supported formats with:
ffmpeg -formats

You can get the list of installed codecs with: