53 lines
1.5 KiB
Python
Executable file
53 lines
1.5 KiB
Python
Executable file
#!/usr/bin/env python3
|
|
import subprocess
|
|
import sys
|
|
import discid
|
|
import musicbrainzngs as mb
|
|
|
|
def getTitleAmount():
|
|
process = subprocess.Popen(["cdparanoia", "-Q", "--stderr-progress", "--"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
startCount = False
|
|
trackCount = 0
|
|
for line in process.stderr:
|
|
out = line.decode()
|
|
|
|
if startCount == True and not "TOTAL" in out:
|
|
trackCount += 1
|
|
|
|
if "===========================================================" in out:
|
|
startCount = True
|
|
elif "TOTAL" in out:
|
|
startCount = False
|
|
return trackCount
|
|
|
|
def getMBbyDisc():
|
|
disc = discid.read("/dev/cdrom")
|
|
mb.set_useragent("ripbot", "0.01", "https://git.geekify.de/sqozz/ripbot")
|
|
releases = mb.get_releases_by_discid(disc.id)
|
|
if len(releases["disc"]["release-list"]) > 1:
|
|
print("Found {0} relases by discid {1}".format(releases["disc"]["release-count"], releases["disc"]["id"]))
|
|
|
|
|
|
|
|
def ripTitles():
|
|
process = subprocess.Popen(["cdparanoia", "-B", "-l", "--stderr-progress", "--", "\"1-2\""], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
currentTitle = 0
|
|
for line in process.stderr:
|
|
out = line.decode()
|
|
if "outputting to" in out:
|
|
currentTitle += 1
|
|
print("Ripping title {0}".format(currentTitle))
|
|
elif "##" == out[:2]:
|
|
print(out.strip(), end="\r")
|
|
sys.stdout.write("\r")
|
|
#else:
|
|
#print(out.strip())
|
|
|
|
titleAmount = getTitleAmount()
|
|
print("Found {0} titles".format(titleAmount))
|
|
getMBbyDisc()
|
|
print("Start ripping")
|
|
#ripTitles()
|
|
|
|
# vim:ts=2 sts=2 sw=2 noexpandtab:
|