fixed bug with the youtube downloader where it chrashes if no results are found. Now checking all results of an search for a close enough title
This commit is contained in:
parent
e18dc980fe
commit
84b4f8b6c2
Binary file not shown.
Binary file not shown.
@ -7,7 +7,6 @@ import logging
|
|||||||
import requests
|
import requests
|
||||||
import os
|
import os
|
||||||
|
|
||||||
# "/home/lars/Projekts/big projects/music-downloader/venv/bin/python3.10" "/home/lars/Projekts/big projects/music-downloader/src/main.py"
|
|
||||||
|
|
||||||
TEMP = "temp"
|
TEMP = "temp"
|
||||||
STEP_ONE_CACHE = ".cache1.csv"
|
STEP_ONE_CACHE = ".cache1.csv"
|
||||||
|
@ -49,6 +49,7 @@ class Search:
|
|||||||
|
|
||||||
metadata_list = []
|
metadata_list = []
|
||||||
if kind == "artist":
|
if kind == "artist":
|
||||||
|
|
||||||
metadata_list = self.download_artist(mb_id)
|
metadata_list = self.download_artist(mb_id)
|
||||||
elif kind == "release":
|
elif kind == "release":
|
||||||
metadata_list = self.download_release(mb_id)
|
metadata_list = self.download_release(mb_id)
|
||||||
@ -72,7 +73,6 @@ class Search:
|
|||||||
|
|
||||||
for i, release in enumerate(result["artist"]["release-list"]):
|
for i, release in enumerate(result["artist"]["release-list"]):
|
||||||
metadata_list.extend(self.download_release(release["id"], i))
|
metadata_list.extend(self.download_release(release["id"], i))
|
||||||
|
|
||||||
return metadata_list
|
return metadata_list
|
||||||
|
|
||||||
def download_release(self, mb_id, album_sort: int = None):
|
def download_release(self, mb_id, album_sort: int = None):
|
||||||
|
@ -7,6 +7,7 @@ import phonetic_compares
|
|||||||
|
|
||||||
YDL_OPTIONS = {'format': 'bestaudio', 'noplaylist': 'True'}
|
YDL_OPTIONS = {'format': 'bestaudio', 'noplaylist': 'True'}
|
||||||
YOUTUBE_URL_KEY = 'webpage_url'
|
YOUTUBE_URL_KEY = 'webpage_url'
|
||||||
|
YOUTUBE_TITLE_KEY = 'title'
|
||||||
WAIT_BETWEEN_BLOCK = 10
|
WAIT_BETWEEN_BLOCK = 10
|
||||||
MAX_TRIES = 3
|
MAX_TRIES = 3
|
||||||
|
|
||||||
@ -14,13 +15,12 @@ MAX_TRIES = 3
|
|||||||
def get_youtube_from_isrc(isrc: str):
|
def get_youtube_from_isrc(isrc: str):
|
||||||
# https://stackoverflow.com/questions/63388364/searching-youtube-videos-using-youtube-dl
|
# https://stackoverflow.com/questions/63388364/searching-youtube-videos-using-youtube-dl
|
||||||
with youtube_dl.YoutubeDL(YDL_OPTIONS) as ydl:
|
with youtube_dl.YoutubeDL(YDL_OPTIONS) as ydl:
|
||||||
video = ydl.extract_info(f"ytsearch:{isrc}", download=False)['entries'][0]
|
videos = ydl.extract_info(f"ytsearch:{isrc}", download=False)['entries']
|
||||||
if YOUTUBE_URL_KEY not in video:
|
|
||||||
return None
|
return [{
|
||||||
return {
|
|
||||||
'url': video[YOUTUBE_URL_KEY],
|
'url': video[YOUTUBE_URL_KEY],
|
||||||
'title': video['title']
|
'title': video[YOUTUBE_TITLE_KEY]
|
||||||
}
|
} for video in videos]
|
||||||
|
|
||||||
|
|
||||||
def get_youtube_url(row):
|
def get_youtube_url(row):
|
||||||
@ -28,16 +28,22 @@ def get_youtube_url(row):
|
|||||||
return None
|
return None
|
||||||
real_title = row['title'].lower()
|
real_title = row['title'].lower()
|
||||||
|
|
||||||
result = get_youtube_from_isrc(row['isrc'])
|
final_result = None
|
||||||
video_title = result['title'].lower()
|
results = get_youtube_from_isrc(row['isrc'])
|
||||||
|
for result in results:
|
||||||
|
video_title = result['title'].lower()
|
||||||
|
match, distance = phonetic_compares.match_titles(video_title, real_title)
|
||||||
|
|
||||||
match, distance = phonetic_compares.match_titles(video_title, real_title)
|
if match:
|
||||||
|
logging.warning(
|
||||||
|
f"dont downloading {result['url']} cuz the phonetic distance ({distance}) between {real_title} and {video_title} is to high.")
|
||||||
|
continue
|
||||||
|
|
||||||
if match:
|
final_result = result
|
||||||
logging.warning(
|
|
||||||
f"dont downloading {result['url']} cuz the phonetic distance ({distance}) between {real_title} and {video_title} is to high.")
|
if final_result is None:
|
||||||
return None
|
return None
|
||||||
return result['url']
|
return final_result['url']
|
||||||
|
|
||||||
|
|
||||||
def download(row, trie: int = 0):
|
def download(row, trie: int = 0):
|
||||||
|
@ -1,6 +1,11 @@
|
|||||||
,id,album,title,artist,album_artist,tracknumber,albumsort,titlesort,isrc,date,year,musicbrainz_artistid,musicbrainz_albumid,musicbrainz_albumartistid,musicbrainz_albumstatus,total_tracks,language,musicbrainz_albumtype,compilation,releasecountry,barcode
|
,id,album,title,artist,album_artist,tracknumber,albumsort,titlesort,isrc,date,year,musicbrainz_artistid,musicbrainz_albumid,musicbrainz_albumartistid,musicbrainz_albumstatus,total_tracks,language,musicbrainz_albumtype,compilation,releasecountry,barcode
|
||||||
0,cf803d82-c7e4-4a95-ae3d-41c425c073d2,Was ist bloss mit Hauke los,Sag mir,['Crystal F'],Crystal F,1,0,1,DEVY82000200,2021-06-18,2021,5cfecbe4-f600-45e5-9038-ce820eedf3d1,85ef407e-241e-49fa-adf3-6320d34154fa,5cfecbe4-f600-45e5-9038-ce820eedf3d1,Official,5,deu,EP,,XW,4062851617352
|
0,189f237b-cc29-4fde-8b5f-50a536830ad3,Immortal,Immortal,['Lorna Shore'],Lorna Shore,1,12,1,GBDHC2012001,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720
|
||||||
1,e061d47e-5c23-4d90-a707-c292b94dc1d6,Was ist bloss mit Hauke los,Glücklich sein,"['Crystal F', 'Tamas']",Crystal F,2,0,2,DEVY82000327,2021-06-18,2021,5cfecbe4-f600-45e5-9038-ce820eedf3d1,85ef407e-241e-49fa-adf3-6320d34154fa,5cfecbe4-f600-45e5-9038-ce820eedf3d1,Official,5,deu,EP,,XW,4062851617352
|
1,c712d6e8-54ff-4287-a287-aad9986e862a,Immortal,Death Portrait,['Lorna Shore'],Lorna Shore,2,12,2,GBDHC2012002,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720
|
||||||
2,5e82173e-61a5-4eb3-94c0-ac268e94ee76,Was ist bloss mit Hauke los,Knifeboys,"['Crystal F', 'Dollar John', 'MXP']",Crystal F,3,0,3,DEVY82000328,2021-06-18,2021,5cfecbe4-f600-45e5-9038-ce820eedf3d1,85ef407e-241e-49fa-adf3-6320d34154fa,5cfecbe4-f600-45e5-9038-ce820eedf3d1,Official,5,deu,EP,,XW,4062851617352
|
2,389e84ef-0f2b-4ae5-85d1-11d0c6e0aa6f,Immortal,This Is Hell,['Lorna Shore'],Lorna Shore,3,12,3,GBCEJ1800172,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720
|
||||||
3,f5f7908c-6bae-4805-97ac-581d73e3fe2c,Was ist bloss mit Hauke los,Mit App,"['Crystal F', 'KDM Shey']",Crystal F,4,0,4,DEVY82000329,2021-06-18,2021,5cfecbe4-f600-45e5-9038-ce820eedf3d1,85ef407e-241e-49fa-adf3-6320d34154fa,5cfecbe4-f600-45e5-9038-ce820eedf3d1,Official,5,deu,EP,,XW,4062851617352
|
3,4fcc8206-3cf7-4215-ac6e-62d1f4df8ad5,Immortal,Hollow Sentence,['Lorna Shore'],Lorna Shore,4,12,4,GBDHC2012003,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720
|
||||||
4,dfc48144-1f04-4c2d-a98f-1928958efc32,Was ist bloss mit Hauke los,So spielt das Leben,"['Crystal F', 'Dollar John', 'Taha']",Crystal F,5,0,5,DEVY82000330,2021-06-18,2021,5cfecbe4-f600-45e5-9038-ce820eedf3d1,85ef407e-241e-49fa-adf3-6320d34154fa,5cfecbe4-f600-45e5-9038-ce820eedf3d1,Official,5,deu,EP,,XW,4062851617352
|
4,278e3c67-b24b-4b70-94ce-374b9278e0e2,Immortal,Warpath of Disease,['Lorna Shore'],Lorna Shore,5,12,5,GBDHC2012004,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720
|
||||||
|
5,de7effa0-c4a7-4c05-8c06-432ebc0f396c,Immortal,Misery System,['Lorna Shore'],Lorna Shore,6,12,6,GBDHC2012005,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720
|
||||||
|
6,1d05cd2e-05e7-438c-a6da-4ed1c5403590,Immortal,Obsession,['Lorna Shore'],Lorna Shore,7,12,7,GBDHC2012006,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720
|
||||||
|
7,c61aaa70-4dde-4227-ba50-4d0f237e5100,Immortal,King Ov Deception,['Lorna Shore'],Lorna Shore,8,12,8,GBDHC2012007,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720
|
||||||
|
8,74452632-ad61-45b5-8ef0-6c60a2d6a424,Immortal,Darkest Spawn,['Lorna Shore'],Lorna Shore,9,12,9,GBCEJ1800173,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720
|
||||||
|
9,4e72d965-f27b-454c-9fd6-45d029eee638,Immortal,Relentless Torment,['Lorna Shore'],Lorna Shore,10,12,10,GBDHC2012008,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720
|
||||||
|
|
@ -1,5 +1,9 @@
|
|||||||
,id,album,title,artist,album_artist,tracknumber,albumsort,titlesort,isrc,date,year,musicbrainz_artistid,musicbrainz_albumid,musicbrainz_albumartistid,musicbrainz_albumstatus,total_tracks,language,musicbrainz_albumtype,compilation,releasecountry,barcode,url,src
|
,id,album,title,artist,album_artist,tracknumber,albumsort,titlesort,isrc,date,year,musicbrainz_artistid,musicbrainz_albumid,musicbrainz_albumartistid,musicbrainz_albumstatus,total_tracks,language,musicbrainz_albumtype,compilation,releasecountry,barcode,url,src
|
||||||
0,e061d47e-5c23-4d90-a707-c292b94dc1d6,Was ist bloss mit Hauke los,Glücklich sein,"['Crystal F', 'Tamas']",Crystal F,2,0,2,DEVY82000327,2021-06-18,2021,5cfecbe4-f600-45e5-9038-ce820eedf3d1,85ef407e-241e-49fa-adf3-6320d34154fa,5cfecbe4-f600-45e5-9038-ce820eedf3d1,Official,5,deu,EP,,XW,4062851617352,https://www.youtube.com/watch?v=FH6e3guHVOk,youtube
|
0,c712d6e8-54ff-4287-a287-aad9986e862a,Immortal,Death Portrait,['Lorna Shore'],Lorna Shore,2,12,2,GBDHC2012002,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720,https://musify.club/track/dl/12475072/lorna-shore-death-portrait.mp3,musify
|
||||||
1,5e82173e-61a5-4eb3-94c0-ac268e94ee76,Was ist bloss mit Hauke los,Knifeboys,"['Crystal F', 'Dollar John', 'MXP']",Crystal F,3,0,3,DEVY82000328,2021-06-18,2021,5cfecbe4-f600-45e5-9038-ce820eedf3d1,85ef407e-241e-49fa-adf3-6320d34154fa,5cfecbe4-f600-45e5-9038-ce820eedf3d1,Official,5,deu,EP,,XW,4062851617352,https://www.youtube.com/watch?v=4AyVHYfiQLo,youtube
|
1,4fcc8206-3cf7-4215-ac6e-62d1f4df8ad5,Immortal,Hollow Sentence,['Lorna Shore'],Lorna Shore,4,12,4,GBDHC2012003,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720,https://musify.club/track/dl/12475074/lorna-shore-hollow-sentence.mp3,musify
|
||||||
2,f5f7908c-6bae-4805-97ac-581d73e3fe2c,Was ist bloss mit Hauke los,Mit App,"['Crystal F', 'KDM Shey']",Crystal F,4,0,4,DEVY82000329,2021-06-18,2021,5cfecbe4-f600-45e5-9038-ce820eedf3d1,85ef407e-241e-49fa-adf3-6320d34154fa,5cfecbe4-f600-45e5-9038-ce820eedf3d1,Official,5,deu,EP,,XW,4062851617352,https://www.youtube.com/watch?v=TkpZ9o5r18I,youtube
|
2,278e3c67-b24b-4b70-94ce-374b9278e0e2,Immortal,Warpath of Disease,['Lorna Shore'],Lorna Shore,5,12,5,GBDHC2012004,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720,https://musify.club/track/dl/12475075/lorna-shore-warpath-of-disease.mp3,musify
|
||||||
3,dfc48144-1f04-4c2d-a98f-1928958efc32,Was ist bloss mit Hauke los,So spielt das Leben,"['Crystal F', 'Dollar John', 'Taha']",Crystal F,5,0,5,DEVY82000330,2021-06-18,2021,5cfecbe4-f600-45e5-9038-ce820eedf3d1,85ef407e-241e-49fa-adf3-6320d34154fa,5cfecbe4-f600-45e5-9038-ce820eedf3d1,Official,5,deu,EP,,XW,4062851617352,https://www.youtube.com/watch?v=ZYOCi-lN7ak,youtube
|
3,de7effa0-c4a7-4c05-8c06-432ebc0f396c,Immortal,Misery System,['Lorna Shore'],Lorna Shore,6,12,6,GBDHC2012005,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720,https://musify.club/track/dl/12475076/lorna-shore-misery-system.mp3,musify
|
||||||
|
4,1d05cd2e-05e7-438c-a6da-4ed1c5403590,Immortal,Obsession,['Lorna Shore'],Lorna Shore,7,12,7,GBDHC2012006,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720,https://www.youtube.com/watch?v=HxDKD0AL0Pg,youtube
|
||||||
|
5,c61aaa70-4dde-4227-ba50-4d0f237e5100,Immortal,King Ov Deception,['Lorna Shore'],Lorna Shore,8,12,8,GBDHC2012007,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720,https://musify.club/track/dl/12475078/lorna-shore-king-ov-deception.mp3,musify
|
||||||
|
6,74452632-ad61-45b5-8ef0-6c60a2d6a424,Immortal,Darkest Spawn,['Lorna Shore'],Lorna Shore,9,12,9,GBCEJ1800173,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720,https://musify.club/track/dl/12475079/lorna-shore-darkest-spawn.mp3,musify
|
||||||
|
7,4e72d965-f27b-454c-9fd6-45d029eee638,Immortal,Relentless Torment,['Lorna Shore'],Lorna Shore,10,12,10,GBDHC2012008,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720,https://musify.club/track/dl/12475080/lorna-shore-relentless-torment.mp3,musify
|
||||||
|
|
@ -1,5 +1,9 @@
|
|||||||
,id,album,title,artist,album_artist,tracknumber,albumsort,titlesort,isrc,date,year,musicbrainz_artistid,musicbrainz_albumid,musicbrainz_albumartistid,musicbrainz_albumstatus,total_tracks,language,musicbrainz_albumtype,compilation,releasecountry,barcode,url,src,path,file,genre
|
,id,album,title,artist,album_artist,tracknumber,albumsort,titlesort,isrc,date,year,musicbrainz_artistid,musicbrainz_albumid,musicbrainz_albumartistid,musicbrainz_albumstatus,total_tracks,language,musicbrainz_albumtype,compilation,releasecountry,barcode,url,src,path,file,genre
|
||||||
0,e061d47e-5c23-4d90-a707-c292b94dc1d6,Was ist bloss mit Hauke los,Glücklich sein,"['Crystal F', 'Tamas']",Crystal F,2,0,2,DEVY82000327,2021-06-18,2021,5cfecbe4-f600-45e5-9038-ce820eedf3d1,85ef407e-241e-49fa-adf3-6320d34154fa,5cfecbe4-f600-45e5-9038-ce820eedf3d1,Official,5,deu,EP,,XW,4062851617352,https://www.youtube.com/watch?v=FH6e3guHVOk,youtube,horrorcore/Crystal F/Was ist bloss mit Hauke los,horrorcore/Crystal F/Was ist bloss mit Hauke los/Glücklich sein.mp3,horrorcore
|
0,c712d6e8-54ff-4287-a287-aad9986e862a,Immortal,Death Portrait,['Lorna Shore'],Lorna Shore,2,12,2,GBDHC2012002,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720,https://musify.club/track/dl/12475072/lorna-shore-death-portrait.mp3,musify,deathcore/Lorna Shore/Immortal,deathcore/Lorna Shore/Immortal/Death Portrait.mp3,deathcore
|
||||||
1,5e82173e-61a5-4eb3-94c0-ac268e94ee76,Was ist bloss mit Hauke los,Knifeboys,"['Crystal F', 'Dollar John', 'MXP']",Crystal F,3,0,3,DEVY82000328,2021-06-18,2021,5cfecbe4-f600-45e5-9038-ce820eedf3d1,85ef407e-241e-49fa-adf3-6320d34154fa,5cfecbe4-f600-45e5-9038-ce820eedf3d1,Official,5,deu,EP,,XW,4062851617352,https://www.youtube.com/watch?v=4AyVHYfiQLo,youtube,horrorcore/Crystal F/Was ist bloss mit Hauke los,horrorcore/Crystal F/Was ist bloss mit Hauke los/Knifeboys.mp3,horrorcore
|
1,4fcc8206-3cf7-4215-ac6e-62d1f4df8ad5,Immortal,Hollow Sentence,['Lorna Shore'],Lorna Shore,4,12,4,GBDHC2012003,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720,https://musify.club/track/dl/12475074/lorna-shore-hollow-sentence.mp3,musify,deathcore/Lorna Shore/Immortal,deathcore/Lorna Shore/Immortal/Hollow Sentence.mp3,deathcore
|
||||||
2,f5f7908c-6bae-4805-97ac-581d73e3fe2c,Was ist bloss mit Hauke los,Mit App,"['Crystal F', 'KDM Shey']",Crystal F,4,0,4,DEVY82000329,2021-06-18,2021,5cfecbe4-f600-45e5-9038-ce820eedf3d1,85ef407e-241e-49fa-adf3-6320d34154fa,5cfecbe4-f600-45e5-9038-ce820eedf3d1,Official,5,deu,EP,,XW,4062851617352,https://www.youtube.com/watch?v=TkpZ9o5r18I,youtube,horrorcore/Crystal F/Was ist bloss mit Hauke los,horrorcore/Crystal F/Was ist bloss mit Hauke los/Mit App.mp3,horrorcore
|
2,278e3c67-b24b-4b70-94ce-374b9278e0e2,Immortal,Warpath of Disease,['Lorna Shore'],Lorna Shore,5,12,5,GBDHC2012004,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720,https://musify.club/track/dl/12475075/lorna-shore-warpath-of-disease.mp3,musify,deathcore/Lorna Shore/Immortal,deathcore/Lorna Shore/Immortal/Warpath of Disease.mp3,deathcore
|
||||||
3,dfc48144-1f04-4c2d-a98f-1928958efc32,Was ist bloss mit Hauke los,So spielt das Leben,"['Crystal F', 'Dollar John', 'Taha']",Crystal F,5,0,5,DEVY82000330,2021-06-18,2021,5cfecbe4-f600-45e5-9038-ce820eedf3d1,85ef407e-241e-49fa-adf3-6320d34154fa,5cfecbe4-f600-45e5-9038-ce820eedf3d1,Official,5,deu,EP,,XW,4062851617352,https://www.youtube.com/watch?v=ZYOCi-lN7ak,youtube,horrorcore/Crystal F/Was ist bloss mit Hauke los,horrorcore/Crystal F/Was ist bloss mit Hauke los/So spielt das Leben.mp3,horrorcore
|
3,de7effa0-c4a7-4c05-8c06-432ebc0f396c,Immortal,Misery System,['Lorna Shore'],Lorna Shore,6,12,6,GBDHC2012005,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720,https://musify.club/track/dl/12475076/lorna-shore-misery-system.mp3,musify,deathcore/Lorna Shore/Immortal,deathcore/Lorna Shore/Immortal/Misery System.mp3,deathcore
|
||||||
|
4,1d05cd2e-05e7-438c-a6da-4ed1c5403590,Immortal,Obsession,['Lorna Shore'],Lorna Shore,7,12,7,GBDHC2012006,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720,https://www.youtube.com/watch?v=HxDKD0AL0Pg,youtube,deathcore/Lorna Shore/Immortal,deathcore/Lorna Shore/Immortal/Obsession.mp3,deathcore
|
||||||
|
5,c61aaa70-4dde-4227-ba50-4d0f237e5100,Immortal,King Ov Deception,['Lorna Shore'],Lorna Shore,8,12,8,GBDHC2012007,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720,https://musify.club/track/dl/12475078/lorna-shore-king-ov-deception.mp3,musify,deathcore/Lorna Shore/Immortal,deathcore/Lorna Shore/Immortal/King Ov Deception.mp3,deathcore
|
||||||
|
6,74452632-ad61-45b5-8ef0-6c60a2d6a424,Immortal,Darkest Spawn,['Lorna Shore'],Lorna Shore,9,12,9,GBCEJ1800173,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720,https://musify.club/track/dl/12475079/lorna-shore-darkest-spawn.mp3,musify,deathcore/Lorna Shore/Immortal,deathcore/Lorna Shore/Immortal/Darkest Spawn.mp3,deathcore
|
||||||
|
7,4e72d965-f27b-454c-9fd6-45d029eee638,Immortal,Relentless Torment,['Lorna Shore'],Lorna Shore,10,12,10,GBDHC2012008,2020-01-31,2020,e86fc1f5-d632-44b2-8aea-38f83aadffe8,ab944f00-12f6-4247-b265-d5152e6b9302,e86fc1f5-d632-44b2-8aea-38f83aadffe8,Official,10,eng,Album,,US,194397114720,https://musify.club/track/dl/12475080/lorna-shore-relentless-torment.mp3,musify,deathcore/Lorna Shore/Immortal,deathcore/Lorna Shore/Immortal/Relentless Torment.mp3,deathcore
|
||||||
|
|
Loading…
Reference in New Issue
Block a user