Fixed issue #19
This commit is contained in:
parent
2d04278ed7
commit
0b6e46a9d5
1 changed files with 12 additions and 3 deletions
|
@ -86,13 +86,22 @@ class Playable:
|
||||||
output = output.replace(
|
output = output.replace(
|
||||||
"{" + meta.name + "}", fix_filename(meta.string)
|
"{" + meta.name + "}", fix_filename(meta.string)
|
||||||
)
|
)
|
||||||
|
if meta.name == "spotid":
|
||||||
|
spotid = meta.string
|
||||||
|
|
||||||
file_path = library.joinpath(output).expanduser()
|
file_path = library.joinpath(output).expanduser()
|
||||||
check_path = Path(f"{file_path}.{ext}")
|
check_path = Path(f"{file_path}.{ext}")
|
||||||
if check_path.exists() and not replace:
|
if check_path.exists():
|
||||||
raise FileExistsError("File already downloaded")
|
f = LocalFile(check_path)
|
||||||
|
if f.get_metadata("spotid") != spotid:
|
||||||
|
file_path = Path(f"{file_path} (SpotId:{spotid[-5:]})")
|
||||||
|
else:
|
||||||
|
if not replace:
|
||||||
|
raise FileExistsError("File already downloaded")
|
||||||
else:
|
else:
|
||||||
file_path.parent.mkdir(parents=True, exist_ok=True)
|
file_path.parent.mkdir(parents=True, exist_ok=True)
|
||||||
return file_path
|
|
||||||
|
return file_path
|
||||||
|
|
||||||
def write_audio_stream(
|
def write_audio_stream(
|
||||||
self,
|
self,
|
||||||
|
|
Loading…
Add table
Reference in a new issue