1
0
Fork 0

finish rip

This commit is contained in:
Tyrel Souza 2023-10-08 19:44:14 -04:00
parent 3b4d72de8e
commit f2f550bfa1
No known key found for this signature in database
GPG Key ID: F3614B02ACBE438E
1 changed files with 26 additions and 2 deletions

28
rip.py
View File

@ -1,6 +1,30 @@
# name=$(basename "$1" .aax)
import os
import subprocess
import sys
# ffmpeg -y -activation_bytes $KEY -i "$name.aax" -map_metadata 0 -id3v2_version 3 -codec:a copy -vn "output/$name.m4b"
# mv "$name.aax" "converted/$name.aax"
def rip(filename):
key = os.environ.get("AUDIBLE_KEY")
if not key:
raise Exception("set envvar AUDIBLE_KEY")
name = filename[:-4]
commands = [
"ffmpeg",
"-y",
"-activation_bytes", key,
"-i", f"{name}.aax",
"-map_metadata", "0",
"-id3v2_version", "3",
"-codec:a", "copy",
"-vn", f"output/{name}.m4b"
]
if subprocess.run(commands).returncode == 0:
print("FFmpeg Script Ran Successfully")
subprocess.run(["mv", f"{name}.aax", f"converted/{name}.aax"])
else:
print("There was an error ripping")
if __name__ == "__main__":
main()
rip(sys.argv[-1])