added a description and removed redundant output of progressbar

This commit is contained in:
Hellow
2023-04-04 17:59:08 +02:00
parent afc3c859b0
commit f970950aea
4 changed files with 12 additions and 10 deletions

View File

@@ -476,7 +476,7 @@ class Page:
success = True
if not cls._download_song_to_targets(source=sources[0], target=temp_target):
if not cls._download_song_to_targets(source=sources[0], target=temp_target, desc=song.title):
success = False
if not cls._post_process_targets(song, temp_target):
@@ -513,5 +513,5 @@ class Page:
return None
@classmethod
def _download_song_to_targets(cls, source: Source, target: Target) -> bool:
def _download_song_to_targets(cls, source: Source, target: Target, desc: str = None) -> bool:
return False

View File

@@ -964,7 +964,7 @@ class Musify(Page):
return None
@classmethod
def _download_song_to_targets(cls, source: Source, target: Target) -> bool:
def _download_song_to_targets(cls, source: Source, target: Target, desc: str = None) -> bool:
"""
https://musify.club/track/im-in-a-coffin-life-never-was-waste-of-skin-16360302
https://musify.club/track/dl/16360302/im-in-a-coffin-life-never-was-waste-of-skin.mp3
@@ -975,5 +975,5 @@ class Musify(Page):
return False
endpoint = f"https://musify.club/track/dl/{url.musify_id}/{url.name_without_id}.mp3"
print(endpoint)
return target.stream_into(cls.get_request(endpoint, stream=True))
return target.stream_into(cls.get_request(endpoint, stream=True), desc=desc)