2022-10-03 19:58:45 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# ffmpeg wrapper
|
2022-10-04 18:16:56 +02:00
|
|
|
import multiprocessing
|
|
|
|
from os.path import isdir, isfile
|
2022-10-03 19:58:45 +02:00
|
|
|
import ffmpy
|
|
|
|
|
|
|
|
# argument parsing
|
|
|
|
import argparse
|
|
|
|
|
2022-10-04 18:16:56 +02:00
|
|
|
# multiprocessing stuff
|
|
|
|
from multiprocessing import Pool
|
|
|
|
from multiprocessing import cpu_count
|
|
|
|
|
2022-10-03 19:58:45 +02:00
|
|
|
# executing some commands
|
|
|
|
import subprocess
|
|
|
|
|
2022-10-03 21:39:38 +02:00
|
|
|
# parsing json output of loudnorm
|
|
|
|
import json
|
|
|
|
|
2022-10-04 18:16:56 +02:00
|
|
|
# file/directory handling
|
|
|
|
import os
|
2022-10-03 19:58:45 +02:00
|
|
|
|
2022-10-04 18:16:56 +02:00
|
|
|
# most recent starttime for program
|
|
|
|
import time
|
2022-10-03 19:58:45 +02:00
|
|
|
|
2022-10-04 18:16:56 +02:00
|
|
|
from random import randint
|
2022-10-03 19:58:45 +02:00
|
|
|
|
2022-11-14 20:15:52 +01:00
|
|
|
from typing import Any, Optional
|
2022-11-13 21:54:24 +01:00
|
|
|
|
2022-10-03 19:58:45 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
# FIXME
|
2022-10-04 18:16:56 +02:00
|
|
|
# inputfile = (
|
|
|
|
# '/home/marc/Downloads/FalKKonE - 01 Aria (From "Berserk: The Golden Age Arc").flac'
|
|
|
|
# )
|
2022-10-03 21:39:53 +02:00
|
|
|
# inputfile = "/home/marc/Downloads/test441.opus"
|
2022-10-04 18:16:56 +02:00
|
|
|
# outputfile = "/home/marc/Downloads/test441_out.opus"
|
|
|
|
|
|
|
|
# srcfolder = "/home/marc/Downloads/MusikRaw"
|
|
|
|
# destfolder = "/home/marc/Downloads/Musik"
|
|
|
|
|
|
|
|
musicfile_extensions = (".flac", ".wav", ".mp3", ".m4a", ".aac", ".opus")
|
2022-10-03 19:58:45 +02:00
|
|
|
|
|
|
|
|
2022-10-03 21:39:53 +02:00
|
|
|
def get_format(inputfile) -> str:
|
2022-10-03 19:58:45 +02:00
|
|
|
# get codec format
|
|
|
|
# https://stackoverflow.com/a/29610897
|
|
|
|
# this shows the codecs of all audio streams present in the file, which shouldn't matter unless you have more than one stream
|
|
|
|
ff = ffmpy.FFprobe(
|
|
|
|
inputs={inputfile: None},
|
|
|
|
global_options=(
|
2022-10-04 18:16:56 +02:00
|
|
|
"-v quiet",
|
2022-10-03 19:58:45 +02:00
|
|
|
"-select_streams a",
|
|
|
|
"-show_entries stream=codec_name",
|
|
|
|
"-of default=noprint_wrappers=1:nokey=1",
|
|
|
|
),
|
|
|
|
)
|
|
|
|
# print(ff.cmd)
|
|
|
|
proc = subprocess.Popen(ff.cmd, shell=True, stdout=subprocess.PIPE)
|
|
|
|
# NOTE read output from previous command
|
|
|
|
# rstrip: remove trailing newline
|
|
|
|
# decode: convert from binary string to normal string
|
|
|
|
format: str = (
|
|
|
|
proc.stdout.read() # pyright: ignore[reportOptionalMemberAccess]
|
|
|
|
.rstrip()
|
|
|
|
.decode("utf8")
|
|
|
|
)
|
|
|
|
# print(format)
|
|
|
|
return format
|
|
|
|
|
|
|
|
|
2022-10-04 18:16:56 +02:00
|
|
|
def remove_picture(inputfile):
|
|
|
|
"""
|
|
|
|
This function makes sure no image is attached to the audio stream.
|
|
|
|
An image might cause problems for the later conversion to opus.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
inputfile (str): Path to file
|
|
|
|
"""
|
|
|
|
tmpfile = os.path.splitext(inputfile)[0] + ".tmp" + os.path.splitext(inputfile)[1]
|
|
|
|
ff = ffmpy.FFmpeg(
|
|
|
|
inputs={inputfile: None},
|
|
|
|
outputs={tmpfile: "-vn -c:a copy"},
|
|
|
|
global_options=("-v error"),
|
|
|
|
)
|
|
|
|
ff.run()
|
|
|
|
os.remove(inputfile)
|
|
|
|
os.rename(tmpfile, inputfile)
|
|
|
|
|
|
|
|
|
2022-10-03 21:39:19 +02:00
|
|
|
def loudness_info(inputfile) -> dict[str, str]:
|
2022-10-04 18:55:10 +02:00
|
|
|
print("Measuring loudness of ", os.path.basename(inputfile))
|
2022-10-03 19:58:45 +02:00
|
|
|
# get format from file
|
|
|
|
# inputformat = get_format(inputfile)
|
|
|
|
# NOTE format is actually unnecessary here
|
|
|
|
ff = ffmpy.FFmpeg(
|
|
|
|
inputs={inputfile: None},
|
|
|
|
outputs={"/dev/null": "-pass 1 -filter:a loudnorm=print_format=json -f null"},
|
|
|
|
global_options=("-y"),
|
|
|
|
)
|
|
|
|
|
2022-10-03 21:39:19 +02:00
|
|
|
# print(ff.cmd)
|
|
|
|
proc = subprocess.Popen(
|
|
|
|
ff.cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE
|
|
|
|
)
|
|
|
|
# NOTE get loudness info from subprocess
|
|
|
|
# rstrip: remove trailing newline
|
|
|
|
# decode: convert from binary string to utf8
|
|
|
|
# splitlines: list of lines (only 12 last ones, length of the output json)
|
|
|
|
# join: reassembles the list of lines and separates with "\n"
|
|
|
|
loudness_json: str = "\n".join(
|
|
|
|
proc.stdout.read().rstrip().decode("utf8").splitlines()[-12:]
|
|
|
|
)
|
|
|
|
# decode json to dict
|
|
|
|
loudness: dict[str, str] = json.loads(loudness_json)
|
|
|
|
# print(loudness_json)
|
2022-10-04 18:16:56 +02:00
|
|
|
# print(ff.cmd)
|
2022-10-03 21:39:19 +02:00
|
|
|
return loudness
|
2022-10-03 19:58:45 +02:00
|
|
|
|
|
|
|
|
2022-11-14 20:15:52 +01:00
|
|
|
def convert(inputfile, outputfile, loudness) -> Optional[list[Any]]:
|
2022-10-04 18:55:10 +02:00
|
|
|
print("Working on ", os.path.basename(inputfile))
|
2022-10-08 14:15:24 +02:00
|
|
|
# coverpath = os.path.join(os.path.dirname(inputfile), "cover.jpg")
|
|
|
|
# NOTE including covers into ogg/opus containers currently doesn't work
|
|
|
|
# https://trac.ffmpeg.org/ticket/4448
|
|
|
|
inputcmd = {inputfile: None}
|
|
|
|
outputcmd = {
|
|
|
|
outputfile: "-pass 2"
|
|
|
|
" "
|
|
|
|
"-filter:a"
|
|
|
|
" "
|
2023-06-05 21:09:12 +02:00
|
|
|
"loudnorm=I=-26.0:"
|
|
|
|
"LRA=9.0:"
|
2022-10-08 14:15:24 +02:00
|
|
|
"measured_I={input_i}:"
|
|
|
|
"measured_LRA={input_lra}:"
|
2022-11-13 21:54:24 +01:00
|
|
|
"measured_tp={input_tp}:measured_thresh={input_thresh}:"
|
|
|
|
"print_format=json"
|
2022-10-08 14:15:24 +02:00
|
|
|
" "
|
|
|
|
"-c:a libopus"
|
|
|
|
" "
|
|
|
|
"-b:a 320k".format(
|
|
|
|
input_i=loudness["input_i"],
|
|
|
|
input_lra=loudness["input_lra"],
|
|
|
|
input_tp=loudness["input_tp"],
|
|
|
|
input_thresh=loudness["input_thresh"],
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-10-03 21:39:53 +02:00
|
|
|
ff = ffmpy.FFmpeg(
|
2022-10-08 14:15:24 +02:00
|
|
|
inputs=inputcmd,
|
|
|
|
outputs=outputcmd,
|
2022-11-13 21:54:24 +01:00
|
|
|
# global_options=("-y", "-v error"),
|
|
|
|
global_options=("-y"),
|
2022-10-03 21:39:53 +02:00
|
|
|
)
|
2022-11-13 21:54:24 +01:00
|
|
|
# ff.run()
|
|
|
|
proc = subprocess.Popen(
|
|
|
|
ff.cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE
|
|
|
|
)
|
|
|
|
# NOTE get loudness info from subprocess
|
|
|
|
# rstrip: remove trailing newline
|
|
|
|
# decode: convert from binary string to utf8
|
|
|
|
# splitlines: list of lines (only 12 last ones, length of the output json)
|
|
|
|
# join: reassembles the list of lines and separates with "\n"
|
|
|
|
loudness_json: str = "\n".join(
|
|
|
|
proc.stdout.read().rstrip().decode("utf8").splitlines()[-12:]
|
|
|
|
)
|
|
|
|
# decode json to dict
|
|
|
|
loudness_new: dict[str, str] = json.loads(loudness_json)
|
|
|
|
if loudness_new["normalization_type"] != "linear":
|
2022-11-14 20:15:52 +01:00
|
|
|
nonlinear: list[Any] = [inputfile, loudness_new]
|
|
|
|
return nonlinear
|
2022-10-03 19:58:45 +02:00
|
|
|
|
|
|
|
|
2022-11-14 20:15:52 +01:00
|
|
|
def main(inputfile: str) -> Optional[list[Any]]:
|
2022-10-04 18:16:56 +02:00
|
|
|
"""
|
|
|
|
Main program loop
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
inputfile (str): Path to input file
|
|
|
|
"""
|
|
|
|
# set output folder to parent path + "normalized"
|
|
|
|
outputfolder = os.path.join(os.path.dirname(inputfile), "normalized")
|
|
|
|
# NOTE create output folder
|
|
|
|
# because multiple parallel processes are at work here,
|
|
|
|
# there might be conflicts with one trying to create the directory although it already exists
|
|
|
|
# this while loop makes sure the directory does exist
|
|
|
|
# the try/except block ensures the error is caught and (hopefully) doesn't happen again just after with random sleep
|
|
|
|
# there's very likely a better way to do this, idk
|
|
|
|
while not os.path.isdir(outputfolder):
|
|
|
|
try:
|
|
|
|
os.mkdir(outputfolder)
|
|
|
|
except:
|
|
|
|
time.sleep(randint(0, 4))
|
|
|
|
|
|
|
|
# output file path
|
|
|
|
noext_infile: str = os.path.splitext(os.path.basename(inputfile))[0]
|
|
|
|
outputfile: str = os.path.join(outputfolder, noext_infile + ".opus")
|
|
|
|
|
|
|
|
# print(inputfile)
|
|
|
|
# print(os.path.dirname(inputfile))
|
|
|
|
# print(os.path.basename(inputfile))
|
|
|
|
# print(outputfile)
|
|
|
|
|
2022-10-08 14:15:24 +02:00
|
|
|
# remove_picture(inputfile=inputfile)
|
2022-10-03 21:39:19 +02:00
|
|
|
loudness = loudness_info(inputfile=inputfile)
|
2022-11-14 20:15:52 +01:00
|
|
|
nonlinear: Optional[list[Any]] = convert(
|
2022-11-13 21:54:24 +01:00
|
|
|
inputfile=inputfile,
|
|
|
|
outputfile=outputfile,
|
|
|
|
loudness=loudness,
|
|
|
|
)
|
|
|
|
|
2022-11-14 20:15:52 +01:00
|
|
|
return nonlinear
|
2022-10-04 18:16:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2022-10-08 14:15:24 +02:00
|
|
|
# start time of program
|
|
|
|
starttime = time.time()
|
|
|
|
|
2022-10-04 18:16:56 +02:00
|
|
|
parser = argparse.ArgumentParser(description="")
|
|
|
|
|
|
|
|
# Input directory
|
|
|
|
parser.add_argument(
|
|
|
|
"-i", "--input-dir", required=True, type=str, help="Input source directory"
|
|
|
|
)
|
|
|
|
|
|
|
|
# number of cpus/threads to use, defaults to all available
|
|
|
|
parser.add_argument(
|
|
|
|
"-c",
|
|
|
|
"--cpu-count",
|
|
|
|
required=False,
|
|
|
|
type=int,
|
|
|
|
help="Number of cpu cores",
|
|
|
|
default=multiprocessing.cpu_count(),
|
|
|
|
)
|
|
|
|
|
2022-10-04 18:40:40 +02:00
|
|
|
# in case you wanted to rerun the conversion for everything
|
|
|
|
parser.add_argument(
|
|
|
|
"-r",
|
|
|
|
"--reset",
|
|
|
|
required=False,
|
|
|
|
action="store_true",
|
|
|
|
help="Rerun conversion for all files",
|
|
|
|
)
|
|
|
|
|
2022-10-04 18:16:56 +02:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
srcfolder = args.input_dir
|
|
|
|
|
|
|
|
cpu = args.cpu_count
|
|
|
|
|
2022-10-04 18:40:40 +02:00
|
|
|
reset = args.reset
|
|
|
|
|
|
|
|
# file where last run timestamp is stored
|
2022-10-04 18:16:56 +02:00
|
|
|
timefile = os.path.join(srcfolder, "run.time")
|
|
|
|
|
2022-11-13 21:54:24 +01:00
|
|
|
# list of non-linear normalizations
|
2022-11-14 20:15:52 +01:00
|
|
|
nonlinear_all: Optional[list[Any]] = []
|
2022-11-13 21:54:24 +01:00
|
|
|
|
2022-10-04 18:16:56 +02:00
|
|
|
# get time of previous run
|
2022-10-04 18:40:40 +02:00
|
|
|
if reset:
|
|
|
|
timeprev = 0
|
|
|
|
elif os.path.isfile(timefile):
|
2022-10-04 18:16:56 +02:00
|
|
|
with open(timefile, "r") as file:
|
|
|
|
timeprev = file.read()
|
|
|
|
else:
|
|
|
|
timeprev = 0
|
|
|
|
|
|
|
|
# print(timeprev)
|
|
|
|
|
2022-11-14 20:15:52 +01:00
|
|
|
musicfiles: list[str] = []
|
2022-10-04 18:16:56 +02:00
|
|
|
for root, dirs, files in os.walk(srcfolder):
|
|
|
|
# ignore the "normalized" subfolder
|
|
|
|
dirs[:] = [d for d in dirs if d not in ["normalized"]]
|
|
|
|
for file in files:
|
|
|
|
if file.endswith(musicfile_extensions):
|
|
|
|
filepath = os.path.join(root, file)
|
|
|
|
# only file newer than the last run are added
|
|
|
|
if os.path.getmtime(filepath) >= float(timeprev):
|
|
|
|
musicfiles.append(os.path.join(root, file))
|
|
|
|
|
|
|
|
# print(musicfiles)
|
|
|
|
|
|
|
|
with Pool(cpu) as p:
|
2022-11-14 20:15:52 +01:00
|
|
|
nonlinear_all: Optional[list[Any]] = p.map(main, musicfiles)
|
2022-10-04 18:16:56 +02:00
|
|
|
|
|
|
|
# write this run's time into file
|
|
|
|
with open(timefile, "w") as file:
|
2022-10-08 14:15:24 +02:00
|
|
|
file.write(str(starttime))
|
2022-11-13 21:54:24 +01:00
|
|
|
|
|
|
|
print("Dynamically normalized music:")
|
2022-11-14 20:15:52 +01:00
|
|
|
for i in nonlinear_all:
|
|
|
|
# NOTE ignore empty and "None" values
|
|
|
|
if i:
|
|
|
|
print(i)
|