Compare commits
2 commits
25ad99c816
...
0ff526b5ca
Author | SHA1 | Date | |
---|---|---|---|
0ff526b5ca | |||
8db04fa526 |
1 changed files with 5 additions and 4 deletions
9
bcao.py
9
bcao.py
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python3
|
||||
#BCAO - BandCamp Automatic Organiser
|
||||
#copyright 2018 lynnear software babyyyyyyyyyyyy
|
||||
#GPLv3 because why the fuck not
|
||||
#copyright 2018-2019 @LynnearSoftware@fedi.lynnesbian.space
|
||||
#Licensed under the GPLv3: https://www.gnu.org/licenses/gpl-3.0.html#content
|
||||
#input: a .zip from bandcamp
|
||||
#output: it organises it, adds cover art, puts it in the right place...
|
||||
|
||||
|
@ -105,7 +105,7 @@ if cover == "":
|
|||
while os.path.getsize(cover) / 1024 > args.threshold:
|
||||
if os.path.basename(cover) != "cover-lq.jpg":
|
||||
nucover = os.path.dirname(cover) + os.sep + "cover-lq.jpg"
|
||||
subprocess.check_output(["convert", cover, "-quality", "85", nucover]) #convert the file to a jpeg
|
||||
subprocess.check_output(["convert", cover, "-quality", "85", "-strip", nucover]) #convert the file to a jpeg
|
||||
cover = nucover
|
||||
else:
|
||||
subprocess.check_output(["convert", cover, "-resize", "90%", cover]) #shrink it slightly
|
||||
|
@ -154,13 +154,14 @@ if choice == "Custom...":
|
|||
# print("Setting artist to {0}".format(choice))
|
||||
artist = choice
|
||||
|
||||
mPath = "/home/lynne/Music/Music/{0}/{1}".format(artist, album) #todo: don't hardcode this
|
||||
mPath = "/home/lynne/Music/Music/{}/{}".format(artist, album) #todo: don't hardcode this
|
||||
subprocess.check_output(["mkdir", "-p", mPath])
|
||||
|
||||
for root, dirs, filez in os.walk(tmp):
|
||||
for file in filez: #for every file
|
||||
subprocess.check_output(["mv", root + os.sep + file, mPath + os.sep + file])
|
||||
|
||||
print("Deleting {}...".format(tmp))
|
||||
subprocess.check_output(["rm", "-rf", tmp])
|
||||
|
||||
print("Done!")
|
Loading…
Reference in a new issue