Skip to content

Instantly share code, notes, and snippets.

@simon987
Created March 5, 2020 16:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simon987/a02c7e649408a40c5665b8382fb4517e to your computer and use it in GitHub Desktop.
Save simon987/a02c7e649408a40c5665b8382fb4517e to your computer and use it in GitHub Desktop.
import os
from shutil import copyfile
import pathlib
from multiprocessing import Pool, Value
SRC = "/mnt/merger/audio/music"
DST = "/mnt/merger/audio/music_opus"
to_convert = []
counter = Value("d")
def convert(path):
global counter
destination = DST + path[len(SRC):]
destination = os.path.splitext(destination)[0] + ".opus"
pathlib.Path(os.path.split(destination)[0]).mkdir(parents=True, exist_ok=True)
if not os.path.exists(destination):
if path.endswith("flac"):
os.system("opusenc \"" + path + "\" --bitrate 96 \"" + destination + "\" --quiet")
else:
os.system("ffmpeg -i \"" + path + "\" -f flac -loglevel panic - | opusenc - \"" + destination + "\" --quiet")
print("[%.2f%%] - " % (counter.value / len(to_convert) * 100) + destination)
counter.value += 1
def recursive_convert(path):
for item in os.listdir(path):
full_path = path + os.sep + item
if os.path.isdir(full_path):
recursive_convert(full_path)
else:
if os.path.splitext(item)[1] in [".mp3", ".flac", ".m4a", ".ape"]:
to_convert.append(full_path)
recursive_convert(SRC)
print("Converting " + str(len(to_convert)) + " files...")
pool = Pool(processes=4)
pool.map(convert, to_convert)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment