Skip to content

Instantly share code, notes, and snippets.

View luckytuvshee's full-sized avatar
💻
Focusing

Tuvshinsanaa Tuul luckytuvshee

💻
Focusing
View GitHub Profile
install these packages before running "configure" script
you can uninstall these packages once "make install" is done
libncursesw5-dev (for supporting wide characters such as Åå Ää Öö)
libopusfile-dev
libsystemd-dev
libavformat-dev
libpulse-dev
jack
libroar-dev
@luckytuvshee
luckytuvshee / editMusicMetadata.py
Created March 5, 2020 09:47
Automated music metadata changer, using eyeD3
import eyed3
import os
def readDir():
album_dirs = [x for x in os.listdir() if os.path.isdir(x)]
for dir in album_dirs:
print(os.getcwd())
for song in os.listdir(dir):