This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import os | |
import sys | |
from pathlib import Path | |
import requests | |
s = requests.Session() | |
API_BASE_URL = "https://api.supernotes.app" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# An excellent tutorial is available at: | |
# https://www.madskjeldgaard.dk/sox-tutorial-command-line-tape-music-an-introduction/ | |
mkdir out | |
FILES=*.wav | |
for f in $FILES | |
do | |
echo "Processing $f file..." |