Skip to content

Instantly share code, notes, and snippets.

View reikop's full-sized avatar
😁

Ray Park reikop

😁
View GitHub Profile
@reikop
reikop / rename-based-on-id3-tag.py
Created December 29, 2017 11:11
Rename MP3 files based on ID3 tag
#!/usr/bin/env python2
import taglib
import os
import os.path
filenames = []
for root, dirs, files in os.walk("."):
def fullpath(x):
return os.path.join(root, x)