bug fixes

This commit is contained in:
Alexander Karpov 2024-04-07 00:22:51 +03:00
parent 64f28fc1c8
commit d49be5c42e
2 changed files with 18 additions and 17 deletions

View File

@ -122,12 +122,15 @@ def load_track(
album=album,
):
return sng.first()
try:
if not path.endswith(".mp3"):
mp3_path = path.replace(path.split(".")[-1], "mp3")
AudioSegment.from_file(path).export(mp3_path)
os.remove(path)
path = mp3_path
except Exception as e:
print(e)
return Song.objects.none()
tag = MP3(path, ID3=ID3)

View File

@ -95,18 +95,16 @@ def load_url(link: str, user_id: int):
)
elif "/album/" in link:
album = client.albums_with_tracks(obj_id)
tracks = []
for volume in album.volumes:
for track in volume:
tracks.append(track)
for track in tracks:
tasks.load_ym_file_meta.apply_async(
kwargs={"track": track.track.id, "user_id": user_id}
kwargs={"track": track.id, "user_id": user_id}
)
elif "/artist/" in link:
artist = client.artists(obj_id)[0]
for track in artist.popular_tracks:
albums = artist.get_albums(page_size=100)
for album in albums:
for track in album.fetch_tracks():
tasks.load_ym_file_meta.apply_async(
kwargs={"track": track.id, "user_id": user_id}
)