Skip to content

Instantly share code, notes, and snippets.

@Sg4Dylan
Created September 22, 2017 03:14
Show Gist options
  • Save Sg4Dylan/cba3d9cc640d89d6ed82f9f620805a33 to your computer and use it in GitHub Desktop.
Save Sg4Dylan/cba3d9cc640d89d6ed82f9f620805a33 to your computer and use it in GitHub Desktop.
import os
from_e = 'utf-8'
to_e = 'gbk'
command = "iconv -f %s -t %s " % (from_e, to_e)
for i in os.listdir():
if i.endswith('.m3u'):
file_s = "\"%s\" > \"%s\"" % (i,to_e+i)
os.system(command+file_s)
os.remove(i)
os.rename(to_e+i,i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment