From 63afd96332ef2100b6a33111ffa74942a37958ec Mon Sep 17 00:00:00 2001 From: vtwarrior25 Date: Tue, 4 Apr 2023 22:03:45 -0400 Subject: [PATCH 1/6] Added write_yapl and csv_to_yapl --- README.md | 12 +++--- beetsplug/yapl.py | 93 ++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 99 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0f8fe59..decff23 100644 --- a/README.md +++ b/README.md @@ -54,14 +54,16 @@ plugins: - yapl yapl: - input_path: ~/Music/playlists/ - output_path: ~/Music/playlists/ + yapl_path: ~/Music/playlists/ + csv_path: ~/Music/playlists/ + m3u_path: ~/Music/playlists/ relative: true ``` -`input_path: path` decides what directory yapl will search for yapl files. -`output_path: path` decides where to output the compiled m3u files. Can be the same as input_path. -`relative: bool` controls whether to use absolute or relative filepaths in the outputted M3U files. +- `yapl_path: path`: Decides what directory yapl will search for yapl files and where created yapl files will be placed. Can be the same as m3u_path and csv_path. +- `csv_path: path`: Decides what directory yapl will search for csv files. Can be the same as m3u_path and csv_path. +- `m3u_path: path`: Decides where to output the compiled m3u files or grab input m3u files. Can be the same as yapl_path and csv_path. +- `relative: bool`: Controls whether to use absolute or relative filepaths in the outputted M3U files. #### Run diff --git a/beetsplug/yapl.py b/beetsplug/yapl.py index a16d2ac..351cd06 100644 --- a/beetsplug/yapl.py +++ b/beetsplug/yapl.py @@ -4,12 +4,20 @@ import yaml import os from pathlib import Path +# csv imports +import io +import csv + class Yapl(BeetsPlugin): def commands(self): compile_command = Subcommand('yapl', help='compile yapl playlists') compile_command.func = self.compile - return [compile_command] + m3utoyapl_command = Subcommand('m3u2', help='convert m3u playlists to yapl') + m3utoyapl_command.func = self.m3u_to_yapl + csvtoyapl_command = Subcommand('csv', help='convert csv to yapl') + csvtoyapl_command.func = self.csv_to_yapl + return [csvtoyaplcommand, compile_command, m3utoyapl_command] def write_m3u(self, filename, playlist, items): print(f"Writing {filename}") @@ -53,4 +61,87 @@ def compile(self, lib, opts, args): else : print(f"Multiple results for query: {query}") output_file = Path(yaml_file).stem + ".m3u" self.write_m3u(output_file, playlist, items) + + ## Write out the data from csv_to_yaml out to .yaml files + def write_yapl(self, filename, data): + output_path = Path(self.config['yaml_output_path'].as_filename()) + with io.open(output_path, 'w', encoding='utf8') as outfile: + yaml.dump(data, outfile, default_flow_style=False, allow_unicode=True) + + ## Take all csv files located at the input path and create yaml representations for them + def csv_to_yapl(self, lib, opts, args): + input_path = Path(self.config['csv_input_path'].as_filename()) + + csv_files = [f for f in os.listdir(input_path) if f.endswith('.csv')] + for csv_file in csv_files: + + print(f"Parsing {csv_file}") + with io.open(input_path / csv_file, 'r', encoding='utf8') as file: + playlist = csv.DictReader(file) + output_name = Path(csv_file).stem + output_file = output_name + ".yaml" + # Defining the dictionary and list that will go inside the dictionary + data = dict() + datalist = list() + # Adding the high level parts of the dict thing + data["name"] = output_name + + print(playlist.fieldnames) + + for row in playlist: + #pprint.pprint(row) + tempdict = dict() + + # Putting values into the temporary dictionary + tempdict["filename"] = row["Filename"] + tempdict["title"] = row["Title"] + tempdict["artist"] = row["Artist"] + tempdict["album"] = row["Album"] + + datalist.append(tempdict) + + print("Export path: " + str(output_file)) + data["tracks"] = datalist + self.write_yaml(self, output_file, data) + + ## Take all m3u files located at the input path and create yaml representations for them + def m3u_to_yapl (self, lib, opts, args): + input_path = Path(self.config['m3u_input_path'].as_filename()) + + m3u_files = [f for f in os.listdir(input_path) if f.endswith('.m3u')] + for m3u_file in m3u_files: + + print(f"Parsing {m3u_file}") + with io.open(input_path / m3u_file, 'r', encoding='utf8') as file: + if (f.readline() = "#EXTM3U\n": + for line in f: + if + + + + output_name = Path(csv_file).stem + output_file = output_name + ".yaml" + # Defining the dictionary and list that will go inside the dictionary + data = dict() + datalist = list() + # Adding the high level parts of the dict thing + data["name"] = output_name + + print(playlist.fieldnames) + + for row in playlist: + #pprint.pprint(row) + tempdict = dict() + + # Putting values into the temporary dictionary + tempdict["filename"] = row["Filename"] + tempdict["title"] = row["Title"] + tempdict["artist"] = row["Artist"] + tempdict["album"] = row["Album"] + + datalist.append(tempdict) + + print("Export path: " + str(output_file)) + data["tracks"] = datalist + self.write_yaml(self, output_file, data) From f121e2209df33c64d5cf9573077f4ef52c0df801 Mon Sep 17 00:00:00 2001 From: vtwarrior25 Date: Tue, 4 Apr 2023 23:36:07 -0400 Subject: [PATCH 2/6] Started work on m3u_to_yapl --- beetsplug/yapl.py | 37 +- setup.py | 1 + test.py | 87 ++ test/csv_input/thingsonphone2.csv | 174 +++ test/csv_output/thingsonphone2.yaml | 1733 +++++++++++++++++++++++++++ test/m3u_input/thingsonphone2.m3u8 | 179 +++ 6 files changed, 2197 insertions(+), 14 deletions(-) create mode 100644 test.py create mode 100644 test/csv_input/thingsonphone2.csv create mode 100644 test/csv_output/thingsonphone2.yaml create mode 100644 test/m3u_input/thingsonphone2.m3u8 diff --git a/beetsplug/yapl.py b/beetsplug/yapl.py index 351cd06..dc12bc8 100644 --- a/beetsplug/yapl.py +++ b/beetsplug/yapl.py @@ -7,17 +7,19 @@ # csv imports import io import csv +import m3u8 class Yapl(BeetsPlugin): def commands(self): compile_command = Subcommand('yapl', help='compile yapl playlists') compile_command.func = self.compile - m3utoyapl_command = Subcommand('m3u2', help='convert m3u playlists to yapl') - m3utoyapl_command.func = self.m3u_to_yapl + #m3utoyapl_command = Subcommand('m3u2', help='convert m3u playlists to yapl') + #m3utoyapl_command.func = self.m3u_to_yapl csvtoyapl_command = Subcommand('csv', help='convert csv to yapl') csvtoyapl_command.func = self.csv_to_yapl - return [csvtoyaplcommand, compile_command, m3utoyapl_command] + return [csvtoyaplcommand, compile_command] + #return [csvtoyaplcommand, compile_command, m3utoyapl_command] def write_m3u(self, filename, playlist, items): print(f"Writing {filename}") @@ -78,6 +80,7 @@ def csv_to_yapl(self, lib, opts, args): print(f"Parsing {csv_file}") with io.open(input_path / csv_file, 'r', encoding='utf8') as file: playlist = csv.DictReader(file) + playlist_fields = playlist.fieldnames output_name = Path(csv_file).stem output_file = output_name + ".yaml" # Defining the dictionary and list that will go inside the dictionary @@ -86,25 +89,30 @@ def csv_to_yapl(self, lib, opts, args): # Adding the high level parts of the dict thing data["name"] = output_name - print(playlist.fieldnames) + print(playlist_fields) for row in playlist: #pprint.pprint(row) tempdict = dict() + for field in playlist_fields: + lowerfield = field.lower() + if "path" not in lowerfield: + tempdict[lowerfield] = row[field] # Putting values into the temporary dictionary - tempdict["filename"] = row["Filename"] - tempdict["title"] = row["Title"] - tempdict["artist"] = row["Artist"] - tempdict["album"] = row["Album"] + #tempdict["filename"] = row["Filename"] + #tempdict["title"] = row["Title"] + #tempdict["artist"] = row["Artist"] + #tempdict["album"] = row["Album"] datalist.append(tempdict) print("Export path: " + str(output_file)) data["tracks"] = datalist - self.write_yaml(self, output_file, data) + self.write_yapl(self, output_file, data) ## Take all m3u files located at the input path and create yaml representations for them + def m3u_to_yapl (self, lib, opts, args): input_path = Path(self.config['m3u_input_path'].as_filename()) @@ -112,10 +120,12 @@ def m3u_to_yapl (self, lib, opts, args): for m3u_file in m3u_files: print(f"Parsing {m3u_file}") - with io.open(input_path / m3u_file, 'r', encoding='utf8') as file: - if (f.readline() = "#EXTM3U\n": - for line in f: - if + playlist = m3u8.load(m3u_file) + print(playlist.segments) + #with io.open(input_path / m3u_file, 'r', encoding='utf8') as file: + # if (f.readline() = "#EXTM3U\n": + # for line in f: + # if @@ -144,4 +154,3 @@ def m3u_to_yapl (self, lib, opts, args): print("Export path: " + str(output_file)) data["tracks"] = datalist self.write_yaml(self, output_file, data) - diff --git a/setup.py b/setup.py index 6a6f162..272e67c 100644 --- a/setup.py +++ b/setup.py @@ -18,6 +18,7 @@ install_requires=[ 'beets>=1.4.7', + 'py-m3u>=0.0.1', ], classifiers=[ diff --git a/test.py b/test.py new file mode 100644 index 0000000..2a8121e --- /dev/null +++ b/test.py @@ -0,0 +1,87 @@ +from beets.plugins import BeetsPlugin +from beets.ui import Subcommand +from os.path import relpath +import yaml +import os +from pathlib import Path +# csv imports +import io +import csv +import m3u8 + + +class Yapl: + + ## Write out the data from csv_to_yaml out to .yaml files + def write_yapl(self, filename, data): + #output_path = Path(self.config['yaml_output_path'].as_filename()) + output_path = Path("./test/csv_output/" + filename) + + with io.open(output_path, 'w', encoding='utf8') as outfile: + yaml.dump(data, outfile, default_flow_style=False, allow_unicode=True) + + ## Take all csv files located at the input path and create yaml representations for them + def csv_to_yapl(self): + #input_path = Path(self.config['csv_input_path'].as_filename()) + input_path = Path('./test/csv_input') + + csv_files = [f for f in os.listdir(input_path) if f.endswith('.csv')] + for csv_file in csv_files: + + print(f"Parsing {csv_file}") + with io.open(input_path / csv_file, 'r', encoding='utf8') as file: + #print("This thing is awesome sauce: " + str(input_path / csv_file)) + playlist = csv.DictReader(file) + playlist_fields = playlist.fieldnames + output_name = Path(csv_file).stem + output_file = output_name + ".yaml" + # Defining the dictionary and list that will go inside the dictionary + data = dict() + datalist = list() + # Adding the high level parts of the dict thing + data["name"] = output_name + + print(playlist_fields) + + for row in playlist: + #pprint.pprint(row) + tempdict = dict() + for field in playlist_fields: + lowerfield = field.lower() + if "path" not in lowerfield: + tempdict[lowerfield] = row[field] + + # Putting values into the temporary dictionary + #tempdict["filename"] = row["Filename"] + #tempdict["title"] = row["Title"] + #tempdict["artist"] = row["Artist"] + #tempdict["album"] = row["Album"] + + datalist.append(tempdict) + + print("Export path: " + str(output_file)) + data["tracks"] = datalist + self.write_yapl(self, output_file, data) + + + + def m3u_to_yapl (self): + input_path = Path('./test/m3u_input') + + m3u_files = [f for f in os.listdir(input_path) if f.endswith('.m3u8')] + for m3u_file in m3u_files: + print(f"Parsing {m3u_file}") + m3upath = str(Path(input_path) / Path(m3u_file)) + print(m3upath) + playlist = m3u8.load(m3upath) + print(playlist.files) + segmentlist = playlist.segments + print(segmentlist.__str__()) + print(segmentlist.uri) + #for segment in segmentlist: + # print(segment.uri) + # print(segment.base_uri) + +beans = Yapl +beans.csv_to_yapl(beans) +beans.m3u_to_yapl(beans) \ No newline at end of file diff --git a/test/csv_input/thingsonphone2.csv b/test/csv_input/thingsonphone2.csv new file mode 100644 index 0000000..40a31f4 --- /dev/null +++ b/test/csv_input/thingsonphone2.csv @@ -0,0 +1,174 @@ +Filename,Title,Artist,Album,Track,Year,Genre,Length,Size,Last Modified,Path +"[I Just] Died In Your Arms.mp3","(I Just) Died in Your Arms","Cutting Crew","Broadcast",6/10,2016,Pop,280,4.33 MB,12/15/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"♪ Diggy Diggy Hole.mp3","Diggy Diggy Hole","Yogscast","",,,,248,4.04 MB,6/17/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\" +"01 Everybody Wants to Rule the World.wma","Everybody Wants to Rule the World","Tears for Fears","Roots of Rock: New Wave",1,1998,Alternative,250,3.84 MB,5/24/2011,"E:\Captures\Audio Files\Music\Music_From_DadsOldLaptop\Roots of Rock- New Wave\" +"01 Man! I Feel Like a Woman!.mp3","Man! I Feel Like a Woman!","Shania Twain","Come On Over",1/16,1997,Country,234,3.66 MB,12/11/2022,"E:\Captures\Audio Files\Music\goodsongs2\" +"02 Waiting for a Star to Fall.m4a","Waiting for a Star to Fall","Boy Meets Girl","Reel Life",2,1988,Pop,271,10.02 MB,12/10/2022,"E:\Captures\Audio Files\Music\M4A Files\" +"2 Be Loved (Am I Ready).mp3","2 Be Loved (Am I Ready)","Lizzo","Special",4/12,2022,Pop/R&B,187,2.94 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"16 The Show Must Go On.wma","The Show Must Go On","Queen","The Platinum Collection",16,2000-11-13,Rock,264,4.14 MB,12/11/2022,"E:\Captures\Audio Files\Music\Music_From_DadsOldLaptop\Queen\The Platinum Collection, Vol. 1-3 Disc 2\" +"100 gecs - Dumbest Girl Alive.mp3","Dumbest Girl Alive","100 gecs","10000 Gecs",1/10,2023,Hyperpop,137,4.44 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" +"100 gecs - Frog On The Floor.mp3","Frog on the Floor","100 gecs","10000 Gecs",4/10,2023,Hyperpop,162,4.81 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" +"Adele - Rolling in the Deep.mp3","Rolling in the Deep","Adele","21",1/15,2011,british soul,228,7.10 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +"Aldrey - La Lista (Lyric Video Oficial) #LaLista.mp3","Aldrey - La Lista (Lyric Video Oficial) #LaLista","AldreyMusica","",,2013,,259,4.05 MB,6/3/2017,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Ariana Grande - 7 rings.mp3","7 rings","Ariana Grande","thank u, next",10/12,2019,dance pop,179,5.55 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +"Ariana Grande - Into You.mp3","Into You","Ariana Grande","Dangerous Woman",4/16,2016,dance pop,244,7.74 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +"Ariana Grande - One Last Time.mp3","One Last Time","Ariana Grande","My Everything",3/18,2014,dance pop,197,6.04 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +"Ariana Grande, Zedd - Break Free.mp3","Break Free","Ariana Grande/Zedd","My Everything (Deluxe)",5,2014-08-25,dance pop,214,5.98 MB,12/31/2021,"E:\Captures\Audio Files\Music\goodsongs4\" +"Ariana Grande, Zedd - Break Free.mp3","Break Free","Ariana Grande/Zedd","My Everything (Deluxe)",5,2014-08-25,dance pop,214,5.98 MB,12/31/2021,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +"Auli'i Cravalho - How Far I'll Go (from Moana_Official Video).mp3","How Far I’ll Go","Auliʻi Cravalho","Moana",4/40,2016,Musical,156,2.13 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\disneysongs\" +"Avicii - The Nights.mp3","The Nights","Avicii","The Nights",1/1,2014,dance pop,177,5.68 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +"Backstreet Boys - As Long as You Love Me.mp3","As Long as You Love Me","Backstreet Boys","Backstreet’s Back",2/14,1997,boy band,214,6.94 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" +"Backstreet Boys - I Want It That Way.mp3","I Want It That Way","Backstreet Boys","Millennium",2,1999-05-18,boy band,213,3.45 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" +"Backstreet Boys - Quit Playing Games (With My Heart).mp3","Quit Playing Games (With My Heart)","Backstreet Boys","Backstreet Boys",5/13,1996,boy band,234,7.06 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" +"Backstreet Boys - Show Me the Meaning of Being Lonely.mp3","Show Me the Meaning of Being Lonely","Backstreet Boys","Millennium",3/12,1999,boy band,237,3.73 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" +"Besos En Guerra.mp3","Besos en guerra","Morat & Juanes","Balas perdidas",3/12,2018,Latin Pop,232,3.76 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Best Song Ever.mp3","Best Song Ever","One Direction","Midnight Memories",1/14,2013,Pop,200,3.14 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" +"Billie Eilish - bad guy.mp3","bad guy","Billie Eilish","WHEN WE ALL FALL ASLEEP, WHERE DO WE GO?",2/14,2019,art pop,194,6.37 MB,12/10/2022,"E:\Captures\Audio Files\Music\goodsongs4\" +"Billy Joel - Uptown Girl.mp3","Uptown Girl (live)","Billy Joel","A Matter of Trust: The Bridge to Russia",21/27,2014,album rock,200,2.98 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" +"Bonnie Tyler - Total Eclipse of the Heart.mp3","Total Eclipse of the Heart","Bonnie Tyler","Definitive Collection",1/18,1995,europop,272,5.05 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" +"Bruno Mars - 24K Magic.mp3","24K Magic","Bruno Mars","24K Magic",1/9,2016,Pop,226,7.12 MB,3/8/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Bruno Mars - Locked out of Heaven.mp3","Locked Out of Heaven","Bruno Mars","Unorthodox Jukebox",2/10,2012,dance pop,234,7.52 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +"Carly Rae Jepsen - Call Me Maybe.mp3","Call Me Maybe","Carly Rae Jepsen","Kiss",3/13,2012,canadian pop,194,6.12 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +"Carly Rae Jepsen - Guitar String ⧸ Wedding Ring.mp3","Guitar String / Wedding Ring","Carly Rae Jepsen","Kiss",11/16,2012,Pop,207,6.31 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" +"Carly Rae Jepsen-Emotion.mp3","Emotion","Carly Rae Jepsen","Emotion",2/17,2020,Dance-Pop,197,6.27 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\" +"Carly Rae Jepsen-Felt This Way.mp3","Felt This Way","Carly Rae Jepsen","Dedicated Side B",3/12,2020,Indie Pop,217,6.84 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\" +"Carly Rae Jepsen-I Didn’t Just Come Here To Dance.mp3","I Didn’t Just Come Here to Dance","Carly Rae Jepsen","Emotion",14/17,2020,Dance-Pop,220,6.83 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\" +"Carly Rae Jepsen-Let’s Get Lost.mp3","Let’s Get Lost","Carly Rae Jepsen","Emotion",9/17,2020,Dance-Pop,194,6.16 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\" +"Carly Rae Jepsen-Solo.mp3","Solo","Carly Rae Jepsen","Dedicated Side B",11/12,2020,Indie Pop,196,6.15 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\" +"Carly Rae Jepsen-This Love Isn't Crazy.mp3","This Love Isn’t Crazy","Carly Rae Jepsen","Dedicated Side B",1/12,2020,Indie Pop,233,7.43 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\" +"Cascada - Everytime We Touch (Fallen Superhero Hardstyle Remix).mp3","","","Hardstyle v1",,,Hardstyle,219,3.41 MB,6/20/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\" +"Cher - Believe.mp3","Believe","Cher","Believe",1/10,1998,dance pop,239,7.65 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" +"Cher - If I Could Turn Back Time.mp3","If I Could Turn Back Time","Cher","Heart of Stone",1/12,1989,dance pop,241,3.70 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\My 80's Playlist\" +"Childish Gambino, Donald Glover-3005.mp3","3005","Childish Gambino, Donald Glover","Because the Internet",,2022,,234,7.92 MB,9/1/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Clean Bandit ft. Demi Lovato - Solo (Twisted Melodiez Bootleg) [Free Release].mp3","","","Hardstyle v1",,,Hardstyle,181,2.87 MB,6/20/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\" +"Cole Swindell - She Had Me At Heads Carolina.mp3","She Had Me at Heads Carolina","Cole Swindell","Stereotype",4/13,2022,Country,206,6.54 MB,3/16/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\" +"Crazier Than You.mp3","Crazier Than You","Andrew Lippa","The Addams Family",15/21,2010,Musical,171,5.41 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\" +"Cuando Nadie Ve.mp3","Cuando nadie ve","Morat","Cuando nadie ve",1/1,2018,Latin Pop,219,3.55 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Cut To The Feeling.mp3","Cut to the Feeling","Carly Rae Jepsen","Cut to the Feeling",1/2,2017,Pop,208,3.35 MB,12/15/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Da Tweekaz - Frozen (Disney Tool) (Official Preview).mp3","","","Hardstyle v1",,,Hardstyle,228,3.44 MB,6/20/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\" +"Dua Lipa - Cool.mp3","Cool","Dua Lipa","Future Nostalgia",3/13,2020,Dance-Pop,210,6.69 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" +"Dua Lipa - Don't Start Now.mp3","Don’t Start Now","Dua Lipa","Future Nostalgia",2/13,2020,Dance-Pop,183,5.90 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" +"Dua Lipa - Hallucinate.mp3","Hallucinate","Dua Lipa","Future Nostalgia",7/13,2020,Dance-Pop,209,6.34 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" +"Dua Lipa - IDGAF.mp3","IDGAF","Dua Lipa","Dua Lipa (deluxe edition)",5/17,2017,dance pop,218,7.09 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +"Dua Lipa - Love Again (Official Music Video).mp3","Love Again","Dua Lipa","40 Tubes 2022",5/20,2021,Dance-Pop,262,4.25 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\" +"Dua Lipa, DaBaby - Levitating (feat. DaBaby).mp3","Levitating","Dua Lipa feat. DaBaby","Future Nostalgia",12/13,2020,Dance-Pop,203,6.49 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" +"Ed Sheeran - Castle on the Hill.mp3","Castle on the Hill","Ed Sheeran","÷ (Divide)",2/12,2017,pop,261,8.63 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +"Elton John - I'm Still Standing.mp3","I'm Still Standing","Elton John","Rocket Man: The Definitive Hits",17/18,2007,glam rock,185,2.80 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" +"Erasure - A Little Respect - 2009 Remastered Version.mp3","A Little Respect - 2009 Remastered Version","Erasure","The Innocents",1,1988-04-18,dance pop,213,3.48 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" +"Eric Church - Round Here Buzz.mp3","Round Here Buzz","Eric Church","Mr. Misunderstood",6/10,2016,contemporary country,216,3.32 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Good Country\" +"Estelle - American Boy, Lyrics.mp3","American Boy","Estelle feat. Kanye West","Het beste uit de Qmusic Millennium Top 1000: 2000–2009",3/20,2009,,278,4.30 MB,12/9/2022,"E:\Captures\Audio Files\Music\2000'sThrowbacks\" +"Extreme - More Than Words.mp3","More Than Words","Extreme","Extreme II: Pornograffitti (A Funked Up Fairy Tale)",5/13,1990,album rock,334,8.82 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" +"Faith Hill - Breathe.mp3","Breathe","Faith Hill","Breathe",4/14,1999,Country,250,8.07 MB,3/16/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"George Michael-Careless Whisper.mp3","Careless Whisper","George Michael","Careless Whisper",1/2,1984,Pop,300,10.23 MB,3/16/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Getaway Car.mp3","Getaway Car","Taylor Swift","reputation",9/15,2018,Pop,234,3.72 MB,12/15/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Glimpse of Us.mp3","Glimpse of Us","Joji","Bravo Hits 118",7/24,2022,Pop,233,3.61 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\" +"Go West - The King of Wishful Thinking.mp3","The King of Wishful Thinking","Go West","Indian Summer",6/13,1992,mellow gold,242,7.47 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" +"Gotye - Somebody That I Used To Know (Lyrics).mp3","Somebody That I Used to Know","Gotye","Promo Only: Modern Rock Radio, January 2012",,,,306,4.68 MB,6/21/2021,"E:\Captures\Audio Files\Music\2000'sThrowbacks\" +"Heads Carolina, Tails California.mp3","Heads Carolina, Tails California","Jo Dee Messina","Greatest Hits",3/15,2003,Country,210,3.44 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\" +"Huey Lewis & The News - The Power Of Love.mp3","The Power of Love","Huey Lewis & the News","Greatest Hits",3/21,2006,album rock,237,3.83 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" +"I Will Survive.mp3","I Will Survive","Gloria Gaynor","Love Tracks",5/13,2013,Disco,296,5.08 MB,12/15/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Idina Menzel, AURORA - Into the Unknown (From 'Frozen 2').mp3","Into the Unknown","Idina Menzel & AURORA","Frozen II",3/11,2019,Pop,209,2.93 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\disneysongs\" +"Jay Sean, Lil Wayne - Down.mp3","Down","Jay Sean feat. Lil Wayne","All or Nothing",3/14,2009,dance pop,214,3.44 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" +"Jesse & Joy, J Balvin - Mañana Es Too Late.mp3","Mañana es Too Late","Jesse & Joy and J Balvin","Mañana es Too Late",1/1,2019,latin,196,3.23 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Johann Pachelbel - Canon In D (Jatimatic Hardstyle Bootleg) _ HQ Videoclip.mp3","Canon In D - Jatimatic Remix","Stacey Lee May","Canon In D (Jatimatic Remix)",1/1,2021,Hardstyle,242,3.75 MB,12/9/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\" +"Jonas Blue, Jack & Jack - Rise.mp3","Rise","Jonas Blue feat. Jack & Jack","Blue",11/15,2018,Electronic,194,6.32 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Journey - Don't Stop Believin'.mp3","Don't Stop Believin'","Journey","The Essential Journey",2,2001-09-19,album rock,250,4.11 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" +"Juan Gabriel - No Tengo Dinero (Cover Audio).mp3","No tengo dinero","Juan Gabriel","Roma: Original Motion Picture Soundtrack",3/19,2018,Ballad/Danzón/Latin/Pop/Ranchera,187,3.10 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Juanes - La Camisa Negra.mp3","Juanes - La Camisa Negra","JuanesVEVO","",,2009,,247,8.31 MB,9/4/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Just The Way You Are- Bruno Mars (Lyrics on Screen).mp3","Just the Way You Are","Bruno Mars","RTL Hits 2011",3/20,2011,,213,3.27 MB,12/9/2022,"E:\Captures\Audio Files\Music\2000'sThrowbacks\" +"Justin Timberlake - Sexy Back [Lyrics].mp3","Sexyback","Justin Timberlake feat. Timbaland","Nachtschicht, Volume 42",7/20,2011,,239,3.74 MB,12/9/2022,"E:\Captures\Audio Files\Music\2000'sThrowbacks\" +"Kanye West - Heartless.mp3","Heartless","Kanye West","808s & Heartbreak",3/12,2008,chicago rap,213,3.54 MB,2/5/2023,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" +"Katy Perry - Firework.mp3","Firework","Katy Perry","Teenage Dream",4/14,2010,dance pop,228,7.19 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +"Katy Perry - Teenage Dream.mp3","Teenage Dream","Katy Perry","Teenage Dream",1/14,2010,dance pop,230,3.74 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" +"Katy Perry, Snoop Dogg - California Gurls.mp3","California Gurls","Katy Perry feat. Snoop Dogg","Teenage Dream",3/14,2010,dance pop,237,3.70 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" +"Kesha - TiK ToK.mp3","TiK ToK","Ke$ha","Animal",2/18,2010,dance pop,202,3.13 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" +"Kesha - Your Love Is My Drug.mp3","Your Love Is My Drug","Ke$ha","Animal",1/18,2010,dance pop,190,3.01 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" +"Kiss - I Was Made For Lovin' You.mp3","I Was Made for Lovin’ You","KISS","KISSWORLD: The Best of KISS",3/20,2019,Rock,238,3.51 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\" +"Lady Gaga - Poker Face.mp3","Poker Face","Lady Gaga","The Fame Monster (deluxe)",12/22,2009,dance pop,239,3.89 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" +"Laura Branigan - Gloria.mp3","Gloria","Laura Branigan","Branigan",2/9,1982,dance rock,292,4.63 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" +"Leave The Door Open.mp3","Leave the Door Open","Silk Sonic","An Evening With Silk Sonic",2/9,2022,Contemporary R&B/Soul,242,3.78 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Lil Nas X, Jack Harlow - INDUSTRY BABY.mp3","INDUSTRY BABY","Lil Nas X & Jack Harlow","MONTERO",3/15,2021,Pop,212,7.01 MB,3/16/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Linkin Park-In the End.mp3","In the End","Linkin Park","Hybrid Theory",8/12,2013,Nu Metal,217,6.88 MB,3/1/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" +"Lionel Richie - Dancing On The Ceiling.mp3","Dancing On The Ceiling","Lionel Richie","Dancing On The Ceiling",1,1986,adult standards,276,4.59 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" +"Little Mix - Black Magic.mp3","Black Magic","Little Mix","Now That's What I Call Music! 91",5,2015-07-24,dance pop,212,6.87 MB,12/31/2021,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +"Lizzo - About Damn Time (Lyrics).mp3","About Damn Time","Lizzo","Bravo Hits 118",18/24,2022,Pop,191,3.13 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Lonestar - Amazed.mp3","Amazed","Lonestar","16 Biggest Hits",7/16,2006,contemporary country,241,7.87 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" +"Luis Fonsi, Demi Lovato ‒ Echame La Culpa (Lyrics).mp3","Luis Fonsi, Demi Lovato ‒ Echame La Culpa (Lyrics)","Taz Network","",,2017,,189,3.73 MB,12/1/2019,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Luke Combs - The Kind of Love We Make.mp3","The Kind of Love We Make","Luke Combs","Growin’ Up",3/12,2022,,224,7.11 MB,3/16/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\" +"lukebryan_playitagain_notmyjugremix.mp3","Play It Again (NotMyJug Remix)","Luke Bryan, NotMyJug","Audacious Remixes",,2018,,197,4.51 MB,11/27/2022,"E:\Captures\Audio Files\Music\nickremixes\" +"Madonna - Like a Prayer.mp3","Like a Prayer","Madonna","Like a Prayer",1/11,1989,dance pop,342,5.84 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" +"MAGIC! - Rude.mp3","Rude","MAGIC!","Don't Kill the Magic",1/11,2014,reggae fusion,225,7.13 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +"Marianas Trench - Desperate Measures.mp3","Desperate Measures","Marianas Trench","Ever After",5/12,2014,Pop/Pop Rock/Power Pop/Rock,257,4.03 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\" +"Marianas Trench - Haven't Had Enough.mp3","Haven't Had Enough","Marianas Trench","Ever After",2/12,2014,Pop/Pop Rock/Power Pop/Rock,246,3.57 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\" +"Me And My Broken Heart.mp3","Me and My Broken Heart","Rixton","Now That’s What I Call Music! 51",13/21,2014,Pop,194,3.17 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\" +"Meat Loaf - I'd Do Anything For Love (But I Won't Do That) - Single Edit.mp3","I’d Do Anything for Love (But I Won’t Do That) (single edit)","Meat Loaf","Bat Out of Hell II: Back Into Hell",2/11,2022,album rock,317,10.29 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" +"Morgan Wallen - Last Night.mp3","Last Night","Morgan Wallen","One Thing at a Time",2/18,2023,Country,164,5.41 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" +"My Chemical Romance - Welcome to the Black Parade.mp3","Welcome to the Black Parade","My Chemical Romance","The Black Parade",5/14,2006,emo,313,5.74 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" +"Naked Eyes - Always Something There To Remind Me (Official Video).mp3","Always Something There to Remind Me","Naked Eyes","The Best 80s Modern Rock Album... Ever!",10/16,2002,Rock,201,3.12 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\" +"Natasha Bedingfield - Unwritten.mp3","Unwritten","Natasha Bedingfield","Unwritten",4/11,2004,dance pop,262,4.58 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" +"Nightcore_018_Nightcore - Everytime We Touch.mp3","Nightcore - Everytime We Touch","NightCore","Nightcore",018,2012-12-24T18,Nightcore,186,2.89 MB,12/24/2012,"E:\Captures\Audio Files\Music\historystuff\Nightcore\" +"Nightcore_020_Nightcore - Bad boy.mp3","Nightcore - Bad boy","NightCore","Nightcore",020,2012-12-25T13,Nightcore,156,2.49 MB,12/25/2012,"E:\Captures\Audio Files\Music\historystuff\Nightcore\" +"Nightcore_204_Nightcore - Gotta Be Somebody.mp3","Nightcore - Gotta Be Somebody","Sanuksanan Nightcore P.1","Nightcore",204,2014-12-10T08,Nightcore,222,3.46 MB,12/10/2014,"E:\Captures\Audio Files\Music\historystuff\Nightcore\" +"Once And For All.mp3","Once and for All","Alan Menken","Newsies: The Musical",16/20,2012,Musical,241,7.70 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\" +"One Direction - Story of My Life.mp3","Story of My Life","One Direction","Midnight Memories (Deluxe)",2,2013-11-25,boy band,246,7.22 MB,12/31/2021,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +"Panic! At The Disco - I Write Sins Not Tragedies.mp3","I Write Sins Not Tragedies","Panic! at the Disco","A Fever You Can’t Sweat Out",10/13,2005,baroque pop,188,3.07 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" +"Panic! At The Disco-Into the Unknown (Panic! At The Disco Version).mp3","Into the Unknown (Panic! at the Disco version)","Panic! at the Disco","Frozen II",9/11,2019,Pop,187,2.93 MB,3/16/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\disneysongs\" +"Paramore - Misery Business.mp3","Misery Business","Paramore","RIOT!",4/11,2007,Rock,212,7.01 MB,3/28/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Paul Simon - You Can Call Me Al.mp3","You Can Call Me Al","Paul Simon","Graceland",6/11,1986,classic rock,282,5.36 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" +"Peabo Bryson, Regina Belle - A Whole New World (Aladdin's Theme).mp3","A Whole New World (Aladdin's Theme)","Peabo Bryson/Regina Belle","Aladdin (Original Motion Picture Soundtrack)",21,1992-01-01,adult standards,250,7.50 MB,12/15/2021,"E:\Captures\Audio Files\Music\spotifystuff\90s\" +"Phil Collins - Against All Odds (Take a Look at Me Now) - 2016 Remaster.mp3","Against All Odds (Take a Look at Me Now) - 2016 Remaster","Phil Collins","The Singles (Expanded)",10,2016-10-14,mellow gold,209,3.40 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" +"Phil Collins - You'll Be In My Heart.mp3","You’ll Be in My Heart","Phil Collins","Tarzan: Original Soundtrack Brazil",15/15,1999,mellow gold,257,8.62 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" +"Play It Again.mp3","Play It Again","Luke Bryan","Crash My Party",9/13,2013,Contemporary Country,227,3.70 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\" +"Presiento.mp3","Presiento","Morat con Aitana","Presiento",1/1,2019,,174,2.91 MB,12/9/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Prince Royce, Shakira - Deja Vu - Lyrics English and Spanish - Deja Vu - Translation & Meaning.mp3","Deja vu","Prince Royce & Shakira","Deja vu",1/1,2017,Pop,198,2.63 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Pulled.mp3","Pulled","Andrew Lippa","The Addams Family",4/21,2010,Musical,179,5.44 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\" +"Queen, David Bowie - Under Pressure - Remastered 2011.mp3","Under Pressure","Queen & David Bowie","Hot Space",11/11,1982,classic rock,246,4.24 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" +"Reik, Morat - La Bella y la Bestia (Letra_Lyrics).mp3","Reik, Morat - La Bella y la Bestia (Letra/Lyrics)","sunday","",,2020,,180,2.78 MB,7/4/2020,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"REO Speedwagon - Can't Fight This Feeling.mp3","Can’t Fight This Feeling","REO Speedwagon","Wheels Are Turnin’",6/9,1984,album rock,297,5.03 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" +"Rick Astley - Never Gonna Give You Up.mp3","Never Gonna Give You Up","Rick Astley","Whenever You Need Somebody",1/10,1987,dance rock,215,3.34 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\My 80's Playlist\" +"Rick Astley - Whenever You Need Somebody.mp3","Whenever You Need Somebody","Rick Astley","Whenever You Need Somebody",2/10,1987,dance rock,238,3.80 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\My 80's Playlist\" +"Ricky Martin - Livin' la Vida Loca.mp3","Livin’ la vida loca","Ricky Martin","Ricky Martin",1/14,1999,dance pop,243,7.68 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" +"Rihanna - Only Girl (In The World).mp3","Only Girl (in the World)","Rihanna","Loud",5/6,2021,Contemporary R&B,236,7.31 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Rock and A Hard Place.mp3","Rock and a Hard Place","Bailey Zimmerman","Rock and a Hard Place",1/1,2022,,208,3.18 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\" +"Run Away With Me.mp3","Run Away With Me","Carly Rae Jepsen","Emotion",1/17,2020,Dance-Pop/Electropop,251,3.94 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Sam Smith, Normani - Dancing With A Stranger (with Normani).mp3","Dancing With a Stranger","Sam Smith with Normani","Love Goes",12/19,2020,dance pop,174,4.45 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +"Sea Shanty Medley.mp3","Sea Shanty Medley","Home Free","Sea Shanty Medley",1/1,2021,,234,4.05 MB,12/10/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Seize the Day - Disney's NEWSIES (Official Lyric Video).mp3","Seize the Day - Disney's NEWSIES (Official Lyric Video)","Disney On Broadway","",,2013,,235,7.82 MB,6/7/2017,"E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\" +"Selena Gomez, Marshmello - Wolves.mp3","Wolves","Selena Gomez x Marshmello","Wolves",1/1,2017,dance pop,198,6.56 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +"Separate Ways (Worlds Apart).mp3","Separate Ways (Worlds Apart)","Journey","Frontiers",1/18,2017,Rock,324,5.32 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Set It Off - Wolf in Sheep's Clothing (feat. William Beckett).mp3","Wolf in Sheep's Clothing","Set It Off feat. William Beckett","Duality",8/11,2014,,188,6.00 MB,3/16/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Shawn Mendes - If I Can't Have You.mp3","If I Can’t Have You","Shawn Mendes","If I Can’t Have You",1/1,2019,canadian pop,191,6.09 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +"Silvestre Dangond, Nicky Jam - Cásate Conmigo (Official Video).mp3","Silvestre Dangond, Nicky Jam - Cásate Conmigo (Official Video)","SilvestreDangondVEVO","",,2017,,257,3.91 MB,1/14/2020,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Sledgehammer.mp3","Sledgehammer","Fifth Harmony","Reflection",3/11,2015,Pop,231,3.87 MB,12/15/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Someone To You.mp3","Someone to You","BANNERS","Someone To You",1/3,2020,,220,3.64 MB,3/1/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\" +"Starship - Nothing's Gonna Stop Us Now.mp3","Nothing's Gonna Stop Us Now","Starship","Precious Metal",9/18,1989,album rock,271,4.24 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" +"SZA-Conceited.mp3","Conceited","SZA","SOS",15/25,2023,R&B,151,2.45 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" +"SZA-Nobody Gets Me.mp3","Nobody Gets Me","SZA","SOS",14/25,2023,R&B,181,2.79 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" +"SZA-Seek & Destroy.mp3","Seek & Destroy","SZA","SOS",3/25,2023,R&B,204,3.32 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" +"The Cure - Friday I'm In Love.mp3","Friday I’m in Love","The Cure","Wish",7/12,1992,new wave,216,7.15 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" +"The Killers - Mr BrightSide Lyrics.mp3","Mr. Brightside","The Killers","NOW That’s What I Call the 00s: The Best of the Noughties 2000–2009",9/20,2017,,228,3.58 MB,12/9/2022,"E:\Captures\Audio Files\Music\2000'sThrowbacks\" +"The Way You Make Me Feel (2012 Remaster).mp3","The Way You Make Me Feel","Michael Jackson","Bad",2/11,2013,Pop,298,5.13 MB,12/15/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"The Weeknd, Lil Wayne-I Heard You’re Married.mp3","I Heard You’re Married","The Weeknd feat. Lil Wayne","Dawn FM",14/16,2022,Contemporary R&B,264,4.40 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" +"The Weeknd-Gasoline.mp3","Gasoline","The Weeknd","Dawn FM",2/16,2022,Contemporary R&B,212,3.66 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" +"The Weeknd-How Do I Make You Love Me?.mp3","How Do I Make You Love Me?","The Weeknd","Dawn FM",3/16,2022,Contemporary R&B,214,3.51 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" +"The Weeknd-Sacrifice.mp3","Sacrifice","The Weeknd","Dawn FM",5/16,2022,Contemporary R&B,189,3.15 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" +"The Weeknd-Take My Breath.mp3","Take My Breath","The Weeknd","Dawn FM",4/16,2022,Contemporary R&B,339,5.74 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" +"The World Will Know.mp3","The World Will Know","Alan Menken","Newsies: The Musical",7/20,2012,Musical,249,7.90 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\" +"Thinking ‘Bout You (feat. MacKenzie Porter) [Official Music Video].mp3","Thinking ’Bout You","Dustin Lynch feat. MacKenzie Porter","Thinking ’Bout You",1/1,2021,,211,3.25 MB,12/10/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\" +"TLC - No Scrubs.mp3","No Scrubs","TLC","FanMail",5/17,1999,atl hip hop,214,7.05 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" +"Tonight I’m Getting Over You.mp3","Tonight I’m Getting Over You","Carly Rae Jepsen","Kiss",10/13,2012,Pop,219,3.55 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Trace Adkins - Chrome.mp3","Chrome","Trace Adkins","Definitive Greatest Hits",4,2010-01-01,contemporary country,204,3.73 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\" +"Travis Scott-SICKO MODE.mp3","SICKO MODE","Travis Scott","ASTROWORLD",3/17,2018,Hip Hop,313,9.87 MB,3/16/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Troy, Gabriella - Start of Something New (From "High School Musical").mp3","Start of Something New","Zac Efron & Vanessa Hudgens","High School Musical",1/11,2006,Pop,201,5.99 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\" +"Try Everything.mp3","Try Everything","Home Free","Try Everything",,2016,,197,3.84 MB,8/16/2019,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Two Tickets to Paradise.mp3","Two Tickets to Paradise","Eddie Money","Eddie Money",1/11,2016,Rock,237,3.97 MB,12/15/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Vanessa Carlton - A Thousand Miles.mp3","A Thousand Miles","Vanessa Carlton","Heart & Soul",7/18,2013,dance pop,240,4.58 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" +"WALK THE MOON - Shut Up and Dance.mp3","Shut Up and Dance","WALK THE MOON","Now That's What I Call Music! 91",10,2015-07-24,dance pop,195,6.37 MB,12/31/2021,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +"WAP (feat. Megan Thee Stallion).mp3","WAP (feat. Megan Thee Stallion)","Cardi B, Megan Thee Stallion","WAP (feat. Megan Thee Stallion)",,2020,,188,5.99 MB,8/8/2020,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Watch What Happens.mp3","Watch What Happens","Alan Menken","Newsies: The Musical",8/20,2012,Musical,187,5.87 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\" +"We're All In This Together.mp3","We're All in This Together","High School Musical Cast","High School Musical",9/11,2006,Pop,231,7.50 MB,3/16/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\" +"Wham!-Last Christmas.mp3","Last Christmas","Wham!","Last Christmas",1/2,2014,Pop,263,8.11 MB,3/1/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" +"Whiskey Glasses.mp3","Whiskey Glasses","Morgan Wallen","If I Know Me",4/14,2018,Country/Pop,234,3.82 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\" +"Whitney Houston - I Wanna Dance with Somebody (Who Loves Me).mp3","I Wanna Dance With Somebody (Who Loves Me)","Whitney Houston","Whitney",1/11,1987,dance pop,293,4.55 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" +"Zedd, Maren Morris, Grey - The Middle.mp3","The Middle","Zedd, Maren Morris & Grey","The Middle",1/1,2018,complextro,185,5.84 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" +build on 4/4/2023 with Mp3tag v3.20 - the universal Tag editor - http://www.mp3tag.de/en/ \ No newline at end of file diff --git a/test/csv_output/thingsonphone2.yaml b/test/csv_output/thingsonphone2.yaml new file mode 100644 index 0000000..9d1f3b2 --- /dev/null +++ b/test/csv_output/thingsonphone2.yaml @@ -0,0 +1,1733 @@ +name: thingsonphone2 +tracks: +- album: Broadcast + artist: Cutting Crew + filename: '[I Just] Died In Your Arms.mp3' + genre: Pop + last modified: 12/15/2022 + length: '280' + size: 4.33 MB + title: (I Just) Died in Your Arms + track: 6/10 + year: '2016' +- album: '' + artist: Yogscast + filename: ♪ Diggy Diggy Hole.mp3 + genre: '' + last modified: 6/17/2022 + length: '248' + size: 4.04 MB + title: Diggy Diggy Hole + track: '' + year: '' +- album: 'Roots of Rock: New Wave' + artist: Tears for Fears + filename: 01 Everybody Wants to Rule the World.wma + genre: Alternative + last modified: 5/24/2011 + length: '250' + size: 3.84 MB + title: Everybody Wants to Rule the World + track: '1' + year: '1998' +- album: Come On Over + artist: Shania Twain + filename: 01 Man! I Feel Like a Woman!.mp3 + genre: Country + last modified: 12/11/2022 + length: '234' + size: 3.66 MB + title: Man! I Feel Like a Woman! + track: 1/16 + year: '1997' +- album: Reel Life + artist: Boy Meets Girl + filename: 02 Waiting for a Star to Fall.m4a + genre: Pop + last modified: 12/10/2022 + length: '271' + size: 10.02 MB + title: Waiting for a Star to Fall + track: '2' + year: '1988' +- album: Special + artist: Lizzo + filename: 2 Be Loved (Am I Ready).mp3 + genre: Pop/R&B + last modified: 2/4/2023 + length: '187' + size: 2.94 MB + title: 2 Be Loved (Am I Ready) + track: 4/12 + year: '2022' +- album: The Platinum Collection + artist: Queen + filename: 16 The Show Must Go On.wma + genre: Rock + last modified: 12/11/2022 + length: '264' + size: 4.14 MB + title: The Show Must Go On + track: '16' + year: '2000-11-13' +- album: 10000 Gecs + artist: 100 gecs + filename: 100 gecs - Dumbest Girl Alive.mp3 + genre: Hyperpop + last modified: 3/27/2023 + length: '137' + size: 4.44 MB + title: Dumbest Girl Alive + track: 1/10 + year: '2023' +- album: 10000 Gecs + artist: 100 gecs + filename: 100 gecs - Frog On The Floor.mp3 + genre: Hyperpop + last modified: 3/27/2023 + length: '162' + size: 4.81 MB + title: Frog on the Floor + track: 4/10 + year: '2023' +- album: '21' + artist: Adele + filename: Adele - Rolling in the Deep.mp3 + genre: british soul + last modified: 12/10/2022 + length: '228' + size: 7.10 MB + title: Rolling in the Deep + track: 1/15 + year: '2011' +- album: '' + artist: AldreyMusica + filename: 'Aldrey - La Lista (Lyric Video Oficial) #LaLista.mp3' + genre: '' + last modified: 6/3/2017 + length: '259' + size: 4.05 MB + title: 'Aldrey - La Lista (Lyric Video Oficial) #LaLista' + track: '' + year: '2013' +- album: thank u, next + artist: Ariana Grande + filename: Ariana Grande - 7 rings.mp3 + genre: dance pop + last modified: 12/10/2022 + length: '179' + size: 5.55 MB + title: 7 rings + track: 10/12 + year: '2019' +- album: Dangerous Woman + artist: Ariana Grande + filename: Ariana Grande - Into You.mp3 + genre: dance pop + last modified: 12/11/2022 + length: '244' + size: 7.74 MB + title: Into You + track: 4/16 + year: '2016' +- album: My Everything + artist: Ariana Grande + filename: Ariana Grande - One Last Time.mp3 + genre: dance pop + last modified: 12/10/2022 + length: '197' + size: 6.04 MB + title: One Last Time + track: 3/18 + year: '2014' +- album: My Everything (Deluxe) + artist: Ariana Grande/Zedd + filename: Ariana Grande, Zedd - Break Free.mp3 + genre: dance pop + last modified: 12/31/2021 + length: '214' + size: 5.98 MB + title: Break Free + track: '5' + year: '2014-08-25' +- album: My Everything (Deluxe) + artist: Ariana Grande/Zedd + filename: Ariana Grande, Zedd - Break Free.mp3 + genre: dance pop + last modified: 12/31/2021 + length: '214' + size: 5.98 MB + title: Break Free + track: '5' + year: '2014-08-25' +- album: Moana + artist: Auliʻi Cravalho + filename: Auli'i Cravalho - How Far I'll Go (from Moana_Official Video).mp3 + genre: Musical + last modified: 2/4/2023 + length: '156' + size: 2.13 MB + title: How Far I’ll Go + track: 4/40 + year: '2016' +- album: The Nights + artist: Avicii + filename: Avicii - The Nights.mp3 + genre: dance pop + last modified: 12/10/2022 + length: '177' + size: 5.68 MB + title: The Nights + track: 1/1 + year: '2014' +- album: Backstreet’s Back + artist: Backstreet Boys + filename: Backstreet Boys - As Long as You Love Me.mp3 + genre: boy band + last modified: 12/10/2022 + length: '214' + size: 6.94 MB + title: As Long as You Love Me + track: 2/14 + year: '1997' +- album: Millennium + artist: Backstreet Boys + filename: Backstreet Boys - I Want It That Way.mp3 + genre: boy band + last modified: 1/20/2021 + length: '213' + size: 3.45 MB + title: I Want It That Way + track: '2' + year: '1999-05-18' +- album: Backstreet Boys + artist: Backstreet Boys + filename: Backstreet Boys - Quit Playing Games (With My Heart).mp3 + genre: boy band + last modified: 12/10/2022 + length: '234' + size: 7.06 MB + title: Quit Playing Games (With My Heart) + track: 5/13 + year: '1996' +- album: Millennium + artist: Backstreet Boys + filename: Backstreet Boys - Show Me the Meaning of Being Lonely.mp3 + genre: boy band + last modified: 12/10/2022 + length: '237' + size: 3.73 MB + title: Show Me the Meaning of Being Lonely + track: 3/12 + year: '1999' +- album: Balas perdidas + artist: Morat & Juanes + filename: Besos En Guerra.mp3 + genre: Latin Pop + last modified: 2/4/2023 + length: '232' + size: 3.76 MB + title: Besos en guerra + track: 3/12 + year: '2018' +- album: Midnight Memories + artist: One Direction + filename: Best Song Ever.mp3 + genre: Pop + last modified: 2/4/2023 + length: '200' + size: 3.14 MB + title: Best Song Ever + track: 1/14 + year: '2013' +- album: WHEN WE ALL FALL ASLEEP, WHERE DO WE GO? + artist: Billie Eilish + filename: Billie Eilish - bad guy.mp3 + genre: art pop + last modified: 12/10/2022 + length: '194' + size: 6.37 MB + title: bad guy + track: 2/14 + year: '2019' +- album: 'A Matter of Trust: The Bridge to Russia' + artist: Billy Joel + filename: Billy Joel - Uptown Girl.mp3 + genre: album rock + last modified: 12/10/2022 + length: '200' + size: 2.98 MB + title: Uptown Girl (live) + track: 21/27 + year: '2014' +- album: Definitive Collection + artist: Bonnie Tyler + filename: Bonnie Tyler - Total Eclipse of the Heart.mp3 + genre: europop + last modified: 12/10/2022 + length: '272' + size: 5.05 MB + title: Total Eclipse of the Heart + track: 1/18 + year: '1995' +- album: 24K Magic + artist: Bruno Mars + filename: Bruno Mars - 24K Magic.mp3 + genre: Pop + last modified: 3/8/2023 + length: '226' + size: 7.12 MB + title: 24K Magic + track: 1/9 + year: '2016' +- album: Unorthodox Jukebox + artist: Bruno Mars + filename: Bruno Mars - Locked out of Heaven.mp3 + genre: dance pop + last modified: 12/10/2022 + length: '234' + size: 7.52 MB + title: Locked Out of Heaven + track: 2/10 + year: '2012' +- album: Kiss + artist: Carly Rae Jepsen + filename: Carly Rae Jepsen - Call Me Maybe.mp3 + genre: canadian pop + last modified: 12/10/2022 + length: '194' + size: 6.12 MB + title: Call Me Maybe + track: 3/13 + year: '2012' +- album: Kiss + artist: Carly Rae Jepsen + filename: Carly Rae Jepsen - Guitar String ⧸ Wedding Ring.mp3 + genre: Pop + last modified: 3/27/2023 + length: '207' + size: 6.31 MB + title: Guitar String / Wedding Ring + track: 11/16 + year: '2012' +- album: Emotion + artist: Carly Rae Jepsen + filename: Carly Rae Jepsen-Emotion.mp3 + genre: Dance-Pop + last modified: 2/4/2023 + length: '197' + size: 6.27 MB + title: Emotion + track: 2/17 + year: '2020' +- album: Dedicated Side B + artist: Carly Rae Jepsen + filename: Carly Rae Jepsen-Felt This Way.mp3 + genre: Indie Pop + last modified: 2/4/2023 + length: '217' + size: 6.84 MB + title: Felt This Way + track: 3/12 + year: '2020' +- album: Emotion + artist: Carly Rae Jepsen + filename: Carly Rae Jepsen-I Didn’t Just Come Here To Dance.mp3 + genre: Dance-Pop + last modified: 2/4/2023 + length: '220' + size: 6.83 MB + title: I Didn’t Just Come Here to Dance + track: 14/17 + year: '2020' +- album: Emotion + artist: Carly Rae Jepsen + filename: Carly Rae Jepsen-Let’s Get Lost.mp3 + genre: Dance-Pop + last modified: 2/4/2023 + length: '194' + size: 6.16 MB + title: Let’s Get Lost + track: 9/17 + year: '2020' +- album: Dedicated Side B + artist: Carly Rae Jepsen + filename: Carly Rae Jepsen-Solo.mp3 + genre: Indie Pop + last modified: 2/4/2023 + length: '196' + size: 6.15 MB + title: Solo + track: 11/12 + year: '2020' +- album: Dedicated Side B + artist: Carly Rae Jepsen + filename: Carly Rae Jepsen-This Love Isn't Crazy.mp3 + genre: Indie Pop + last modified: 2/4/2023 + length: '233' + size: 7.43 MB + title: This Love Isn’t Crazy + track: 1/12 + year: '2020' +- album: Hardstyle v1 + artist: '' + filename: Cascada - Everytime We Touch (Fallen Superhero Hardstyle Remix).mp3 + genre: Hardstyle + last modified: 6/20/2022 + length: '219' + size: 3.41 MB + title: '' + track: '' + year: '' +- album: Believe + artist: Cher + filename: Cher - Believe.mp3 + genre: dance pop + last modified: 12/10/2022 + length: '239' + size: 7.65 MB + title: Believe + track: 1/10 + year: '1998' +- album: Heart of Stone + artist: Cher + filename: Cher - If I Could Turn Back Time.mp3 + genre: dance pop + last modified: 12/10/2022 + length: '241' + size: 3.70 MB + title: If I Could Turn Back Time + track: 1/12 + year: '1989' +- album: Because the Internet + artist: Childish Gambino, Donald Glover + filename: Childish Gambino, Donald Glover-3005.mp3 + genre: '' + last modified: 9/1/2022 + length: '234' + size: 7.92 MB + title: '3005' + track: '' + year: '2022' +- album: Hardstyle v1 + artist: '' + filename: Clean Bandit ft. Demi Lovato - Solo (Twisted Melodiez Bootleg) [Free Release].mp3 + genre: Hardstyle + last modified: 6/20/2022 + length: '181' + size: 2.87 MB + title: '' + track: '' + year: '' +- album: Stereotype + artist: Cole Swindell + filename: Cole Swindell - She Had Me At Heads Carolina.mp3 + genre: Country + last modified: 3/16/2023 + length: '206' + size: 6.54 MB + title: She Had Me at Heads Carolina + track: 4/13 + year: '2022' +- album: The Addams Family + artist: Andrew Lippa + filename: Crazier Than You.mp3 + genre: Musical + last modified: 2/4/2023 + length: '171' + size: 5.41 MB + title: Crazier Than You + track: 15/21 + year: '2010' +- album: Cuando nadie ve + artist: Morat + filename: Cuando Nadie Ve.mp3 + genre: Latin Pop + last modified: 2/4/2023 + length: '219' + size: 3.55 MB + title: Cuando nadie ve + track: 1/1 + year: '2018' +- album: Cut to the Feeling + artist: Carly Rae Jepsen + filename: Cut To The Feeling.mp3 + genre: Pop + last modified: 12/15/2022 + length: '208' + size: 3.35 MB + title: Cut to the Feeling + track: 1/2 + year: '2017' +- album: Hardstyle v1 + artist: '' + filename: Da Tweekaz - Frozen (Disney Tool) (Official Preview).mp3 + genre: Hardstyle + last modified: 6/20/2022 + length: '228' + size: 3.44 MB + title: '' + track: '' + year: '' +- album: Future Nostalgia + artist: Dua Lipa + filename: Dua Lipa - Cool.mp3 + genre: Dance-Pop + last modified: 3/27/2023 + length: '210' + size: 6.69 MB + title: Cool + track: 3/13 + year: '2020' +- album: Future Nostalgia + artist: Dua Lipa + filename: Dua Lipa - Don't Start Now.mp3 + genre: Dance-Pop + last modified: 3/27/2023 + length: '183' + size: 5.90 MB + title: Don’t Start Now + track: 2/13 + year: '2020' +- album: Future Nostalgia + artist: Dua Lipa + filename: Dua Lipa - Hallucinate.mp3 + genre: Dance-Pop + last modified: 3/27/2023 + length: '209' + size: 6.34 MB + title: Hallucinate + track: 7/13 + year: '2020' +- album: Dua Lipa (deluxe edition) + artist: Dua Lipa + filename: Dua Lipa - IDGAF.mp3 + genre: dance pop + last modified: 12/10/2022 + length: '218' + size: 7.09 MB + title: IDGAF + track: 5/17 + year: '2017' +- album: 40 Tubes 2022 + artist: Dua Lipa + filename: Dua Lipa - Love Again (Official Music Video).mp3 + genre: Dance-Pop + last modified: 2/4/2023 + length: '262' + size: 4.25 MB + title: Love Again + track: 5/20 + year: '2021' +- album: Future Nostalgia + artist: Dua Lipa feat. DaBaby + filename: Dua Lipa, DaBaby - Levitating (feat. DaBaby).mp3 + genre: Dance-Pop + last modified: 3/27/2023 + length: '203' + size: 6.49 MB + title: Levitating + track: 12/13 + year: '2020' +- album: ÷ (Divide) + artist: Ed Sheeran + filename: Ed Sheeran - Castle on the Hill.mp3 + genre: pop + last modified: 12/10/2022 + length: '261' + size: 8.63 MB + title: Castle on the Hill + track: 2/12 + year: '2017' +- album: 'Rocket Man: The Definitive Hits' + artist: Elton John + filename: Elton John - I'm Still Standing.mp3 + genre: glam rock + last modified: 12/10/2022 + length: '185' + size: 2.80 MB + title: I'm Still Standing + track: 17/18 + year: '2007' +- album: The Innocents + artist: Erasure + filename: Erasure - A Little Respect - 2009 Remastered Version.mp3 + genre: dance pop + last modified: 1/20/2021 + length: '213' + size: 3.48 MB + title: A Little Respect - 2009 Remastered Version + track: '1' + year: '1988-04-18' +- album: Mr. Misunderstood + artist: Eric Church + filename: Eric Church - Round Here Buzz.mp3 + genre: contemporary country + last modified: 12/10/2022 + length: '216' + size: 3.32 MB + title: Round Here Buzz + track: 6/10 + year: '2016' +- album: 'Het beste uit de Qmusic Millennium Top 1000: 2000–2009' + artist: Estelle feat. Kanye West + filename: Estelle - American Boy, Lyrics.mp3 + genre: '' + last modified: 12/9/2022 + length: '278' + size: 4.30 MB + title: American Boy + track: 3/20 + year: '2009' +- album: 'Extreme II: Pornograffitti (A Funked Up Fairy Tale)' + artist: Extreme + filename: Extreme - More Than Words.mp3 + genre: album rock + last modified: 12/10/2022 + length: '334' + size: 8.82 MB + title: More Than Words + track: 5/13 + year: '1990' +- album: Breathe + artist: Faith Hill + filename: Faith Hill - Breathe.mp3 + genre: Country + last modified: 3/16/2023 + length: '250' + size: 8.07 MB + title: Breathe + track: 4/14 + year: '1999' +- album: Careless Whisper + artist: George Michael + filename: George Michael-Careless Whisper.mp3 + genre: Pop + last modified: 3/16/2023 + length: '300' + size: 10.23 MB + title: Careless Whisper + track: 1/2 + year: '1984' +- album: reputation + artist: Taylor Swift + filename: Getaway Car.mp3 + genre: Pop + last modified: 12/15/2022 + length: '234' + size: 3.72 MB + title: Getaway Car + track: 9/15 + year: '2018' +- album: Bravo Hits 118 + artist: Joji + filename: Glimpse of Us.mp3 + genre: Pop + last modified: 2/4/2023 + length: '233' + size: 3.61 MB + title: Glimpse of Us + track: 7/24 + year: '2022' +- album: Indian Summer + artist: Go West + filename: Go West - The King of Wishful Thinking.mp3 + genre: mellow gold + last modified: 12/10/2022 + length: '242' + size: 7.47 MB + title: The King of Wishful Thinking + track: 6/13 + year: '1992' +- album: 'Promo Only: Modern Rock Radio, January 2012' + artist: Gotye + filename: Gotye - Somebody That I Used To Know (Lyrics).mp3 + genre: '' + last modified: 6/21/2021 + length: '306' + size: 4.68 MB + title: Somebody That I Used to Know + track: '' + year: '' +- album: Greatest Hits + artist: Jo Dee Messina + filename: Heads Carolina, Tails California.mp3 + genre: Country + last modified: 2/4/2023 + length: '210' + size: 3.44 MB + title: Heads Carolina, Tails California + track: 3/15 + year: '2003' +- album: Greatest Hits + artist: Huey Lewis & the News + filename: Huey Lewis & The News - The Power Of Love.mp3 + genre: album rock + last modified: 12/10/2022 + length: '237' + size: 3.83 MB + title: The Power of Love + track: 3/21 + year: '2006' +- album: Love Tracks + artist: Gloria Gaynor + filename: I Will Survive.mp3 + genre: Disco + last modified: 12/15/2022 + length: '296' + size: 5.08 MB + title: I Will Survive + track: 5/13 + year: '2013' +- album: Frozen II + artist: Idina Menzel & AURORA + filename: Idina Menzel, AURORA - Into the Unknown (From 'Frozen 2').mp3 + genre: Pop + last modified: 2/4/2023 + length: '209' + size: 2.93 MB + title: Into the Unknown + track: 3/11 + year: '2019' +- album: All or Nothing + artist: Jay Sean feat. Lil Wayne + filename: Jay Sean, Lil Wayne - Down.mp3 + genre: dance pop + last modified: 12/11/2022 + length: '214' + size: 3.44 MB + title: Down + track: 3/14 + year: '2009' +- album: Mañana es Too Late + artist: Jesse & Joy and J Balvin + filename: Jesse & Joy, J Balvin - Mañana Es Too Late.mp3 + genre: latin + last modified: 12/11/2022 + length: '196' + size: 3.23 MB + title: Mañana es Too Late + track: 1/1 + year: '2019' +- album: Canon In D (Jatimatic Remix) + artist: Stacey Lee May + filename: Johann Pachelbel - Canon In D (Jatimatic Hardstyle Bootleg) _ HQ Videoclip.mp3 + genre: Hardstyle + last modified: 12/9/2022 + length: '242' + size: 3.75 MB + title: Canon In D - Jatimatic Remix + track: 1/1 + year: '2021' +- album: Blue + artist: Jonas Blue feat. Jack & Jack + filename: Jonas Blue, Jack & Jack - Rise.mp3 + genre: Electronic + last modified: 3/27/2023 + length: '194' + size: 6.32 MB + title: Rise + track: 11/15 + year: '2018' +- album: The Essential Journey + artist: Journey + filename: Journey - Don't Stop Believin'.mp3 + genre: album rock + last modified: 1/20/2021 + length: '250' + size: 4.11 MB + title: Don't Stop Believin' + track: '2' + year: '2001-09-19' +- album: 'Roma: Original Motion Picture Soundtrack' + artist: Juan Gabriel + filename: Juan Gabriel - No Tengo Dinero (Cover Audio).mp3 + genre: Ballad/Danzón/Latin/Pop/Ranchera + last modified: 2/4/2023 + length: '187' + size: 3.10 MB + title: No tengo dinero + track: 3/19 + year: '2018' +- album: '' + artist: JuanesVEVO + filename: Juanes - La Camisa Negra.mp3 + genre: '' + last modified: 9/4/2022 + length: '247' + size: 8.31 MB + title: Juanes - La Camisa Negra + track: '' + year: '2009' +- album: RTL Hits 2011 + artist: Bruno Mars + filename: Just The Way You Are- Bruno Mars (Lyrics on Screen).mp3 + genre: '' + last modified: 12/9/2022 + length: '213' + size: 3.27 MB + title: Just the Way You Are + track: 3/20 + year: '2011' +- album: Nachtschicht, Volume 42 + artist: Justin Timberlake feat. Timbaland + filename: Justin Timberlake - Sexy Back [Lyrics].mp3 + genre: '' + last modified: 12/9/2022 + length: '239' + size: 3.74 MB + title: Sexyback + track: 7/20 + year: '2011' +- album: 808s & Heartbreak + artist: Kanye West + filename: Kanye West - Heartless.mp3 + genre: chicago rap + last modified: 2/5/2023 + length: '213' + size: 3.54 MB + title: Heartless + track: 3/12 + year: '2008' +- album: Teenage Dream + artist: Katy Perry + filename: Katy Perry - Firework.mp3 + genre: dance pop + last modified: 12/11/2022 + length: '228' + size: 7.19 MB + title: Firework + track: 4/14 + year: '2010' +- album: Teenage Dream + artist: Katy Perry + filename: Katy Perry - Teenage Dream.mp3 + genre: dance pop + last modified: 12/11/2022 + length: '230' + size: 3.74 MB + title: Teenage Dream + track: 1/14 + year: '2010' +- album: Teenage Dream + artist: Katy Perry feat. Snoop Dogg + filename: Katy Perry, Snoop Dogg - California Gurls.mp3 + genre: dance pop + last modified: 12/11/2022 + length: '237' + size: 3.70 MB + title: California Gurls + track: 3/14 + year: '2010' +- album: Animal + artist: Ke$ha + filename: Kesha - TiK ToK.mp3 + genre: dance pop + last modified: 12/11/2022 + length: '202' + size: 3.13 MB + title: TiK ToK + track: 2/18 + year: '2010' +- album: Animal + artist: Ke$ha + filename: Kesha - Your Love Is My Drug.mp3 + genre: dance pop + last modified: 12/11/2022 + length: '190' + size: 3.01 MB + title: Your Love Is My Drug + track: 1/18 + year: '2010' +- album: 'KISSWORLD: The Best of KISS' + artist: KISS + filename: Kiss - I Was Made For Lovin' You.mp3 + genre: Rock + last modified: 2/4/2023 + length: '238' + size: 3.51 MB + title: I Was Made for Lovin’ You + track: 3/20 + year: '2019' +- album: The Fame Monster (deluxe) + artist: Lady Gaga + filename: Lady Gaga - Poker Face.mp3 + genre: dance pop + last modified: 12/11/2022 + length: '239' + size: 3.89 MB + title: Poker Face + track: 12/22 + year: '2009' +- album: Branigan + artist: Laura Branigan + filename: Laura Branigan - Gloria.mp3 + genre: dance rock + last modified: 12/11/2022 + length: '292' + size: 4.63 MB + title: Gloria + track: 2/9 + year: '1982' +- album: An Evening With Silk Sonic + artist: Silk Sonic + filename: Leave The Door Open.mp3 + genre: Contemporary R&B/Soul + last modified: 2/4/2023 + length: '242' + size: 3.78 MB + title: Leave the Door Open + track: 2/9 + year: '2022' +- album: MONTERO + artist: Lil Nas X & Jack Harlow + filename: Lil Nas X, Jack Harlow - INDUSTRY BABY.mp3 + genre: Pop + last modified: 3/16/2023 + length: '212' + size: 7.01 MB + title: INDUSTRY BABY + track: 3/15 + year: '2021' +- album: Hybrid Theory + artist: Linkin Park + filename: Linkin Park-In the End.mp3 + genre: Nu Metal + last modified: 3/1/2023 + length: '217' + size: 6.88 MB + title: In the End + track: 8/12 + year: '2013' +- album: Dancing On The Ceiling + artist: Lionel Richie + filename: Lionel Richie - Dancing On The Ceiling.mp3 + genre: adult standards + last modified: 1/20/2021 + length: '276' + size: 4.59 MB + title: Dancing On The Ceiling + track: '1' + year: '1986' +- album: Now That's What I Call Music! 91 + artist: Little Mix + filename: Little Mix - Black Magic.mp3 + genre: dance pop + last modified: 12/31/2021 + length: '212' + size: 6.87 MB + title: Black Magic + track: '5' + year: '2015-07-24' +- album: Bravo Hits 118 + artist: Lizzo + filename: Lizzo - About Damn Time (Lyrics).mp3 + genre: Pop + last modified: 2/4/2023 + length: '191' + size: 3.13 MB + title: About Damn Time + track: 18/24 + year: '2022' +- album: 16 Biggest Hits + artist: Lonestar + filename: Lonestar - Amazed.mp3 + genre: contemporary country + last modified: 12/11/2022 + length: '241' + size: 7.87 MB + title: Amazed + track: 7/16 + year: '2006' +- album: '' + artist: Taz Network + filename: Luis Fonsi, Demi Lovato ‒ Echame La Culpa (Lyrics).mp3 + genre: '' + last modified: 12/1/2019 + length: '189' + size: 3.73 MB + title: Luis Fonsi, Demi Lovato ‒ Echame La Culpa (Lyrics) + track: '' + year: '2017' +- album: Growin’ Up + artist: Luke Combs + filename: Luke Combs - The Kind of Love We Make.mp3 + genre: '' + last modified: 3/16/2023 + length: '224' + size: 7.11 MB + title: The Kind of Love We Make + track: 3/12 + year: '2022' +- album: Audacious Remixes + artist: Luke Bryan, NotMyJug + filename: lukebryan_playitagain_notmyjugremix.mp3 + genre: '' + last modified: 11/27/2022 + length: '197' + size: 4.51 MB + title: Play It Again (NotMyJug Remix) + track: '' + year: '2018' +- album: Like a Prayer + artist: Madonna + filename: Madonna - Like a Prayer.mp3 + genre: dance pop + last modified: 12/11/2022 + length: '342' + size: 5.84 MB + title: Like a Prayer + track: 1/11 + year: '1989' +- album: Don't Kill the Magic + artist: MAGIC! + filename: MAGIC! - Rude.mp3 + genre: reggae fusion + last modified: 12/9/2022 + length: '225' + size: 7.13 MB + title: Rude + track: 1/11 + year: '2014' +- album: Ever After + artist: Marianas Trench + filename: Marianas Trench - Desperate Measures.mp3 + genre: Pop/Pop Rock/Power Pop/Rock + last modified: 2/4/2023 + length: '257' + size: 4.03 MB + title: Desperate Measures + track: 5/12 + year: '2014' +- album: Ever After + artist: Marianas Trench + filename: Marianas Trench - Haven't Had Enough.mp3 + genre: Pop/Pop Rock/Power Pop/Rock + last modified: 2/4/2023 + length: '246' + size: 3.57 MB + title: Haven't Had Enough + track: 2/12 + year: '2014' +- album: Now That’s What I Call Music! 51 + artist: Rixton + filename: Me And My Broken Heart.mp3 + genre: Pop + last modified: 2/4/2023 + length: '194' + size: 3.17 MB + title: Me and My Broken Heart + track: 13/21 + year: '2014' +- album: 'Bat Out of Hell II: Back Into Hell' + artist: Meat Loaf + filename: Meat Loaf - I'd Do Anything For Love (But I Won't Do That) - Single Edit.mp3 + genre: album rock + last modified: 12/9/2022 + length: '317' + size: 10.29 MB + title: I’d Do Anything for Love (But I Won’t Do That) (single edit) + track: 2/11 + year: '2022' +- album: One Thing at a Time + artist: Morgan Wallen + filename: Morgan Wallen - Last Night.mp3 + genre: Country + last modified: 3/27/2023 + length: '164' + size: 5.41 MB + title: Last Night + track: 2/18 + year: '2023' +- album: The Black Parade + artist: My Chemical Romance + filename: My Chemical Romance - Welcome to the Black Parade.mp3 + genre: emo + last modified: 12/11/2022 + length: '313' + size: 5.74 MB + title: Welcome to the Black Parade + track: 5/14 + year: '2006' +- album: The Best 80s Modern Rock Album... Ever! + artist: Naked Eyes + filename: Naked Eyes - Always Something There To Remind Me (Official Video).mp3 + genre: Rock + last modified: 2/4/2023 + length: '201' + size: 3.12 MB + title: Always Something There to Remind Me + track: 10/16 + year: '2002' +- album: Unwritten + artist: Natasha Bedingfield + filename: Natasha Bedingfield - Unwritten.mp3 + genre: dance pop + last modified: 12/11/2022 + length: '262' + size: 4.58 MB + title: Unwritten + track: 4/11 + year: '2004' +- album: Nightcore + artist: NightCore + filename: Nightcore_018_Nightcore - Everytime We Touch.mp3 + genre: Nightcore + last modified: 12/24/2012 + length: '186' + size: 2.89 MB + title: Nightcore - Everytime We Touch + track: 018 + year: 2012-12-24T18 +- album: Nightcore + artist: NightCore + filename: Nightcore_020_Nightcore - Bad boy.mp3 + genre: Nightcore + last modified: 12/25/2012 + length: '156' + size: 2.49 MB + title: Nightcore - Bad boy + track: '020' + year: 2012-12-25T13 +- album: Nightcore + artist: Sanuksanan Nightcore P.1 + filename: Nightcore_204_Nightcore - Gotta Be Somebody.mp3 + genre: Nightcore + last modified: 12/10/2014 + length: '222' + size: 3.46 MB + title: Nightcore - Gotta Be Somebody + track: '204' + year: 2014-12-10T08 +- album: 'Newsies: The Musical' + artist: Alan Menken + filename: Once And For All.mp3 + genre: Musical + last modified: 2/4/2023 + length: '241' + size: 7.70 MB + title: Once and for All + track: 16/20 + year: '2012' +- album: Midnight Memories (Deluxe) + artist: One Direction + filename: One Direction - Story of My Life.mp3 + genre: boy band + last modified: 12/31/2021 + length: '246' + size: 7.22 MB + title: Story of My Life + track: '2' + year: '2013-11-25' +- album: A Fever You Can’t Sweat Out + artist: Panic! at the Disco + filename: Panic! At The Disco - I Write Sins Not Tragedies.mp3 + genre: baroque pop + last modified: 12/11/2022 + length: '188' + size: 3.07 MB + title: I Write Sins Not Tragedies + track: 10/13 + year: '2005' +- album: Frozen II + artist: Panic! at the Disco + filename: Panic! At The Disco-Into the Unknown (Panic! At The Disco Version).mp3 + genre: Pop + last modified: 3/16/2023 + length: '187' + size: 2.93 MB + title: Into the Unknown (Panic! at the Disco version) + track: 9/11 + year: '2019' +- album: RIOT! + artist: Paramore + filename: Paramore - Misery Business.mp3 + genre: Rock + last modified: 3/28/2023 + length: '212' + size: 7.01 MB + title: Misery Business + track: 4/11 + year: '2007' +- album: Graceland + artist: Paul Simon + filename: Paul Simon - You Can Call Me Al.mp3 + genre: classic rock + last modified: 12/11/2022 + length: '282' + size: 5.36 MB + title: You Can Call Me Al + track: 6/11 + year: '1986' +- album: Aladdin (Original Motion Picture Soundtrack) + artist: Peabo Bryson/Regina Belle + filename: Peabo Bryson, Regina Belle - A Whole New World (Aladdin's Theme).mp3 + genre: adult standards + last modified: 12/15/2021 + length: '250' + size: 7.50 MB + title: A Whole New World (Aladdin's Theme) + track: '21' + year: '1992-01-01' +- album: The Singles (Expanded) + artist: Phil Collins + filename: Phil Collins - Against All Odds (Take a Look at Me Now) - 2016 Remaster.mp3 + genre: mellow gold + last modified: 1/20/2021 + length: '209' + size: 3.40 MB + title: Against All Odds (Take a Look at Me Now) - 2016 Remaster + track: '10' + year: '2016-10-14' +- album: 'Tarzan: Original Soundtrack Brazil' + artist: Phil Collins + filename: Phil Collins - You'll Be In My Heart.mp3 + genre: mellow gold + last modified: 12/9/2022 + length: '257' + size: 8.62 MB + title: You’ll Be in My Heart + track: 15/15 + year: '1999' +- album: Crash My Party + artist: Luke Bryan + filename: Play It Again.mp3 + genre: Contemporary Country + last modified: 2/4/2023 + length: '227' + size: 3.70 MB + title: Play It Again + track: 9/13 + year: '2013' +- album: Presiento + artist: Morat con Aitana + filename: Presiento.mp3 + genre: '' + last modified: 12/9/2022 + length: '174' + size: 2.91 MB + title: Presiento + track: 1/1 + year: '2019' +- album: Deja vu + artist: Prince Royce & Shakira + filename: Prince Royce, Shakira - Deja Vu - Lyrics English and Spanish - Deja Vu + - Translation & Meaning.mp3 + genre: Pop + last modified: 2/4/2023 + length: '198' + size: 2.63 MB + title: Deja vu + track: 1/1 + year: '2017' +- album: The Addams Family + artist: Andrew Lippa + filename: Pulled.mp3 + genre: Musical + last modified: 2/4/2023 + length: '179' + size: 5.44 MB + title: Pulled + track: 4/21 + year: '2010' +- album: Hot Space + artist: Queen & David Bowie + filename: Queen, David Bowie - Under Pressure - Remastered 2011.mp3 + genre: classic rock + last modified: 12/11/2022 + length: '246' + size: 4.24 MB + title: Under Pressure + track: 11/11 + year: '1982' +- album: '' + artist: sunday + filename: Reik, Morat - La Bella y la Bestia (Letra_Lyrics).mp3 + genre: '' + last modified: 7/4/2020 + length: '180' + size: 2.78 MB + title: Reik, Morat - La Bella y la Bestia (Letra/Lyrics) + track: '' + year: '2020' +- album: Wheels Are Turnin’ + artist: REO Speedwagon + filename: REO Speedwagon - Can't Fight This Feeling.mp3 + genre: album rock + last modified: 12/11/2022 + length: '297' + size: 5.03 MB + title: Can’t Fight This Feeling + track: 6/9 + year: '1984' +- album: Whenever You Need Somebody + artist: Rick Astley + filename: Rick Astley - Never Gonna Give You Up.mp3 + genre: dance rock + last modified: 12/11/2022 + length: '215' + size: 3.34 MB + title: Never Gonna Give You Up + track: 1/10 + year: '1987' +- album: Whenever You Need Somebody + artist: Rick Astley + filename: Rick Astley - Whenever You Need Somebody.mp3 + genre: dance rock + last modified: 12/11/2022 + length: '238' + size: 3.80 MB + title: Whenever You Need Somebody + track: 2/10 + year: '1987' +- album: Ricky Martin + artist: Ricky Martin + filename: Ricky Martin - Livin' la Vida Loca.mp3 + genre: dance pop + last modified: 12/9/2022 + length: '243' + size: 7.68 MB + title: Livin’ la vida loca + track: 1/14 + year: '1999' +- album: Loud + artist: Rihanna + filename: Rihanna - Only Girl (In The World).mp3 + genre: Contemporary R&B + last modified: 3/27/2023 + length: '236' + size: 7.31 MB + title: Only Girl (in the World) + track: 5/6 + year: '2021' +- album: Rock and a Hard Place + artist: Bailey Zimmerman + filename: Rock and A Hard Place.mp3 + genre: '' + last modified: 2/4/2023 + length: '208' + size: 3.18 MB + title: Rock and a Hard Place + track: 1/1 + year: '2022' +- album: Emotion + artist: Carly Rae Jepsen + filename: Run Away With Me.mp3 + genre: Dance-Pop/Electropop + last modified: 2/4/2023 + length: '251' + size: 3.94 MB + title: Run Away With Me + track: 1/17 + year: '2020' +- album: Love Goes + artist: Sam Smith with Normani + filename: Sam Smith, Normani - Dancing With A Stranger (with Normani).mp3 + genre: dance pop + last modified: 12/11/2022 + length: '174' + size: 4.45 MB + title: Dancing With a Stranger + track: 12/19 + year: '2020' +- album: Sea Shanty Medley + artist: Home Free + filename: Sea Shanty Medley.mp3 + genre: '' + last modified: 12/10/2022 + length: '234' + size: 4.05 MB + title: Sea Shanty Medley + track: 1/1 + year: '2021' +- album: '' + artist: Disney On Broadway + filename: Seize the Day - Disney's NEWSIES (Official Lyric Video).mp3 + genre: '' + last modified: 6/7/2017 + length: '235' + size: 7.82 MB + title: Seize the Day - Disney's NEWSIES (Official Lyric Video) + track: '' + year: '2013' +- album: Wolves + artist: Selena Gomez x Marshmello + filename: Selena Gomez, Marshmello - Wolves.mp3 + genre: dance pop + last modified: 12/11/2022 + length: '198' + size: 6.56 MB + title: Wolves + track: 1/1 + year: '2017' +- album: Frontiers + artist: Journey + filename: Separate Ways (Worlds Apart).mp3 + genre: Rock + last modified: 2/4/2023 + length: '324' + size: 5.32 MB + title: Separate Ways (Worlds Apart) + track: 1/18 + year: '2017' +- album: Duality + artist: Set It Off feat. William Beckett + filename: Set It Off - Wolf in Sheep's Clothing (feat. William Beckett).mp3 + genre: '' + last modified: 3/16/2023 + length: '188' + size: 6.00 MB + title: Wolf in Sheep's Clothing + track: 8/11 + year: '2014' +- album: If I Can’t Have You + artist: Shawn Mendes + filename: Shawn Mendes - If I Can't Have You.mp3 + genre: canadian pop + last modified: 12/11/2022 + length: '191' + size: 6.09 MB + title: If I Can’t Have You + track: 1/1 + year: '2019' +- album: '' + artist: SilvestreDangondVEVO + filename: Silvestre Dangond, Nicky Jam - Cásate Conmigo (Official Video).mp3 + genre: '' + last modified: 1/14/2020 + length: '257' + size: 3.91 MB + title: Silvestre Dangond, Nicky Jam - Cásate Conmigo (Official Video) + track: '' + year: '2017' +- album: Reflection + artist: Fifth Harmony + filename: Sledgehammer.mp3 + genre: Pop + last modified: 12/15/2022 + length: '231' + size: 3.87 MB + title: Sledgehammer + track: 3/11 + year: '2015' +- album: Someone To You + artist: BANNERS + filename: Someone To You.mp3 + genre: '' + last modified: 3/1/2023 + length: '220' + size: 3.64 MB + title: Someone to You + track: 1/3 + year: '2020' +- album: Precious Metal + artist: Starship + filename: Starship - Nothing's Gonna Stop Us Now.mp3 + genre: album rock + last modified: 12/10/2022 + length: '271' + size: 4.24 MB + title: Nothing's Gonna Stop Us Now + track: 9/18 + year: '1989' +- album: SOS + artist: SZA + filename: SZA-Conceited.mp3 + genre: R&B + last modified: 3/27/2023 + length: '151' + size: 2.45 MB + title: Conceited + track: 15/25 + year: '2023' +- album: SOS + artist: SZA + filename: SZA-Nobody Gets Me.mp3 + genre: R&B + last modified: 3/27/2023 + length: '181' + size: 2.79 MB + title: Nobody Gets Me + track: 14/25 + year: '2023' +- album: SOS + artist: SZA + filename: SZA-Seek & Destroy.mp3 + genre: R&B + last modified: 3/27/2023 + length: '204' + size: 3.32 MB + title: Seek & Destroy + track: 3/25 + year: '2023' +- album: Wish + artist: The Cure + filename: The Cure - Friday I'm In Love.mp3 + genre: new wave + last modified: 12/11/2022 + length: '216' + size: 7.15 MB + title: Friday I’m in Love + track: 7/12 + year: '1992' +- album: 'NOW That’s What I Call the 00s: The Best of the Noughties 2000–2009' + artist: The Killers + filename: The Killers - Mr BrightSide Lyrics.mp3 + genre: '' + last modified: 12/9/2022 + length: '228' + size: 3.58 MB + title: Mr. Brightside + track: 9/20 + year: '2017' +- album: Bad + artist: Michael Jackson + filename: The Way You Make Me Feel (2012 Remaster).mp3 + genre: Pop + last modified: 12/15/2022 + length: '298' + size: 5.13 MB + title: The Way You Make Me Feel + track: 2/11 + year: '2013' +- album: Dawn FM + artist: The Weeknd feat. Lil Wayne + filename: The Weeknd, Lil Wayne-I Heard You’re Married.mp3 + genre: Contemporary R&B + last modified: 2/4/2023 + length: '264' + size: 4.40 MB + title: I Heard You’re Married + track: 14/16 + year: '2022' +- album: Dawn FM + artist: The Weeknd + filename: The Weeknd-Gasoline.mp3 + genre: Contemporary R&B + last modified: 2/4/2023 + length: '212' + size: 3.66 MB + title: Gasoline + track: 2/16 + year: '2022' +- album: Dawn FM + artist: The Weeknd + filename: The Weeknd-How Do I Make You Love Me?.mp3 + genre: Contemporary R&B + last modified: 2/4/2023 + length: '214' + size: 3.51 MB + title: How Do I Make You Love Me? + track: 3/16 + year: '2022' +- album: Dawn FM + artist: The Weeknd + filename: The Weeknd-Sacrifice.mp3 + genre: Contemporary R&B + last modified: 2/4/2023 + length: '189' + size: 3.15 MB + title: Sacrifice + track: 5/16 + year: '2022' +- album: Dawn FM + artist: The Weeknd + filename: The Weeknd-Take My Breath.mp3 + genre: Contemporary R&B + last modified: 2/4/2023 + length: '339' + size: 5.74 MB + title: Take My Breath + track: 4/16 + year: '2022' +- album: 'Newsies: The Musical' + artist: Alan Menken + filename: The World Will Know.mp3 + genre: Musical + last modified: 2/4/2023 + length: '249' + size: 7.90 MB + title: The World Will Know + track: 7/20 + year: '2012' +- album: Thinking ’Bout You + artist: Dustin Lynch feat. MacKenzie Porter + filename: Thinking ‘Bout You (feat. MacKenzie Porter) [Official Music Video].mp3 + genre: '' + last modified: 12/10/2022 + length: '211' + size: 3.25 MB + title: Thinking ’Bout You + track: 1/1 + year: '2021' +- album: FanMail + artist: TLC + filename: TLC - No Scrubs.mp3 + genre: atl hip hop + last modified: 12/11/2022 + length: '214' + size: 7.05 MB + title: No Scrubs + track: 5/17 + year: '1999' +- album: Kiss + artist: Carly Rae Jepsen + filename: Tonight I’m Getting Over You.mp3 + genre: Pop + last modified: 2/4/2023 + length: '219' + size: 3.55 MB + title: Tonight I’m Getting Over You + track: 10/13 + year: '2012' +- album: Definitive Greatest Hits + artist: Trace Adkins + filename: Trace Adkins - Chrome.mp3 + genre: contemporary country + last modified: 1/20/2021 + length: '204' + size: 3.73 MB + title: Chrome + track: '4' + year: '2010-01-01' +- album: ASTROWORLD + artist: Travis Scott + filename: Travis Scott-SICKO MODE.mp3 + genre: Hip Hop + last modified: 3/16/2023 + length: '313' + size: 9.87 MB + title: SICKO MODE + track: 3/17 + year: '2018' +- album: High School Musical + artist: Zac Efron & Vanessa Hudgens + filename: Troy, Gabriella - Start of Something New (From "High School Musical").mp3 + genre: Pop + last modified: 2/4/2023 + length: '201' + size: 5.99 MB + title: Start of Something New + track: 1/11 + year: '2006' +- album: Try Everything + artist: Home Free + filename: Try Everything.mp3 + genre: '' + last modified: 8/16/2019 + length: '197' + size: 3.84 MB + title: Try Everything + track: '' + year: '2016' +- album: Eddie Money + artist: Eddie Money + filename: Two Tickets to Paradise.mp3 + genre: Rock + last modified: 12/15/2022 + length: '237' + size: 3.97 MB + title: Two Tickets to Paradise + track: 1/11 + year: '2016' +- album: Heart & Soul + artist: Vanessa Carlton + filename: Vanessa Carlton - A Thousand Miles.mp3 + genre: dance pop + last modified: 12/9/2022 + length: '240' + size: 4.58 MB + title: A Thousand Miles + track: 7/18 + year: '2013' +- album: Now That's What I Call Music! 91 + artist: WALK THE MOON + filename: WALK THE MOON - Shut Up and Dance.mp3 + genre: dance pop + last modified: 12/31/2021 + length: '195' + size: 6.37 MB + title: Shut Up and Dance + track: '10' + year: '2015-07-24' +- album: WAP (feat. Megan Thee Stallion) + artist: Cardi B, Megan Thee Stallion + filename: WAP (feat. Megan Thee Stallion).mp3 + genre: '' + last modified: 8/8/2020 + length: '188' + size: 5.99 MB + title: WAP (feat. Megan Thee Stallion) + track: '' + year: '2020' +- album: 'Newsies: The Musical' + artist: Alan Menken + filename: Watch What Happens.mp3 + genre: Musical + last modified: 2/4/2023 + length: '187' + size: 5.87 MB + title: Watch What Happens + track: 8/20 + year: '2012' +- album: High School Musical + artist: High School Musical Cast + filename: We're All In This Together.mp3 + genre: Pop + last modified: 3/16/2023 + length: '231' + size: 7.50 MB + title: We're All in This Together + track: 9/11 + year: '2006' +- album: Last Christmas + artist: Wham! + filename: Wham!-Last Christmas.mp3 + genre: Pop + last modified: 3/1/2023 + length: '263' + size: 8.11 MB + title: Last Christmas + track: 1/2 + year: '2014' +- album: If I Know Me + artist: Morgan Wallen + filename: Whiskey Glasses.mp3 + genre: Country/Pop + last modified: 2/4/2023 + length: '234' + size: 3.82 MB + title: Whiskey Glasses + track: 4/14 + year: '2018' +- album: Whitney + artist: Whitney Houston + filename: Whitney Houston - I Wanna Dance with Somebody (Who Loves Me).mp3 + genre: dance pop + last modified: 12/11/2022 + length: '293' + size: 4.55 MB + title: I Wanna Dance With Somebody (Who Loves Me) + track: 1/11 + year: '1987' +- album: The Middle + artist: Zedd, Maren Morris & Grey + filename: Zedd, Maren Morris, Grey - The Middle.mp3 + genre: complextro + last modified: 12/11/2022 + length: '185' + size: 5.84 MB + title: The Middle + track: 1/1 + year: '2018' +- album: null + artist: null + filename: build on 4/4/2023 with Mp3tag v3.20 - the universal Tag editor - http://www.mp3tag.de/en/ + genre: null + last modified: null + length: null + size: null + title: null + track: null + year: null diff --git a/test/m3u_input/thingsonphone2.m3u8 b/test/m3u_input/thingsonphone2.m3u8 new file mode 100644 index 0000000..e50a922 --- /dev/null +++ b/test/m3u_input/thingsonphone2.m3u8 @@ -0,0 +1,179 @@ +# +E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\Cascada - Everytime We Touch (Fallen Superhero Hardstyle Remix).mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\Clean Bandit ft. Demi Lovato - Solo (Twisted Melodiez Bootleg) [Free Release].mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\Da Tweekaz - Frozen (Disney Tool) (Official Preview).mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\100 gecs - Frog On The Floor.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\100 gecs - Dumbest Girl Alive.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\Adele - Rolling in the Deep.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\Once And For All.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\The World Will Know.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\Watch What Happens.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\Watch What Happens.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Aldrey - La Lista (Lyric Video Oficial) #LaLista.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\Crazier Than You.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\Pulled.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\Ariana Grande - One Last Time.mp3 +E:\Captures\Audio Files\Music\goodsongs4\Ariana Grande, Zedd - Break Free.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\Ariana Grande, Zedd - Break Free.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\Ariana Grande - 7 rings.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\Avicii - The Nights.mp3 +E:\Captures\Audio Files\Music\spotifystuff\90s\Backstreet Boys - Quit Playing Games (With My Heart).mp3 +E:\Captures\Audio Files\Music\spotifystuff\90s\Backstreet Boys - As Long as You Love Me.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Backstreet Boys - I Want It That Way.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Backstreet Boys - Show Me the Meaning of Being Lonely.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\Rock and A Hard Place.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\Someone To You.mp3 +E:\Captures\Audio Files\Music\goodsongs4\Billie Eilish - bad guy.mp3 +E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Billy Joel - Uptown Girl.mp3 +E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Bonnie Tyler - Total Eclipse of the Heart.mp3 +E:\Captures\Audio Files\Music\M4A Files\02 Waiting for a Star to Fall.m4a +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Bruno Mars - 24K Magic.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\Bruno Mars - Locked out of Heaven.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\WAP (feat. Megan Thee Stallion).mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Cut To The Feeling.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\Carly Rae Jepsen-Felt This Way.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\Carly Rae Jepsen-Solo.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\Carly Rae Jepsen-This Love Isn't Crazy.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\Carly Rae Jepsen-Emotion.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\Carly Rae Jepsen-I Didn’t Just Come Here To Dance.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\Carly Rae Jepsen-Let’s Get Lost.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Run Away With Me.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\Carly Rae Jepsen - Call Me Maybe.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\Carly Rae Jepsen - Guitar String ⧸ Wedding Ring.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Tonight I’m Getting Over You.mp3 +E:\Captures\Audio Files\Music\spotifystuff\90s\Cher - Believe.mp3 +E:\Captures\Audio Files\Music\spotifystuff\My 80's Playlist\Cher - If I Could Turn Back Time.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Childish Gambino, Donald Glover-3005.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\Cole Swindell - She Had Me At Heads Carolina.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\[I Just] Died In Your Arms.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\Seize the Day - Disney's NEWSIES (Official Lyric Video).mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\Dua Lipa - IDGAF.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\Dua Lipa - Cool.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\Dua Lipa - Don't Start Now.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\Dua Lipa - Hallucinate.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\Dua Lipa, DaBaby - Levitating (feat. DaBaby).mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\Thinking ‘Bout You (feat. MacKenzie Porter) [Official Music Video].mp3 +E:\Captures\Audio Files\Music\spotifystuff\90s\Phil Collins - You'll Be In My Heart.mp3 +E:\Captures\Audio Files\Music\spotifystuff\90s\Phil Collins - You'll Be In My Heart.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\Ed Sheeran - Castle on the Hill.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Two Tickets to Paradise.mp3 +E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Elton John - I'm Still Standing.mp3 +E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Erasure - A Little Respect - 2009 Remastered Version.mp3 +E:\Captures\Audio Files\Music\spotifystuff\Good Country\Eric Church - Round Here Buzz.mp3 +E:\Captures\Audio Files\Music\spotifystuff\90s\Extreme - More Than Words.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Faith Hill - Breathe.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Sledgehammer.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\George Michael-Careless Whisper.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\I Will Survive.mp3 +E:\Captures\Audio Files\Music\spotifystuff\90s\Go West - The King of Wishful Thinking.mp3 +E:\Captures\Audio Files\Music\2000'sThrowbacks\Gotye - Somebody That I Used To Know (Lyrics).mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Sea Shanty Medley.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Try Everything.mp3 +E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Huey Lewis & The News - The Power Of Love.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Jay Sean, Lil Wayne - Down.mp3 +E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\Jesse & Joy, J Balvin - Mañana Es Too Late.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\Heads Carolina, Tails California.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Jonas Blue, Jack & Jack - Rise.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Separate Ways (Worlds Apart).mp3 +E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Journey - Don't Stop Believin'.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Juanes - La Camisa Negra.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Kanye West - Heartless.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Katy Perry, Snoop Dogg - California Gurls.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\Katy Perry - Firework.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Katy Perry - Teenage Dream.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Kesha - TiK ToK.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Kesha - Your Love Is My Drug.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\Kiss - I Was Made For Lovin' You.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Lady Gaga - Poker Face.mp3 +E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Laura Branigan - Gloria.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Lil Nas X, Jack Harlow - INDUSTRY BABY.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\Linkin Park-In the End.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\disneysongs\Auli'i Cravalho - How Far I'll Go (from Moana_Official Video).mp3 +E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Lionel Richie - Dancing On The Ceiling.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\2 Be Loved (Am I Ready).mp3 +E:\Captures\Audio Files\Music\spotifystuff\90s\Lonestar - Amazed.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\Play It Again.mp3 +E:\Captures\Audio Files\Music\nickremixes\lukebryan_playitagain_notmyjugremix.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\Luke Combs - The Kind of Love We Make.mp3 +E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Madonna - Like a Prayer.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\MAGIC! - Rude.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\Marianas Trench - Desperate Measures.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\Marianas Trench - Haven't Had Enough.mp3 +E:\Captures\Audio Files\Music\spotifystuff\90s\Meat Loaf - I'd Do Anything For Love (But I Won't Do That) - Single Edit.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\The Way You Make Me Feel (2012 Remaster).mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Besos En Guerra.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Cuando Nadie Ve.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Presiento.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\Whiskey Glasses.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\Whiskey Glasses.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\Morgan Wallen - Last Night.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\My Chemical Romance - Welcome to the Black Parade.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Natasha Bedingfield - Unwritten.mp3 +E:\Captures\Audio Files\Music\historystuff\Nightcore\Nightcore_020_Nightcore - Bad boy.mp3 +E:\Captures\Audio Files\Music\historystuff\Nightcore\Nightcore_018_Nightcore - Everytime We Touch.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\Best Song Ever.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\One Direction - Story of My Life.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Panic! At The Disco - I Write Sins Not Tragedies.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Paramore - Misery Business.mp3 +E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Paul Simon - You Can Call Me Al.mp3 +E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Phil Collins - Against All Odds (Take a Look at Me Now) - 2016 Remaster.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Prince Royce, Shakira - Deja Vu - Lyrics English and Spanish - Deja Vu - Translation & Meaning.mp3 +E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Queen, David Bowie - Under Pressure - Remastered 2011.mp3 +E:\Captures\Audio Files\Music\Music_From_DadsOldLaptop\Queen\The Platinum Collection, Vol. 1-3 Disc 2\16 The Show Must Go On.wma +E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\REO Speedwagon - Can't Fight This Feeling.mp3 +E:\Captures\Audio Files\Music\spotifystuff\My 80's Playlist\Rick Astley - Never Gonna Give You Up.mp3 +E:\Captures\Audio Files\Music\spotifystuff\My 80's Playlist\Rick Astley - Whenever You Need Somebody.mp3 +E:\Captures\Audio Files\Music\spotifystuff\90s\Ricky Martin - Livin' la Vida Loca.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Rihanna - Only Girl (In The World).mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\Sam Smith, Normani - Dancing With A Stranger (with Normani).mp3 +E:\Captures\Audio Files\Music\historystuff\Nightcore\Nightcore_204_Nightcore - Gotta Be Somebody.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\Selena Gomez, Marshmello - Wolves.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Set It Off - Wolf in Sheep's Clothing (feat. William Beckett).mp3 +E:\Captures\Audio Files\Music\goodsongs2\01 Man! I Feel Like a Woman!.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\Shawn Mendes - If I Can't Have You.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Leave The Door Open.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Silvestre Dangond, Nicky Jam - Cásate Conmigo (Official Video).mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\Johann Pachelbel - Canon In D (Jatimatic Hardstyle Bootleg) _ HQ Videoclip.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Reik, Morat - La Bella y la Bestia (Letra_Lyrics).mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\SZA-Conceited.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\SZA-Nobody Gets Me.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\SZA-Seek & Destroy.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Getaway Car.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Luis Fonsi, Demi Lovato ‒ Echame La Culpa (Lyrics).mp3 +E:\Captures\Audio Files\Music\spotifystuff\90s\The Cure - Friday I'm In Love.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\The Weeknd-Gasoline.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\The Weeknd-How Do I Make You Love Me?.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\The Weeknd, Lil Wayne-I Heard You’re Married.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\The Weeknd-Sacrifice.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\The Weeknd-Take My Breath.mp3 +E:\Captures\Audio Files\Music\spotifystuff\90s\TLC - No Scrubs.mp3 +E:\Captures\Audio Files\Music\spotifystuff\Trace Adkins - Chrome.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Travis Scott-SICKO MODE.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\Dua Lipa - Love Again (Official Music Video).mp3 +E:\Captures\Audio Files\Music\spotifystuff\90s\Peabo Bryson, Regina Belle - A Whole New World (Aladdin's Theme).mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Lizzo - About Damn Time (Lyrics).mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\Glimpse of Us.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\disneysongs\Panic! At The Disco-Into the Unknown (Panic! At The Disco Version).mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\disneysongs\Idina Menzel, AURORA - Into the Unknown (From 'Frozen 2').mp3 +E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Vanessa Carlton - A Thousand Miles.mp3 +E:\Captures\Audio Files\Music\2000'sThrowbacks\Estelle - American Boy, Lyrics.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\Troy, Gabriella - Start of Something New (From "High School Musical").mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\We're All In This Together.mp3 +E:\Captures\Audio Files\Music\2000'sThrowbacks\Justin Timberlake - Sexy Back [Lyrics].mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\Me And My Broken Heart.mp3 +E:\Captures\Audio Files\Music\2000'sThrowbacks\The Killers - Mr BrightSide Lyrics.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\Little Mix - Black Magic.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\WALK THE MOON - Shut Up and Dance.mp3 +E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Starship - Nothing's Gonna Stop Us Now.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Juan Gabriel - No Tengo Dinero (Cover Audio).mp3 +E:\Captures\Audio Files\Music\Music_From_DadsOldLaptop\Roots of Rock- New Wave\01 Everybody Wants to Rule the World.wma +E:\Captures\Audio Files\Music\2000'sThrowbacks\Just The Way You Are- Bruno Mars (Lyrics on Screen).mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\Naked Eyes - Always Something There To Remind Me (Official Video).mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Wham!-Last Christmas.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Wham!-Last Christmas.mp3 +E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Whitney Houston - I Wanna Dance with Somebody (Who Loves Me).mp3 +E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Whitney Houston - I Wanna Dance with Somebody (Who Loves Me).mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\♪ Diggy Diggy Hole.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\Zedd, Maren Morris, Grey - The Middle.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\Zedd, Maren Morris, Grey - The Middle.mp3 +E:\Captures\Audio Files\Music\spotifystuff\2010s\Ariana Grande - Into You.mp3 From 39a8152b5e7d523431633c657ccfd3ab17e296d6 Mon Sep 17 00:00:00 2001 From: vtwarrior25 Date: Thu, 6 Apr 2023 23:03:37 -0400 Subject: [PATCH 3/6] Added m3u to yapl using either beets or file metadata --- beetsplug/__pycache__/yapl.cpython-39.pyc | Bin 0 -> 6579 bytes beetsplug/yapl.py | 179 +++-- setup.py | 1 + test.py | 53 +- test/csv_input/latinstuff.csv | 81 +++ test/csv_output/latinstuff.yaml | 806 ++++++++++++++++++++++ test/m3u_input/thingsonphone2.m3u8 | 10 +- 7 files changed, 1047 insertions(+), 83 deletions(-) create mode 100644 beetsplug/__pycache__/yapl.cpython-39.pyc create mode 100644 test/csv_input/latinstuff.csv create mode 100644 test/csv_output/latinstuff.yaml diff --git a/beetsplug/__pycache__/yapl.cpython-39.pyc b/beetsplug/__pycache__/yapl.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ac599fecf10cae260a8e678d23dbff62026e36d8 GIT binary patch literal 6579 zcmbtYO^h7Jb?*P^?)lv%MTwGZj7eG4DAG!bltkGq2uq@9$&ogSL_=m{nQ?QfcQ~t_ z>DlTUGCQa-46I-d#`79cb0UJ zpBZ#@)vMpG`rh~6tGHed4g7xoqZh<$9mDt+DxCf~D0~Y~{zD|f5N2u&&B!z84I zj%?1`sWWsVm-9~QMIP#%v=UYDc2j>CM8Tpij6$xfMpb^-q8i>_S|2u|hH3N-QTf7* zn%_2rFM^K^5hUiJ9kqn>fzb*7fK?bBv#7qFBr1O|o%9DI6vGcDw|m)e7>@)>6`7>t zSl!u1-gyrhlHC}L4sOK#j$gQOdV4Y~yjZG1t_ruGjAT-HX)@}oJB7bHNRxapO$t{H zR7x)y_dY6|gCv$cn*Q|9Lg8C@@^_FVMq~;jvV&P2#jY#8kaDA7f$n^1IV>%i&O1uBYQk8yi?u z7T;DlyOU9`Si|DGD(ljhc6n*V`f1T{{IZJsMHM40n|0j6$&++9YA%NAE|3^qKu?t& z4|Obm>_lFUcU-fEaTh%ngM4Mk$FR=(Z@#g)^W8j=`A#p(hl8DsvCQ_8p2~N|2kK5X z+Tq1MPm?{L$pO?NPD|MsO0q-pjqyR@FNV$62tw;f46|nXrypxtze%l^EqjEx<&Vgs zhKCXOAIJ~_wfPIeW$ zpME*3=*qkz+#@0tPg{2lnX;s!E#X}>egPu*9HU`$`6CATOvF%4>7-} za;bJi`8wwtocBMka9?WMJTm9OkueLjBmYT-I?(Q+g%al10k@)+_>|ipe+Y_m@IM5> zjan}m`M3ZD=|1XP&!rvBwOzjx!^m%kep z&L|!x)9~_p@4R;Nowq-@v00d5S^f6*^-W1zJGGu`OP?}!`}ww{oh}?2sZ%Z7u^fz4 z;Q`FMgMMN66ID33vn-WF3q>`~yM%d~q;RrvGAi7ASQ`jTW|NU9JdyM=kw`kuPADIx zPE2;(!(Xa(;iAtlmrwAZ*+h*es{EMhqCm40=5ApQWE+hbpJj59`UE^{7kltE6!Whm zG0cY9GS?YrA<_$YUV+RpL;R-=#@lhX6~ML7JHW$$dj({uN|2cZGKQ2x1o*L`?75?z zBlFqx9RiBGvnmnj$A+#Fta#>{2E;UAII9C-bwIwM8zTJ3lE2ZxysGP> zdeLBj{RHwVrhuCJ60?H!tXHPLv~m^HOAuj{7v0ayU@G)VWKeF@*3 zKXn?W`_D2^o7+V|6u<|$Vp7O}5q>_vlRt%|kNv&%B+Q992gr}i{7KH4N2Y{v_^Gu| zrop=JZXCqJbV{#r`juJu$w=h)2I|gNR$*VLyyOxsJc zAq%sym1ey-&95S}Y57bVb4d_^>!Rjw*rSh9d3MpVz;2qZKes|D%^ zEg$JRzaKLnLrue+)=uN7N2j>_(P94s)C6Q56;yy+)x zR;ZiK@tC?_{ohiz_aJreRhHyUyN~nuEePBP-77w#G8~bfqjp1#A1@%)*`$%=&ARU7|u))GR2b%lgsZ=r6W*TI7EPwRl!jQ<3zqi zbuP3AeQMk%S6N@iw(Q6*(2yIe^q3THT5?rlo6~l=5PZRE|sM$ zXb_@F=*pMy>}{0Xk}DBABHr9G6g+zEEFBqc?~#KAeW|Em9wN4M$n`q1K7EV5c=+sa zlmgbj_AFF29qz$pnm2?8$3tpw-Xsa@6H1t+vbEy!FyH>_w8m%~eK?lb|GKu}s`%Ug z4~=oj#J>99tIP!ZRjSO>yvgv($@yhv%^#{X#K0$-bKkrS-yYhK!|I*@|NGRaO9{DW zjBQqi!W$pZ_)&nMf;^){%47Wi?#Z+>?!7#l$X+7^=!;p)sR;8?7*E6?E7c)5&YwYSQD4~!g^qa}iD8~6jN)nFPdQj} zV3w@-(+EVT>kn?@id{L6F^=u|a}TvEB|5>h91_eBYa$#lZv7|4niQV`eZH_^9bh|z zLk_)if#)iMfErwDSGeG5a`8vAI)Z{ayuQlkHe7jg?rFr8v!<%(CY<}0ZV4Yw{1>{0 zK%yyv(z#c-;nB^dChSLO6`<9xA+PGji5%tH>9Ve2&evyay#94XD|lvhPE}M@ugz=v z9L2h@Oc*Qw{ZgXW^*Pv{-y;a|^*ZayZ(&~$M6j)?Q4*SA5jk`UDhCSTuN~Ic{b`Zt%kc4>rye7ZPZ6T`<$=^ zlE_oOPcnz<3+_b2M*-P^hmtNq?ZvX>xTz?C9aqE-U11K85t3Bea+3(|!%N)(Le z0!lT!rxzH`q;4zsN-K~ivvv&WOaEg?-}?6%;7n9XS1d%N!U3p5lwFjo4C)#{%^(mS z08s^`eg?;f=({;>C=XX31nAa>#t0MBUm?al0VNcL+$jI1vA^@8p<8BAS` z2cQA^75ICm#XJr+cSt!-{XM!`Ja0}PeLw}ud(UlLYx&(SIZ54a5q7)7OiWVB*Sg(( z+~t-vk~~|EOF1^=?U3XTN#0{pQeNz-4`A1puA^iV2|YR8BtcDU{+j=U@B5eiNBqlN z+gXe1e0#b": + if not len(row[field]) == 0: + lowerfield = field.lower() + if lowerfield in fieldstograb: + tempdict[lowerfield] = row[field] datalist.append(tempdict) print("Export path: " + str(output_file)) data["tracks"] = datalist - self.write_yapl(self, output_file, data) + self.write_yapl(output_file, data) ## Take all m3u files located at the input path and create yaml representations for them - - def m3u_to_yapl (self, lib, opts, args): - input_path = Path(self.config['m3u_input_path'].as_filename()) - - m3u_files = [f for f in os.listdir(input_path) if f.endswith('.m3u')] + def get_m3u_paths (self, input_path): + m3u_files = [f for f in os.listdir(input_path) if f.endswith('.m3u8')] + paths_list = list() for m3u_file in m3u_files: - + fileinfo = dict() + fileinfo["filename"] = Path(m3u_file).stem print(f"Parsing {m3u_file}") - playlist = m3u8.load(m3u_file) - print(playlist.segments) - #with io.open(input_path / m3u_file, 'r', encoding='utf8') as file: - # if (f.readline() = "#EXTM3U\n": - # for line in f: - # if + paths = list() + parser = py_m3u.M3UParser() + with io.open (input_path / m3u_file, 'r') as file: + audiofiles = parser.load(file) + for audiofile in audiofiles: + #print("Path = " + audiofile.source) + if not str(audiofile.source).endswith("#"): + paths.append(audiofile.source) + fileinfo["paths"] = paths + paths_list.append(fileinfo) + return paths_list + - - - output_name = Path(csv_file).stem - output_file = output_name + ".yaml" - # Defining the dictionary and list that will go inside the dictionary - data = dict() - datalist = list() - # Adding the high level parts of the dict thing - data["name"] = output_name - - print(playlist.fieldnames) - - for row in playlist: - #pprint.pprint(row) - tempdict = dict() - # Putting values into the temporary dictionary - tempdict["filename"] = row["Filename"] - tempdict["title"] = row["Title"] - tempdict["artist"] = row["Artist"] - tempdict["album"] = row["Album"] + def m3u_to_yapl_beets(self, lib, opts, args): + input_path = Path(self.config['m3u_path'].as_filename()) + dataforyapl = dict() + paths_list = self.get_m3u_paths(input_path) + for file in paths_list: + filename = file['filename'] + output_file = filename + ".yaml" + paths = file['paths'] + songlist = list() + foundsongs = [] + dataforyapl["name"] = filename + # For each path in paths, see if it is present in the beets Library + for path in paths: + querystr = f'"path:{path}"' + results = lib.items(querystr) + l = len(results) + # If the path is present, add the song to the foundsongs list + if l == 1: + foundsongs.append(results[0]) + print(f"Results: {results}") + elif l == 0: print(f"No results for query: {querystr}") + else : print(f"Multiple results for query: {querystr}") + # For each song in foundsongs, create a dict to store the metadata, grab the metadata in each field listed in fieldstograb, and add the dict with the metadata to the list of songdata dicts + for song in foundsongs: + songdata = dict() + #fieldstograb = ["album", "artist", "genre", "length", "filesize", "title", "track", "year"] + for grabfield in fieldstograb: + if not len(str(song.get(grabfield))) == 0: + songdata[grabfield] = song.get(grabfield) + songlist.append(songdata) + # Add songlist, which contains loads of songdata dicts, to dataforyapl, and then call the write_yapl function to create a yapl file + dataforyapl["tracks"] = songlist + self.write_yapl(output_file, dataforyapl) - datalist.append(tempdict) - print("Export path: " + str(output_file)) - data["tracks"] = datalist - self.write_yaml(self, output_file, data) + def m3u_to_yapl_mp3tag(self, lib, opts, args): + input_path = Path(self.config['m3u_path'].as_filename()) + dataforyapl = dict() + paths_list = self.get_m3u_paths(input_path) + # For each file in paths_list, the filename and paths are grabbed + for file in paths_list: + failcount = 0 + filename = file['filename'] + output_file = filename + ".yaml" + paths = file['paths'] + songlist = list() + foundsongs = [] + dataforyapl["name"] = filename + # For each path in paths, we are going to grab the metadata, and add the items into the + for path in paths: + songdata = dict() + try: + metadata = TinyTag.get(path) + except: + print(f"No file found at the given path: {path}") + failcount = failcount + 1 + else: + #print(str(type(metadata))) + #print(metadata.album) + songdata["album"] = metadata.album + songdata["artist"] = metadata.artist + songdata["genre"] = metadata.genre + songdata["length"] = metadata.duration + songdata["filesize"] = metadata.filesize + songdata["title"] = metadata.title + songdata["track"] = metadata.track + songdata["year"] = metadata.year + #for grabfield in fieldstograb: + #if grabfield == "length": + #songdata[grabfield] = metadata.duration + #else: + #songdata[grabfield] = metadata.grabfield + songlist.append(songdata) + dataforyapl["tracks"] = songlist + print(f"Failcount for {filename}: {failcount}") + self.write_yapl(output_file, dataforyapl) + + + \ No newline at end of file diff --git a/setup.py b/setup.py index 272e67c..45240cd 100644 --- a/setup.py +++ b/setup.py @@ -19,6 +19,7 @@ install_requires=[ 'beets>=1.4.7', 'py-m3u>=0.0.1', + 'tinytag>=1.8.1' ], classifiers=[ diff --git a/test.py b/test.py index 2a8121e..21711cf 100644 --- a/test.py +++ b/test.py @@ -7,18 +7,18 @@ # csv imports import io import csv -import m3u8 +import py_m3u class Yapl: ## Write out the data from csv_to_yaml out to .yaml files - def write_yapl(self, filename, data): + #def write_yapl(self, filename, data): #output_path = Path(self.config['yaml_output_path'].as_filename()) - output_path = Path("./test/csv_output/" + filename) + #output_path = Path("./test/csv_output/" + filename) - with io.open(output_path, 'w', encoding='utf8') as outfile: - yaml.dump(data, outfile, default_flow_style=False, allow_unicode=True) + #with io.open(output_path, 'w', encoding='utf8') as outfile: + #yaml.dump(data, outfile, default_flow_style=False, allow_unicode=True) ## Take all csv files located at the input path and create yaml representations for them def csv_to_yapl(self): @@ -61,27 +61,44 @@ def csv_to_yapl(self): print("Export path: " + str(output_file)) data["tracks"] = datalist - self.write_yapl(self, output_file, data) + #self.write_yapl(self, output_file, data) + output_path = Path("./test/csv_output/" + output_file) + with io.open(output_path, 'w', encoding='utf8') as outfile: + yaml.dump(data, outfile, default_flow_style=False, allow_unicode=True) - def m3u_to_yapl (self): + + def m3u_to_yapl (lib, opts, args): input_path = Path('./test/m3u_input') m3u_files = [f for f in os.listdir(input_path) if f.endswith('.m3u8')] for m3u_file in m3u_files: print(f"Parsing {m3u_file}") - m3upath = str(Path(input_path) / Path(m3u_file)) - print(m3upath) - playlist = m3u8.load(m3upath) - print(playlist.files) - segmentlist = playlist.segments - print(segmentlist.__str__()) - print(segmentlist.uri) - #for segment in segmentlist: - # print(segment.uri) - # print(segment.base_uri) + #m3upath = str(Path(input_path) / Path(m3u_file)) + paths = list() + parser = py_m3u.M3UParser() + querybase = "path:" + with io.open (input_path / m3u_file, 'r') as file: + audiofiles = parser.load(file) + for audiofile in audiofiles: + #print(audiofile.source) + paths.append(audiofile.source) + #item = library.Item.read() + for path in paths: + querystr = querybase + path + pathquery = queryparse.query_from_strings(queries.AndQuery, library.Item, {}, querystr) + print("Pathquery type: " + str(type(pathquery))) + results = library.Library.items(querystr) + l = len(results) + if l == 1: items.append(results[0]) + elif l == 0: print(f"No results for query: {query}") + else : print(f"Multiple results for query: {query}") + + + + beans = Yapl beans.csv_to_yapl(beans) -beans.m3u_to_yapl(beans) \ No newline at end of file +#beans.m3u_to_yapl(beans) \ No newline at end of file diff --git a/test/csv_input/latinstuff.csv b/test/csv_input/latinstuff.csv new file mode 100644 index 0000000..837962d --- /dev/null +++ b/test/csv_input/latinstuff.csv @@ -0,0 +1,81 @@ +Filename,Title,Artist,Album,Track,Year,Genre,Length,Size,Last Modified,Path +"“Besos En Guerra' ️- Morat & Juanes (LETRA).mp3","Besos en guerra","Morat & Juanes","Balas perdidas",3/12,2018,Latin Pop,230,3.74 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Aitana - TELÉFONO.mp3","Teléfono","Aitana","Teléfono",1/1,2018,latin pop,166,2.74 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" +"Aitana - TELÉFONO.mp3","Teléfono","Aitana","Teléfono",1/1,2018,,164,2.72 MB,12/10/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Aldrey - La Lista (Lyric Video Oficial) #LaLista.mp3","Aldrey - La Lista (Lyric Video Oficial) #LaLista","AldreyMusica","",,2013,,259,4.05 MB,6/3/2017,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Alvaro Soler - La Libertad.mp3","La Libertad","Alvaro Soler","Mar De Colores (Versión Extendida)",1,2019-05-10,latin pop,194,2.51 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" +"Alvaro Soler - Puebla.mp3","Puebla","Alvaro Soler","Mar De Colores",5,2018-09-21,latin pop,193,3.07 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" +"Alvaro Soler - Puebla.mp3","Puebla","Alvaro Soler","Mar De Colores",5,2018-09-21,latin pop,193,3.07 MB,1/21/2021,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Besos En Guerra.mp3","Besos en guerra","Morat & Juanes","Balas perdidas",3/12,2018,Latin Pop,232,3.76 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Bomba Estéreo - To My Love.mp3","To My Love","Bomba Estéreo","Amanecer",9/11,2015,cumbia,243,4.63 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" +"Camilo, Pedro Capó - Tutu.mp3","Tutu","Camilo + Pedro Capó","Tutu",1/1,2019,colombian pop,181,3.18 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" +"Carlos Vives, Sebastian Yatra - Robarte un Beso.mp3","Robarte un beso","Carlos Vives & Sebastián Yatra","Vives",13/18,2017,champeta,196,3.16 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" +"Carlos Vives, Sebastian Yatra - Robarte un Beso.mp3","Robarte un beso","Carlos Vives & Sebastián Yatra","Vives",13/18,2017,champeta,196,3.16 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Chayanne - Madre Tierra (Oye).mp3","Madre Tierra (Oye)","Chayanne","En todo estaré",1/11,2014,latin,208,3.40 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" +"Chayanne - Madre Tierra (Oye).mp3","Madre Tierra (Oye)","Chayanne","En todo estaré",1/11,2014,latin,208,3.40 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"ChocQuibTown - Somos los Prietos (feat. Alexis Play).mp3","Somos los Prietos (feat. Alexis Play)","ChocQuibTown/Alexis Play","Sin Miedo",4,2018-05-25,colombian hip hop,229,3.71 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" +"Chyno Miranda, Wisin, Gente De Zona - Quédate Conmigo.mp3","Quédate conmigo","Chyno Miranda feat. Wisin y Gente de Zona","Quédate conmigo",1/1,2017,latin,225,3.59 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" +"CNCO - Tan Fácil.mp3","Tan fácil","CNCO","Primera cita",2/14,2016,boy band,213,3.63 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" +"CNCO - Tan Fácil.mp3","Tan fácil","CNCO","Primera cita",2/14,2016,boy band,213,3.63 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"CNCO, Prince Royce - Llegaste Tú.mp3","Llegaste tú","CNCO + Prince Royce","Llegaste tú",1/1,2018,boy band,193,3.24 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" +"CNCO, Prince Royce - Llegaste Tú.mp3","Llegaste tú","CNCO + Prince Royce","Llegaste tú",1/1,2018,boy band,193,3.24 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Cocoa Roots - Me Gusta.mp3","Me Gusta","Cocoa Roots","Alerta",3,2017-05-20,ecuadorian pop,202,3.22 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" +"Cuando Nadie Ve.mp3","Cuando nadie ve","Morat","Cuando nadie ve",1/1,2018,Latin Pop,219,3.55 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Daddy Yankee, Snow - Con Calma.mp3","Con calma","Daddy Yankee feat. Snow","Con calma",1/1,2019,latin,194,3.42 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Danny Ocean - Swing.mp3","Swing","Danny Ocean","54+1",13/13,2019,latin,156,2.76 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" +"Danny Ocean - Swing.mp3","Swing","Danny Ocean","54+1",13/13,2019,latin,156,2.76 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"David Rees - De Ellos Aprendí.mp3","De Ellos Aprendí","David Rees","De Ellos Aprendí",1,2019-02-06,latin viral pop,267,4.45 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" +"Diego Torres, Carlos Vives - Un Poquito.mp3","Un poquito","Diego Torres & Carlos Vives","Un poquito",1/1,2018,latin,188,3.50 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" +"Diego Torres, Carlos Vives - Un Poquito.mp3","Un poquito","Diego Torres & Carlos Vives","Un poquito",1/1,2018,latin,188,3.50 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Don Omar, Lucenzo - Danza Kuduro.mp3","Danza kuduro","Don Omar feat. Lucenzo","Meet the Orphans",14/21,2010,latin,201,3.20 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Gianluca Vacchi, Sebastian Yatra - LOVE.mp3","LOVE","Gianluca Vacchi & Sebastián Yatra","LOVE",1/1,2018,,192,3.12 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" +"GIMS, Alvaro Soler, Jugglerz - Lo Mismo.mp3","Lo mismo","Maître Gims feat. Álvaro Soler","Lo mismo",1/1,2018,francoton,211,3.37 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" +"GIMS, Alvaro Soler, Jugglerz - Lo Mismo.mp3","Lo mismo","Maître Gims feat. Álvaro Soler","Lo mismo",1/1,2018,francoton,211,3.37 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"HaAsh - 30 de Febrero (feat. Abraham Mateo).mp3","30 de febrero","Ha*Ash feat. Abraham Mateo","30 de febrero",1/12,2017,latin,202,3.33 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" +"HaAsh, Prince Royce - 100 Años.mp3","100 años","Ha*Ash & Prince Royce","100 años",1/1,2017,latin,188,3.30 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" +"Jesse & Joy, J Balvin - Mañana Es Too Late.mp3","Mañana es Too Late","Jesse & Joy and J Balvin","Mañana es Too Late",1/1,2019,latin,196,3.23 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Juan Gabriel - No Tengo Dinero (Cover Audio).mp3","No tengo dinero","Juan Gabriel","Roma: Original Motion Picture Soundtrack",3/19,2018,Ballad/Danzón/Latin/Pop/Ranchera,187,3.10 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Juan Luis Guerra 4.40 - Kitipun.mp3","Kitipun","Juan Luis Guerra 4.40","Kitipun",1/1,2019,bachata,219,3.87 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" +"Juanes - La Camisa Negra.mp3","Juanes - La Camisa Negra","JuanesVEVO","",,2009,,247,8.31 MB,9/4/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Juanes - La Plata (feat. Lalo Ebratt).mp3","La plata","Juanes ft. Lalo Ebratt","La plata",1/1,2019,colombian pop,194,3.13 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" +"Juanes - La Plata (feat. Lalo Ebratt).mp3","La plata","Juanes ft. Lalo Ebratt","La plata",1/1,2019,colombian pop,199,3.37 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Lalo Ebratt, Sebastian Yatra, Yera, Trapical Minds - Déjate Querer.mp3","Déjate querer","Lalo Ebratt x Sebastián Yatra x Yera","Déjate querer",1/1,2019,colombian hip hop,205,3.72 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Luis Fonsi, Daddy Yankee - Despacito.mp3","Despacito","Luis Fonsi & Daddy Yankee","VIDA",9/15,2019,latin,231,4.04 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Luis Fonsi, Demi Lovato ‒ Echame La Culpa (Lyrics).mp3","Luis Fonsi, Demi Lovato ‒ Echame La Culpa (Lyrics)","Taz Network","",,2017,,189,3.73 MB,12/1/2019,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Luis Fonsi, Demi Lovato - Échame La Culpa.mp3","Échame la culpa","Luis Fonsi & Demi Lovato","VIDA",7/15,2019,latin,176,2.93 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Luis Fonsi, Sebastian Yatra, Nicky Jam - Date La Vuelta.mp3","Date la vuelta","Luis Fonsi, Sebastián Yatra & Nicky Jam","Date la vuelta",1/1,2019,latin,222,3.64 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Macaco - Toc Toc - Banda Sonora Original de la Película ”Toc Toc”.mp3","Toc Toc - Banda Sonora Original de la Película ”Toc Toc”","Macaco","Toc Toc (Banda Sonora Original de la Película ”Toc Toc”)",1,2017-06-16,latin alternative,224,3.62 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" +"MAFFiO - No Tengo Dinero (Official Lyric Video).mp3","MAFFiO - No Tengo Dinero (Official Lyric Video)","Span Glish","",,2013,,224,3.83 MB,5/9/2019,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Mau y Ricky, Camilo, Lunay - La Boca - Remix.mp3","La boca (remix)","Mau y Ricky, Camilo & Lunay","La boca (remix)",1/1,2019,latin,192,3.17 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Morat - Aprender A Quererte.mp3","Aprender A Quererte","Morat","Sobre El Amor Y Sus Efectos Secundarios",3,2016-06-17,colombian pop,228,3.93 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" +"Morat - Aprender A Quererte.mp3","Aprender A Quererte","Morat","Sobre El Amor Y Sus Efectos Secundarios",3,2016-06-17,colombian pop,228,4.01 MB,1/21/2021,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Morat - Cuando Nadie Ve.mp3","Cuando nadie ve","Morat","Balas perdidas",10/12,2018,colombian pop,222,3.53 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" +"Morat - Cuando Nadie Ve.mp3","Cuando nadie ve","Morat","Balas perdidas",10/12,2018,colombian pop,222,3.54 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Morat - No Se Va.mp3","No se va","Morat","Balas perdidas",5/12,2018,colombian pop,218,3.63 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" +"Morat - No Se Va.mp3","No se va","Morat","Balas perdidas",5/12,2018,colombian pop,218,3.63 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Morat, Aitana - Presiento.mp3","Presiento","Morat con Aitana","Presiento",1/1,2019,colombian pop,176,2.95 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Nicky Jam - Si Tú La Ves (feat. Wisin).mp3","Si Tú La Ves","Nicky Jam feat. Wisin","Fénix",7/26,2017,latin,224,3.97 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" +"No Se Va.mp3","No se va","Morat","Balas perdidas",5/12,2018,,217,3.61 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Piso 21, Micro TDH - Te Vi.mp3","Te vi","Grupo Manía feat. Yomo, Jowell y Randy, Elvis Crespo & Rubiel","La marca",10/10,2016,colombian pop,234,4.18 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Presiento.mp3","Presiento","Morat con Aitana","Presiento",1/1,2019,,174,2.91 MB,12/9/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Prince Royce, Shakira - Deja Vu - Lyrics English and Spanish - Deja Vu - Translation & Meaning.mp3","Deja vu","Prince Royce & Shakira","Deja vu",1/1,2017,Pop,198,2.63 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Reik, Manuel Turizo - Aleluya.mp3","Aleluya","Reik & Manuel Turizo","Ahora",3/9,2019,latin,161,2.75 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" +"Reik, Manuel Turizo - Aleluya.mp3","Aleluya","Reik & Manuel Turizo","Ahora",3/9,2019,latin,161,2.75 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Reik, Morat - La Bella y la Bestia (Letra_Lyrics).mp3","Reik, Morat - La Bella y la Bestia (Letra/Lyrics)","sunday","",,2020,,180,2.78 MB,7/4/2020,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Sebastian Yatra - No Hay Nadie Más.mp3","No hay nadie más","Sebastián Yatra","MANTRA",14/16,2018,colombian pop,198,3.39 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" +"Sebastian Yatra - No Hay Nadie Más.mp3","No hay nadie más","Sebastián Yatra","MANTRA",14/16,2018,colombian pop,198,3.39 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Sebastian Yatra, Daddy Yankee, Natti Natasha, Jonas Brothers - Runaway.mp3","Runaway","Sebastián Yatra, Daddy Yankee, Jonas Brothers & Natti Natasha","Runaway",1/1,2019,colombian pop,203,3.65 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Sebastian Yatra, Reik - Un Año.mp3","Un año","Sebastián Yatra & Reik","Un año",1/1,2019,colombian pop,167,2.84 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" +"Sebastian Yatra, Reik - Un Año.mp3","Un año","Sebastián Yatra & Reik","Un año",1/1,2019,colombian pop,167,2.84 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Shakira - Chantaje (feat. Maluma).mp3","Chantaje (feat. Maluma)","Shakira/Maluma","El Dorado",3,2017-05-26,colombian pop,201,3.04 MB,1/21/2021,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Shakira - Hips Don't Lie (feat. Wyclef Jean).mp3","Hips Don’t Lie","Shakira feat. Wyclef Jean","Oral Fixation, Vol. 2",3/13,2005,colombian pop,221,3.43 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Shakira - La La La (Brazil 2014) (feat. Carlinhos Brown).mp3","La La La (Brazil 2014) (feat. Carlinhos Brown)","Shakira/Carlinhos Brown","The 2014 FIFA World Cup Official Album: One Love, One Rhythm",8,2014-05-09,colombian pop,200,3.37 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" +"Shakira - Waka Waka (Esto Es Africa) - K-Mix.mp3","Waka waka (Esto es africa) (K‐mix)","Shakira","Sale el sol",12/16,2010,colombian pop,187,3.35 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Shakira - Waka Waka (This Time for Africa) [The Official 2010 FIFA World Cup (TM) Song] (feat. Freshlyground).mp3","Waka Waka (This Time for Africa) [The Official 2010 FIFA World Cup (TM) Song] (feat. Freshlyground)","Shakira/Freshlyground","Waka Waka (This Time for Africa) [The Official 2010 FIFA World Cup (TM) Song] (feat. Freshlyground)",1,2010-05-07,colombian pop,205,3.47 MB,1/21/2021,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Si Tú La Ves - Nicky Jam Ft Wisin (Video Oficial).mp3","Si Tú La Ves - Nicky Jam Ft Wisin (Video Oficial)","NickyJamTV","",,2017,,235,4.96 MB,9/28/2019,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Silvestre Dangond, Nicky Jam - Cásate Conmigo (Official Video).mp3","Silvestre Dangond, Nicky Jam - Cásate Conmigo (Official Video)","SilvestreDangondVEVO","",,2017,,257,3.91 MB,1/14/2020,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" +"Silvestre Dangond, Nicky Jam - Cásate Conmigo.mp3","Cásate conmigo","Silvestre Dangond & Nicky Jam","Cásate conmigo",1/1,2017,colombian pop,212,3.88 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" +"Silvestre Dangond, Nicky Jam - Cásate Conmigo.mp3","Cásate conmigo","Silvestre Dangond & Nicky Jam","Cásate conmigo",1/1,2017,colombian pop,212,3.88 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +"Ventino - Me Equivoqué.mp3","Me Equivoqué","Ventino","Ventino",1,2018-08-17,colombian pop,224,3.83 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" +"Ventino - Me Equivoqué.mp3","Me Equivoqué","Ventino","Ventino",1,2018-08-17,colombian pop,226,3.78 MB,1/21/2021,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" +build on 4/4/2023 with Mp3tag v3.20 - the universal Tag editor - http://www.mp3tag.de/en/ \ No newline at end of file diff --git a/test/csv_output/latinstuff.yaml b/test/csv_output/latinstuff.yaml new file mode 100644 index 0000000..558b1d1 --- /dev/null +++ b/test/csv_output/latinstuff.yaml @@ -0,0 +1,806 @@ +name: latinstuff +tracks: +- album: Balas perdidas + artist: Morat & Juanes + filename: “Besos En Guerra' ️- Morat & Juanes (LETRA).mp3 + genre: Latin Pop + last modified: 2/4/2023 + length: '230' + size: 3.74 MB + title: Besos en guerra + track: 3/12 + year: '2018' +- album: Teléfono + artist: Aitana + filename: Aitana - TELÉFONO.mp3 + genre: latin pop + last modified: 12/10/2022 + length: '166' + size: 2.74 MB + title: Teléfono + track: 1/1 + year: '2018' +- album: Teléfono + artist: Aitana + filename: Aitana - TELÉFONO.mp3 + genre: '' + last modified: 12/10/2022 + length: '164' + size: 2.72 MB + title: Teléfono + track: 1/1 + year: '2018' +- album: '' + artist: AldreyMusica + filename: 'Aldrey - La Lista (Lyric Video Oficial) #LaLista.mp3' + genre: '' + last modified: 6/3/2017 + length: '259' + size: 4.05 MB + title: 'Aldrey - La Lista (Lyric Video Oficial) #LaLista' + track: '' + year: '2013' +- album: Mar De Colores (Versión Extendida) + artist: Alvaro Soler + filename: Alvaro Soler - La Libertad.mp3 + genre: latin pop + last modified: 1/20/2021 + length: '194' + size: 2.51 MB + title: La Libertad + track: '1' + year: '2019-05-10' +- album: Mar De Colores + artist: Alvaro Soler + filename: Alvaro Soler - Puebla.mp3 + genre: latin pop + last modified: 1/20/2021 + length: '193' + size: 3.07 MB + title: Puebla + track: '5' + year: '2018-09-21' +- album: Mar De Colores + artist: Alvaro Soler + filename: Alvaro Soler - Puebla.mp3 + genre: latin pop + last modified: 1/21/2021 + length: '193' + size: 3.07 MB + title: Puebla + track: '5' + year: '2018-09-21' +- album: Balas perdidas + artist: Morat & Juanes + filename: Besos En Guerra.mp3 + genre: Latin Pop + last modified: 2/4/2023 + length: '232' + size: 3.76 MB + title: Besos en guerra + track: 3/12 + year: '2018' +- album: Amanecer + artist: Bomba Estéreo + filename: Bomba Estéreo - To My Love.mp3 + genre: cumbia + last modified: 12/10/2022 + length: '243' + size: 4.63 MB + title: To My Love + track: 9/11 + year: '2015' +- album: Tutu + artist: Camilo + Pedro Capó + filename: Camilo, Pedro Capó - Tutu.mp3 + genre: colombian pop + last modified: 12/10/2022 + length: '181' + size: 3.18 MB + title: Tutu + track: 1/1 + year: '2019' +- album: Vives + artist: Carlos Vives & Sebastián Yatra + filename: Carlos Vives, Sebastian Yatra - Robarte un Beso.mp3 + genre: champeta + last modified: 12/10/2022 + length: '196' + size: 3.16 MB + title: Robarte un beso + track: 13/18 + year: '2017' +- album: Vives + artist: Carlos Vives & Sebastián Yatra + filename: Carlos Vives, Sebastian Yatra - Robarte un Beso.mp3 + genre: champeta + last modified: 12/10/2022 + length: '196' + size: 3.16 MB + title: Robarte un beso + track: 13/18 + year: '2017' +- album: En todo estaré + artist: Chayanne + filename: Chayanne - Madre Tierra (Oye).mp3 + genre: latin + last modified: 12/10/2022 + length: '208' + size: 3.40 MB + title: Madre Tierra (Oye) + track: 1/11 + year: '2014' +- album: En todo estaré + artist: Chayanne + filename: Chayanne - Madre Tierra (Oye).mp3 + genre: latin + last modified: 12/10/2022 + length: '208' + size: 3.40 MB + title: Madre Tierra (Oye) + track: 1/11 + year: '2014' +- album: Sin Miedo + artist: ChocQuibTown/Alexis Play + filename: ChocQuibTown - Somos los Prietos (feat. Alexis Play).mp3 + genre: colombian hip hop + last modified: 1/20/2021 + length: '229' + size: 3.71 MB + title: Somos los Prietos (feat. Alexis Play) + track: '4' + year: '2018-05-25' +- album: Quédate conmigo + artist: Chyno Miranda feat. Wisin y Gente de Zona + filename: Chyno Miranda, Wisin, Gente De Zona - Quédate Conmigo.mp3 + genre: latin + last modified: 12/10/2022 + length: '225' + size: 3.59 MB + title: Quédate conmigo + track: 1/1 + year: '2017' +- album: Primera cita + artist: CNCO + filename: CNCO - Tan Fácil.mp3 + genre: boy band + last modified: 12/9/2022 + length: '213' + size: 3.63 MB + title: Tan fácil + track: 2/14 + year: '2016' +- album: Primera cita + artist: CNCO + filename: CNCO - Tan Fácil.mp3 + genre: boy band + last modified: 12/9/2022 + length: '213' + size: 3.63 MB + title: Tan fácil + track: 2/14 + year: '2016' +- album: Llegaste tú + artist: CNCO + Prince Royce + filename: CNCO, Prince Royce - Llegaste Tú.mp3 + genre: boy band + last modified: 12/10/2022 + length: '193' + size: 3.24 MB + title: Llegaste tú + track: 1/1 + year: '2018' +- album: Llegaste tú + artist: CNCO + Prince Royce + filename: CNCO, Prince Royce - Llegaste Tú.mp3 + genre: boy band + last modified: 12/10/2022 + length: '193' + size: 3.24 MB + title: Llegaste tú + track: 1/1 + year: '2018' +- album: Alerta + artist: Cocoa Roots + filename: Cocoa Roots - Me Gusta.mp3 + genre: ecuadorian pop + last modified: 1/20/2021 + length: '202' + size: 3.22 MB + title: Me Gusta + track: '3' + year: '2017-05-20' +- album: Cuando nadie ve + artist: Morat + filename: Cuando Nadie Ve.mp3 + genre: Latin Pop + last modified: 2/4/2023 + length: '219' + size: 3.55 MB + title: Cuando nadie ve + track: 1/1 + year: '2018' +- album: Con calma + artist: Daddy Yankee feat. Snow + filename: Daddy Yankee, Snow - Con Calma.mp3 + genre: latin + last modified: 12/10/2022 + length: '194' + size: 3.42 MB + title: Con calma + track: 1/1 + year: '2019' +- album: 54+1 + artist: Danny Ocean + filename: Danny Ocean - Swing.mp3 + genre: latin + last modified: 12/10/2022 + length: '156' + size: 2.76 MB + title: Swing + track: 13/13 + year: '2019' +- album: 54+1 + artist: Danny Ocean + filename: Danny Ocean - Swing.mp3 + genre: latin + last modified: 12/10/2022 + length: '156' + size: 2.76 MB + title: Swing + track: 13/13 + year: '2019' +- album: De Ellos Aprendí + artist: David Rees + filename: David Rees - De Ellos Aprendí.mp3 + genre: latin viral pop + last modified: 1/20/2021 + length: '267' + size: 4.45 MB + title: De Ellos Aprendí + track: '1' + year: '2019-02-06' +- album: Un poquito + artist: Diego Torres & Carlos Vives + filename: Diego Torres, Carlos Vives - Un Poquito.mp3 + genre: latin + last modified: 12/10/2022 + length: '188' + size: 3.50 MB + title: Un poquito + track: 1/1 + year: '2018' +- album: Un poquito + artist: Diego Torres & Carlos Vives + filename: Diego Torres, Carlos Vives - Un Poquito.mp3 + genre: latin + last modified: 12/10/2022 + length: '188' + size: 3.50 MB + title: Un poquito + track: 1/1 + year: '2018' +- album: Meet the Orphans + artist: Don Omar feat. Lucenzo + filename: Don Omar, Lucenzo - Danza Kuduro.mp3 + genre: latin + last modified: 12/9/2022 + length: '201' + size: 3.20 MB + title: Danza kuduro + track: 14/21 + year: '2010' +- album: LOVE + artist: Gianluca Vacchi & Sebastián Yatra + filename: Gianluca Vacchi, Sebastian Yatra - LOVE.mp3 + genre: '' + last modified: 12/9/2022 + length: '192' + size: 3.12 MB + title: LOVE + track: 1/1 + year: '2018' +- album: Lo mismo + artist: Maître Gims feat. Álvaro Soler + filename: GIMS, Alvaro Soler, Jugglerz - Lo Mismo.mp3 + genre: francoton + last modified: 12/9/2022 + length: '211' + size: 3.37 MB + title: Lo mismo + track: 1/1 + year: '2018' +- album: Lo mismo + artist: Maître Gims feat. Álvaro Soler + filename: GIMS, Alvaro Soler, Jugglerz - Lo Mismo.mp3 + genre: francoton + last modified: 12/9/2022 + length: '211' + size: 3.37 MB + title: Lo mismo + track: 1/1 + year: '2018' +- album: 30 de febrero + artist: Ha*Ash feat. Abraham Mateo + filename: HaAsh - 30 de Febrero (feat. Abraham Mateo).mp3 + genre: latin + last modified: 12/10/2022 + length: '202' + size: 3.33 MB + title: 30 de febrero + track: 1/12 + year: '2017' +- album: 100 años + artist: Ha*Ash & Prince Royce + filename: HaAsh, Prince Royce - 100 Años.mp3 + genre: latin + last modified: 12/10/2022 + length: '188' + size: 3.30 MB + title: 100 años + track: 1/1 + year: '2017' +- album: Mañana es Too Late + artist: Jesse & Joy and J Balvin + filename: Jesse & Joy, J Balvin - Mañana Es Too Late.mp3 + genre: latin + last modified: 12/11/2022 + length: '196' + size: 3.23 MB + title: Mañana es Too Late + track: 1/1 + year: '2019' +- album: 'Roma: Original Motion Picture Soundtrack' + artist: Juan Gabriel + filename: Juan Gabriel - No Tengo Dinero (Cover Audio).mp3 + genre: Ballad/Danzón/Latin/Pop/Ranchera + last modified: 2/4/2023 + length: '187' + size: 3.10 MB + title: No tengo dinero + track: 3/19 + year: '2018' +- album: Kitipun + artist: Juan Luis Guerra 4.40 + filename: Juan Luis Guerra 4.40 - Kitipun.mp3 + genre: bachata + last modified: 12/11/2022 + length: '219' + size: 3.87 MB + title: Kitipun + track: 1/1 + year: '2019' +- album: '' + artist: JuanesVEVO + filename: Juanes - La Camisa Negra.mp3 + genre: '' + last modified: 9/4/2022 + length: '247' + size: 8.31 MB + title: Juanes - La Camisa Negra + track: '' + year: '2009' +- album: La plata + artist: Juanes ft. Lalo Ebratt + filename: Juanes - La Plata (feat. Lalo Ebratt).mp3 + genre: colombian pop + last modified: 12/10/2022 + length: '194' + size: 3.13 MB + title: La plata + track: 1/1 + year: '2019' +- album: La plata + artist: Juanes ft. Lalo Ebratt + filename: Juanes - La Plata (feat. Lalo Ebratt).mp3 + genre: colombian pop + last modified: 12/10/2022 + length: '199' + size: 3.37 MB + title: La plata + track: 1/1 + year: '2019' +- album: Déjate querer + artist: Lalo Ebratt x Sebastián Yatra x Yera + filename: Lalo Ebratt, Sebastian Yatra, Yera, Trapical Minds - Déjate Querer.mp3 + genre: colombian hip hop + last modified: 12/9/2022 + length: '205' + size: 3.72 MB + title: Déjate querer + track: 1/1 + year: '2019' +- album: VIDA + artist: Luis Fonsi & Daddy Yankee + filename: Luis Fonsi, Daddy Yankee - Despacito.mp3 + genre: latin + last modified: 12/9/2022 + length: '231' + size: 4.04 MB + title: Despacito + track: 9/15 + year: '2019' +- album: '' + artist: Taz Network + filename: Luis Fonsi, Demi Lovato ‒ Echame La Culpa (Lyrics).mp3 + genre: '' + last modified: 12/1/2019 + length: '189' + size: 3.73 MB + title: Luis Fonsi, Demi Lovato ‒ Echame La Culpa (Lyrics) + track: '' + year: '2017' +- album: VIDA + artist: Luis Fonsi & Demi Lovato + filename: Luis Fonsi, Demi Lovato - Échame La Culpa.mp3 + genre: latin + last modified: 12/9/2022 + length: '176' + size: 2.93 MB + title: Échame la culpa + track: 7/15 + year: '2019' +- album: Date la vuelta + artist: Luis Fonsi, Sebastián Yatra & Nicky Jam + filename: Luis Fonsi, Sebastian Yatra, Nicky Jam - Date La Vuelta.mp3 + genre: latin + last modified: 12/10/2022 + length: '222' + size: 3.64 MB + title: Date la vuelta + track: 1/1 + year: '2019' +- album: Toc Toc (Banda Sonora Original de la Película ”Toc Toc”) + artist: Macaco + filename: Macaco - Toc Toc - Banda Sonora Original de la Película ”Toc Toc”.mp3 + genre: latin alternative + last modified: 1/20/2021 + length: '224' + size: 3.62 MB + title: Toc Toc - Banda Sonora Original de la Película ”Toc Toc” + track: '1' + year: '2017-06-16' +- album: '' + artist: Span Glish + filename: MAFFiO - No Tengo Dinero (Official Lyric Video).mp3 + genre: '' + last modified: 5/9/2019 + length: '224' + size: 3.83 MB + title: MAFFiO - No Tengo Dinero (Official Lyric Video) + track: '' + year: '2013' +- album: La boca (remix) + artist: Mau y Ricky, Camilo & Lunay + filename: Mau y Ricky, Camilo, Lunay - La Boca - Remix.mp3 + genre: latin + last modified: 12/11/2022 + length: '192' + size: 3.17 MB + title: La boca (remix) + track: 1/1 + year: '2019' +- album: Sobre El Amor Y Sus Efectos Secundarios + artist: Morat + filename: Morat - Aprender A Quererte.mp3 + genre: colombian pop + last modified: 1/20/2021 + length: '228' + size: 3.93 MB + title: Aprender A Quererte + track: '3' + year: '2016-06-17' +- album: Sobre El Amor Y Sus Efectos Secundarios + artist: Morat + filename: Morat - Aprender A Quererte.mp3 + genre: colombian pop + last modified: 1/21/2021 + length: '228' + size: 4.01 MB + title: Aprender A Quererte + track: '3' + year: '2016-06-17' +- album: Balas perdidas + artist: Morat + filename: Morat - Cuando Nadie Ve.mp3 + genre: colombian pop + last modified: 12/10/2022 + length: '222' + size: 3.53 MB + title: Cuando nadie ve + track: 10/12 + year: '2018' +- album: Balas perdidas + artist: Morat + filename: Morat - Cuando Nadie Ve.mp3 + genre: colombian pop + last modified: 12/10/2022 + length: '222' + size: 3.54 MB + title: Cuando nadie ve + track: 10/12 + year: '2018' +- album: Balas perdidas + artist: Morat + filename: Morat - No Se Va.mp3 + genre: colombian pop + last modified: 12/10/2022 + length: '218' + size: 3.63 MB + title: No se va + track: 5/12 + year: '2018' +- album: Balas perdidas + artist: Morat + filename: Morat - No Se Va.mp3 + genre: colombian pop + last modified: 12/10/2022 + length: '218' + size: 3.63 MB + title: No se va + track: 5/12 + year: '2018' +- album: Presiento + artist: Morat con Aitana + filename: Morat, Aitana - Presiento.mp3 + genre: colombian pop + last modified: 12/9/2022 + length: '176' + size: 2.95 MB + title: Presiento + track: 1/1 + year: '2019' +- album: Fénix + artist: Nicky Jam feat. Wisin + filename: Nicky Jam - Si Tú La Ves (feat. Wisin).mp3 + genre: latin + last modified: 12/11/2022 + length: '224' + size: 3.97 MB + title: Si Tú La Ves + track: 7/26 + year: '2017' +- album: Balas perdidas + artist: Morat + filename: No Se Va.mp3 + genre: '' + last modified: 2/4/2023 + length: '217' + size: 3.61 MB + title: No se va + track: 5/12 + year: '2018' +- album: La marca + artist: Grupo Manía feat. Yomo, Jowell y Randy, Elvis Crespo & Rubiel + filename: Piso 21, Micro TDH - Te Vi.mp3 + genre: colombian pop + last modified: 12/10/2022 + length: '234' + size: 4.18 MB + title: Te vi + track: 10/10 + year: '2016' +- album: Presiento + artist: Morat con Aitana + filename: Presiento.mp3 + genre: '' + last modified: 12/9/2022 + length: '174' + size: 2.91 MB + title: Presiento + track: 1/1 + year: '2019' +- album: Deja vu + artist: Prince Royce & Shakira + filename: Prince Royce, Shakira - Deja Vu - Lyrics English and Spanish - Deja Vu + - Translation & Meaning.mp3 + genre: Pop + last modified: 2/4/2023 + length: '198' + size: 2.63 MB + title: Deja vu + track: 1/1 + year: '2017' +- album: Ahora + artist: Reik & Manuel Turizo + filename: Reik, Manuel Turizo - Aleluya.mp3 + genre: latin + last modified: 12/10/2022 + length: '161' + size: 2.75 MB + title: Aleluya + track: 3/9 + year: '2019' +- album: Ahora + artist: Reik & Manuel Turizo + filename: Reik, Manuel Turizo - Aleluya.mp3 + genre: latin + last modified: 12/10/2022 + length: '161' + size: 2.75 MB + title: Aleluya + track: 3/9 + year: '2019' +- album: '' + artist: sunday + filename: Reik, Morat - La Bella y la Bestia (Letra_Lyrics).mp3 + genre: '' + last modified: 7/4/2020 + length: '180' + size: 2.78 MB + title: Reik, Morat - La Bella y la Bestia (Letra/Lyrics) + track: '' + year: '2020' +- album: MANTRA + artist: Sebastián Yatra + filename: Sebastian Yatra - No Hay Nadie Más.mp3 + genre: colombian pop + last modified: 12/10/2022 + length: '198' + size: 3.39 MB + title: No hay nadie más + track: 14/16 + year: '2018' +- album: MANTRA + artist: Sebastián Yatra + filename: Sebastian Yatra - No Hay Nadie Más.mp3 + genre: colombian pop + last modified: 12/10/2022 + length: '198' + size: 3.39 MB + title: No hay nadie más + track: 14/16 + year: '2018' +- album: Runaway + artist: Sebastián Yatra, Daddy Yankee, Jonas Brothers & Natti Natasha + filename: Sebastian Yatra, Daddy Yankee, Natti Natasha, Jonas Brothers - Runaway.mp3 + genre: colombian pop + last modified: 12/11/2022 + length: '203' + size: 3.65 MB + title: Runaway + track: 1/1 + year: '2019' +- album: Un año + artist: Sebastián Yatra & Reik + filename: Sebastian Yatra, Reik - Un Año.mp3 + genre: colombian pop + last modified: 12/10/2022 + length: '167' + size: 2.84 MB + title: Un año + track: 1/1 + year: '2019' +- album: Un año + artist: Sebastián Yatra & Reik + filename: Sebastian Yatra, Reik - Un Año.mp3 + genre: colombian pop + last modified: 12/10/2022 + length: '167' + size: 2.84 MB + title: Un año + track: 1/1 + year: '2019' +- album: El Dorado + artist: Shakira/Maluma + filename: Shakira - Chantaje (feat. Maluma).mp3 + genre: colombian pop + last modified: 1/21/2021 + length: '201' + size: 3.04 MB + title: Chantaje (feat. Maluma) + track: '3' + year: '2017-05-26' +- album: Oral Fixation, Vol. 2 + artist: Shakira feat. Wyclef Jean + filename: Shakira - Hips Don't Lie (feat. Wyclef Jean).mp3 + genre: colombian pop + last modified: 12/11/2022 + length: '221' + size: 3.43 MB + title: Hips Don’t Lie + track: 3/13 + year: '2005' +- album: 'The 2014 FIFA World Cup Official Album: One Love, One Rhythm' + artist: Shakira/Carlinhos Brown + filename: Shakira - La La La (Brazil 2014) (feat. Carlinhos Brown).mp3 + genre: colombian pop + last modified: 1/20/2021 + length: '200' + size: 3.37 MB + title: La La La (Brazil 2014) (feat. Carlinhos Brown) + track: '8' + year: '2014-05-09' +- album: Sale el sol + artist: Shakira + filename: Shakira - Waka Waka (Esto Es Africa) - K-Mix.mp3 + genre: colombian pop + last modified: 12/9/2022 + length: '187' + size: 3.35 MB + title: Waka waka (Esto es africa) (K‐mix) + track: 12/16 + year: '2010' +- album: Waka Waka (This Time for Africa) [The Official 2010 FIFA World Cup (TM) Song] + (feat. Freshlyground) + artist: Shakira/Freshlyground + filename: Shakira - Waka Waka (This Time for Africa) [The Official 2010 FIFA World + Cup (TM) Song] (feat. Freshlyground).mp3 + genre: colombian pop + last modified: 1/21/2021 + length: '205' + size: 3.47 MB + title: Waka Waka (This Time for Africa) [The Official 2010 FIFA World Cup (TM) Song] + (feat. Freshlyground) + track: '1' + year: '2010-05-07' +- album: '' + artist: NickyJamTV + filename: Si Tú La Ves - Nicky Jam Ft Wisin (Video Oficial).mp3 + genre: '' + last modified: 9/28/2019 + length: '235' + size: 4.96 MB + title: Si Tú La Ves - Nicky Jam Ft Wisin (Video Oficial) + track: '' + year: '2017' +- album: '' + artist: SilvestreDangondVEVO + filename: Silvestre Dangond, Nicky Jam - Cásate Conmigo (Official Video).mp3 + genre: '' + last modified: 1/14/2020 + length: '257' + size: 3.91 MB + title: Silvestre Dangond, Nicky Jam - Cásate Conmigo (Official Video) + track: '' + year: '2017' +- album: Cásate conmigo + artist: Silvestre Dangond & Nicky Jam + filename: Silvestre Dangond, Nicky Jam - Cásate Conmigo.mp3 + genre: colombian pop + last modified: 12/10/2022 + length: '212' + size: 3.88 MB + title: Cásate conmigo + track: 1/1 + year: '2017' +- album: Cásate conmigo + artist: Silvestre Dangond & Nicky Jam + filename: Silvestre Dangond, Nicky Jam - Cásate Conmigo.mp3 + genre: colombian pop + last modified: 12/10/2022 + length: '212' + size: 3.88 MB + title: Cásate conmigo + track: 1/1 + year: '2017' +- album: Ventino + artist: Ventino + filename: Ventino - Me Equivoqué.mp3 + genre: colombian pop + last modified: 1/20/2021 + length: '224' + size: 3.83 MB + title: Me Equivoqué + track: '1' + year: '2018-08-17' +- album: Ventino + artist: Ventino + filename: Ventino - Me Equivoqué.mp3 + genre: colombian pop + last modified: 1/21/2021 + length: '226' + size: 3.78 MB + title: Me Equivoqué + track: '1' + year: '2018-08-17' +- album: null + artist: null + filename: build on 4/4/2023 with Mp3tag v3.20 - the universal Tag editor - http://www.mp3tag.de/en/ + genre: null + last modified: null + length: null + size: null + title: null + track: null + year: null diff --git a/test/m3u_input/thingsonphone2.m3u8 b/test/m3u_input/thingsonphone2.m3u8 index e50a922..e26bacd 100644 --- a/test/m3u_input/thingsonphone2.m3u8 +++ b/test/m3u_input/thingsonphone2.m3u8 @@ -1,4 +1,4 @@ -# +# E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\Cascada - Everytime We Touch (Fallen Superhero Hardstyle Remix).mp3 E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\Clean Bandit ft. Demi Lovato - Solo (Twisted Melodiez Bootleg) [Free Release].mp3 E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\Da Tweekaz - Frozen (Disney Tool) (Official Preview).mp3 @@ -39,7 +39,7 @@ E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\Carly Rae E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\Carly Rae Jepsen-Let’s Get Lost.mp3 E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Run Away With Me.mp3 E:\Captures\Audio Files\Music\spotifystuff\2010s\Carly Rae Jepsen - Call Me Maybe.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\Carly Rae Jepsen - Guitar String ⧸ Wedding Ring.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\Carly Rae Jepsen - Guitar String / Wedding Ring.mp3 E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Tonight I’m Getting Over You.mp3 E:\Captures\Audio Files\Music\spotifystuff\90s\Cher - Believe.mp3 E:\Captures\Audio Files\Music\spotifystuff\My 80's Playlist\Cher - If I Could Turn Back Time.mp3 @@ -139,10 +139,10 @@ E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\SZA-Conceited.mp3 E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\SZA-Nobody Gets Me.mp3 E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\SZA-Seek & Destroy.mp3 E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Getaway Car.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Luis Fonsi, Demi Lovato ‒ Echame La Culpa (Lyrics).mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Luis Fonsi, Demi Lovato - Echame La Culpa (Lyrics).mp3 E:\Captures\Audio Files\Music\spotifystuff\90s\The Cure - Friday I'm In Love.mp3 E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\The Weeknd-Gasoline.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\The Weeknd-How Do I Make You Love Me?.mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\The Weeknd-How Do I Make You Love Me?.mp3 E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\The Weeknd, Lil Wayne-I Heard You’re Married.mp3 E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\The Weeknd-Sacrifice.mp3 E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\The Weeknd-Take My Breath.mp3 @@ -157,7 +157,7 @@ E:\Captures\Audio Files\Music\youtubedlsongs\disneysongs\Panic! At The Disco-Int E:\Captures\Audio Files\Music\youtubedlsongs\disneysongs\Idina Menzel, AURORA - Into the Unknown (From 'Frozen 2').mp3 E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Vanessa Carlton - A Thousand Miles.mp3 E:\Captures\Audio Files\Music\2000'sThrowbacks\Estelle - American Boy, Lyrics.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\Troy, Gabriella - Start of Something New (From "High School Musical").mp3 +E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\Troy, Gabriella - Start of Something New (From "High School Musical").mp3 E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\We're All In This Together.mp3 E:\Captures\Audio Files\Music\2000'sThrowbacks\Justin Timberlake - Sexy Back [Lyrics].mp3 E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\Me And My Broken Heart.mp3 From 6f0ad1b7c245e90fa0be1c0e40aa17ce12890b3f Mon Sep 17 00:00:00 2001 From: vtwarrior25 Date: Fri, 7 Apr 2023 00:53:04 -0400 Subject: [PATCH 4/6] Got some work done --- beetsplug/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 239 bytes beetsplug/__pycache__/yapl.cpython-39.pyc | Bin 6579 -> 6758 bytes beetsplug/yapl.py | 116 +++++++++++------- test/splittest.py | 4 + test/yamltest.py | 20 +++ 5 files changed, 95 insertions(+), 45 deletions(-) create mode 100644 beetsplug/__pycache__/__init__.cpython-39.pyc create mode 100644 test/splittest.py create mode 100644 test/yamltest.py diff --git a/beetsplug/__pycache__/__init__.cpython-39.pyc b/beetsplug/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3c5485619fc4b94d2a5a0de24248424c83752c04 GIT binary patch literal 239 zcmYe~<>g`kg8cJ3DgHqEF^GcI3_v2I5#s!ub?PDD>b>KIHsVoBqKjBCMh+wq*%8y zu^>k`zbG?3GcPd*B36)7njRA$pP83g5+AQuPPx# literal 0 HcmV?d00001 diff --git a/beetsplug/__pycache__/yapl.cpython-39.pyc b/beetsplug/__pycache__/yapl.cpython-39.pyc index ac599fecf10cae260a8e678d23dbff62026e36d8..84f706d394703d7695cb00a3a875e7a241b8e1fc 100644 GIT binary patch delta 1110 zcmZ8g&ubJ(6t36FbXWKE^pD9*W@d49R!!6>X2f5(4B0gb!NcYfT{Wn&O?AQ~O;6I@ z1`RbR%uV*-S{Ff-33%FrQAWgrhwPpNJ$lMXFf8I9;6W68H73i(DeCK2uU^;G_r0&% z2md`}d6|qs@ONuzki8mwVzpEl70YS`wuratj}spn+M<m^#LgEmpVXJ$$oNK$*eSkA!*=DdNa?W;G5l5ZlH-ZLTw77;WC@Q7@Pbu|3rGBmu zt|Rwy!$?eS%w(F-vKT5G|H0LkEi)bVxZ){BtAux9HYIas2_xM&nqA0i>j4tK*~E0K z%Da%NF5Wqp;kr2K{<4X17H~3P;LFN<&+IO;l z0|er9?p%6Rm#<6&wKx$^a%1IHeLC{4Ox65=MMXU08}L-<5GnrQWf5C6C+8ZG7fi}*zYDVeO8GdaF-eAh1cAf z$#9#yRWdJg=$qRRnGEY^tObHGNemgIsx~vR3t66JN{MirrK=?D?0t*pA8h;!w};mc zG+Pe0JMv%RCd!|wl7yn!^m~NaoT3H0J9Z{5mmAm=1sl=7Zm<`tCN8j$K_q4 z_0T_kea_!C6v=NZ${>7#L9w^+Lm?ZbWNN#FJ_!>N0&$^GJT@uAAqgJBsy6K>UXn!P zlwFOyq*f0*C#|O9xuBLrr)1#;ggrgNvP)VN%0ykfE*$q`4995_d6TmXUhsW`^0@mH zXZ$MyIv!naCSs=|m!tzl5afqHuETcX8UO1ZWJ37sd2&QwmHk!YQ1_=adb&N12mAe=I_ND^b2 zqG{5&ah=RON=&AUidGso7L;h8>#50YW){f~?pfX74l{B65KpnVwMDiSdDiL%#`cMr zaJ2z7i#cLXD}`r=31s6wa&?H2DKh8^h3<(1`W3D;-|0gT49Kz|Q1W1a10J$@WN?6q z=A88t;7)Vg*#@{Rj$8)&;-=RN@5Pcgx_BeOaxqPcCF@+rB6<=dwzyHV8<09o-GO?< z)zp9URgEEQcx{M*Uzl{{~+Gmc-}$yT;Ue}Bfm^y$^x!$5!S{jHoP^vJR}V~ zZs5;Ru%G=|Kl5U)V|*aeFylz39_bSDu12PWC1FcA2(jPMIo}rLWZWxJl6WAoBrz+Y zO7uybkvMtuG-Yd1HGZ": + #if "/" in metadata.track: + #print("Original Track Value: " + metadata.track) + #trackval = str(metadata.track).split("/") + #print("New Track Value: " + trackval[0]) + #songdata["track"] = trackval[0] #else: - #songdata[grabfield] = metadata.grabfield + #songdata["track"] = metadata.track + #songdata["year"] = metadata.year + #print(type(getattr(metadata,"duration"))) + #TODO: Figure out why line 222 is causing an error, and why it apparantly references an ID3 object when there is a string cast on it + for grabfield in fieldstograb: + #print(type(getattr(metadata,grabfield))) + if not str(type(getattr(metadata, grabfield))) == "": + if grabfield == "length": + songdata[grabfield] = metadata.duration + elif grabfield == "track": + #if not str(type(metadata.track)) == "": + if "/" in metadata.track: + #print("Original Track Value: " + metadata.track) + trackval = str(metadata.track).split("/") + #print("New Track Value: " + trackval[0]) + songdata["track"] = trackval[0] + else: + songdata["track"] = metadata.track + else: + songdata[grabfield] = getattr(metadata, grabfield) songlist.append(songdata) dataforyapl["tracks"] = songlist print(f"Failcount for {filename}: {failcount}") diff --git a/test/splittest.py b/test/splittest.py new file mode 100644 index 0000000..c66c12c --- /dev/null +++ b/test/splittest.py @@ -0,0 +1,4 @@ +teststring = "2/15" +beans = teststring.split("/") +print(beans[0]) +print(beans[1]) \ No newline at end of file diff --git a/test/yamltest.py b/test/yamltest.py new file mode 100644 index 0000000..225b4ad --- /dev/null +++ b/test/yamltest.py @@ -0,0 +1,20 @@ +import os +import io +import yaml +from pathlib import Path + +total_count = 0 +yaml_files = [f for f in os.listdir("E:\Captures\Audio Files\Music\playlists\playliststosave\testing\yapl") if f.endswith('.yaml') or f.endswith('.yapl')] +for yaml_file in yaml_files: + print(f"Parsing {yaml_file}") + with open(input_path / yaml_file, 'r') as file: + count = 0 + playlist = yaml.safe_load(file) + tracks = playlist["tracks"] + for track in tracks: + if "/" in track['track']: + print("There is a thing") + count = count + 1 + total_count = total_count + count + print(f"Total count of {yaml_file}: {count}") +print(f"Total count: {total_count}") \ No newline at end of file From 457a44545df395f1bd339ff045c9598b9deafa52 Mon Sep 17 00:00:00 2001 From: vtwarrior25 Date: Thu, 13 Apr 2023 18:22:18 -0400 Subject: [PATCH 5/6] Fixed mp3tag --- beetsplug/yapl.py | 38 +++++++++----------------------------- 1 file changed, 9 insertions(+), 29 deletions(-) diff --git a/beetsplug/yapl.py b/beetsplug/yapl.py index a5c2d3f..6e81e48 100644 --- a/beetsplug/yapl.py +++ b/beetsplug/yapl.py @@ -49,7 +49,7 @@ def compile(self, lib, opts, args): yaml_files = [f for f in os.listdir(input_path) if f.endswith('.yaml') or f.endswith('.yapl')] for yaml_file in yaml_files: print(f"Parsing {yaml_file}") - with open(input_path / yaml_file, 'r') as file: + with open(input_path / yaml_file, 'r', encoding='utf-8') as file: try: playlist = yaml.safe_load(file) except: @@ -126,7 +126,7 @@ def get_m3u_paths (self, input_path): print(f"Parsing {m3u_file}") paths = list() parser = py_m3u.M3UParser() - with io.open (input_path / m3u_file, 'r') as file: + with io.open (input_path / m3u_file, 'r', encoding='utf-8') as file: try: audiofiles = parser.load(file) except: @@ -190,7 +190,7 @@ def m3u_to_yapl_mp3tag(self, lib, opts, args): songlist = list() foundsongs = [] dataforyapl["name"] = filename - # For each path in paths, we are going to grab the metadata, and add the items into the + # For each path in paths, we are going to grab the metadata for path in paths: songdata = dict() try: @@ -199,34 +199,14 @@ def m3u_to_yapl_mp3tag(self, lib, opts, args): print(f"No file found at the given path: {path}") failcount = failcount + 1 else: - #songdata["album"] = metadata.album - #songdata["artist"] = metadata.artist - #songdata["genre"] = metadata.genre - #songdata["length"] = metadata.duration - #songdata["filesize"] = metadata.filesize - #songdata["title"] = metadata.title - #if not str(type(metadata.track)) == "": - #if "/" in metadata.track: - #print("Original Track Value: " + metadata.track) - #trackval = str(metadata.track).split("/") - #print("New Track Value: " + trackval[0]) - #songdata["track"] = trackval[0] - #else: - #songdata["track"] = metadata.track - #songdata["year"] = metadata.year - #print(type(getattr(metadata,"duration"))) - #TODO: Figure out why line 222 is causing an error, and why it apparantly references an ID3 object when there is a string cast on it - for grabfield in fieldstograb: - #print(type(getattr(metadata,grabfield))) - if not str(type(getattr(metadata, grabfield))) == "": - if grabfield == "length": - songdata[grabfield] = metadata.duration - elif grabfield == "track": - #if not str(type(metadata.track)) == "": + mp3fields = fieldstograb.copy() + mp3fields.remove("length") + mp3fields.append("duration") + for grabfield in mp3fields: + if not str(type(getattr(metadata, grabfield))) == "" and not str(getattr(metadata, grabfield)) == '': + if grabfield == "track": if "/" in metadata.track: - #print("Original Track Value: " + metadata.track) trackval = str(metadata.track).split("/") - #print("New Track Value: " + trackval[0]) songdata["track"] = trackval[0] else: songdata["track"] = metadata.track From c37ec62558c1cc310066b39451d6d64930f4a1c9 Mon Sep 17 00:00:00 2001 From: vtwarrior25 Date: Thu, 13 Apr 2023 18:35:43 -0400 Subject: [PATCH 6/6] Removed test files and updated README --- README.md | 6 +- test/csv_input/latinstuff.csv | 81 -- test/csv_input/thingsonphone2.csv | 174 --- test/csv_output/latinstuff.yaml | 806 ------------- test/csv_output/thingsonphone2.yaml | 1733 --------------------------- test/m3u_input/thingsonphone2.m3u8 | 179 --- test/splittest.py | 4 - test/yamltest.py | 20 - 8 files changed, 5 insertions(+), 2998 deletions(-) delete mode 100644 test/csv_input/latinstuff.csv delete mode 100644 test/csv_input/thingsonphone2.csv delete mode 100644 test/csv_output/latinstuff.yaml delete mode 100644 test/csv_output/thingsonphone2.yaml delete mode 100644 test/m3u_input/thingsonphone2.m3u8 delete mode 100644 test/splittest.py delete mode 100644 test/yamltest.py diff --git a/README.md b/README.md index decff23..6b73744 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,11 @@ yapl: #### Run -Once configured, run `beet yapl` to compile all the playlists in your `input_path` directory. Warnings will be issued for any ambiguous or resultless queries and these tracks will be left out of the output. +Once configured, run `beet yapl` to compile all the playlists in your `yapl_path` directory. Warnings will be issued for any ambiguous or resultless queries and these tracks will be left out of the output. + +You can also run `beet m3ub` or `beet m3ut` to compile yapl files from the m3u8 playlist files within your `m3u_path` directory. `beet m3ub` will use the beets database to grab metadata about your songs, and `beet m3ut` will use the file metadata on the songs. Warnings will be issued for any paths within the m3u8 file that aren't reachable, and after each file is processed a failure count will be outputted. + +To take data from csv files and turn it into corresponding yapl files, run `beet csv`. The input csv files will be grabbed from your `csv_path` directory and the output yapl files will be placed in your `yapl_path` directory ``` $ beet yapl diff --git a/test/csv_input/latinstuff.csv b/test/csv_input/latinstuff.csv deleted file mode 100644 index 837962d..0000000 --- a/test/csv_input/latinstuff.csv +++ /dev/null @@ -1,81 +0,0 @@ -Filename,Title,Artist,Album,Track,Year,Genre,Length,Size,Last Modified,Path -"“Besos En Guerra' ️- Morat & Juanes (LETRA).mp3","Besos en guerra","Morat & Juanes","Balas perdidas",3/12,2018,Latin Pop,230,3.74 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Aitana - TELÉFONO.mp3","Teléfono","Aitana","Teléfono",1/1,2018,latin pop,166,2.74 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" -"Aitana - TELÉFONO.mp3","Teléfono","Aitana","Teléfono",1/1,2018,,164,2.72 MB,12/10/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Aldrey - La Lista (Lyric Video Oficial) #LaLista.mp3","Aldrey - La Lista (Lyric Video Oficial) #LaLista","AldreyMusica","",,2013,,259,4.05 MB,6/3/2017,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Alvaro Soler - La Libertad.mp3","La Libertad","Alvaro Soler","Mar De Colores (Versión Extendida)",1,2019-05-10,latin pop,194,2.51 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" -"Alvaro Soler - Puebla.mp3","Puebla","Alvaro Soler","Mar De Colores",5,2018-09-21,latin pop,193,3.07 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" -"Alvaro Soler - Puebla.mp3","Puebla","Alvaro Soler","Mar De Colores",5,2018-09-21,latin pop,193,3.07 MB,1/21/2021,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Besos En Guerra.mp3","Besos en guerra","Morat & Juanes","Balas perdidas",3/12,2018,Latin Pop,232,3.76 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Bomba Estéreo - To My Love.mp3","To My Love","Bomba Estéreo","Amanecer",9/11,2015,cumbia,243,4.63 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" -"Camilo, Pedro Capó - Tutu.mp3","Tutu","Camilo + Pedro Capó","Tutu",1/1,2019,colombian pop,181,3.18 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" -"Carlos Vives, Sebastian Yatra - Robarte un Beso.mp3","Robarte un beso","Carlos Vives & Sebastián Yatra","Vives",13/18,2017,champeta,196,3.16 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" -"Carlos Vives, Sebastian Yatra - Robarte un Beso.mp3","Robarte un beso","Carlos Vives & Sebastián Yatra","Vives",13/18,2017,champeta,196,3.16 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Chayanne - Madre Tierra (Oye).mp3","Madre Tierra (Oye)","Chayanne","En todo estaré",1/11,2014,latin,208,3.40 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" -"Chayanne - Madre Tierra (Oye).mp3","Madre Tierra (Oye)","Chayanne","En todo estaré",1/11,2014,latin,208,3.40 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"ChocQuibTown - Somos los Prietos (feat. Alexis Play).mp3","Somos los Prietos (feat. Alexis Play)","ChocQuibTown/Alexis Play","Sin Miedo",4,2018-05-25,colombian hip hop,229,3.71 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" -"Chyno Miranda, Wisin, Gente De Zona - Quédate Conmigo.mp3","Quédate conmigo","Chyno Miranda feat. Wisin y Gente de Zona","Quédate conmigo",1/1,2017,latin,225,3.59 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" -"CNCO - Tan Fácil.mp3","Tan fácil","CNCO","Primera cita",2/14,2016,boy band,213,3.63 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" -"CNCO - Tan Fácil.mp3","Tan fácil","CNCO","Primera cita",2/14,2016,boy band,213,3.63 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"CNCO, Prince Royce - Llegaste Tú.mp3","Llegaste tú","CNCO + Prince Royce","Llegaste tú",1/1,2018,boy band,193,3.24 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" -"CNCO, Prince Royce - Llegaste Tú.mp3","Llegaste tú","CNCO + Prince Royce","Llegaste tú",1/1,2018,boy band,193,3.24 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Cocoa Roots - Me Gusta.mp3","Me Gusta","Cocoa Roots","Alerta",3,2017-05-20,ecuadorian pop,202,3.22 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" -"Cuando Nadie Ve.mp3","Cuando nadie ve","Morat","Cuando nadie ve",1/1,2018,Latin Pop,219,3.55 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Daddy Yankee, Snow - Con Calma.mp3","Con calma","Daddy Yankee feat. Snow","Con calma",1/1,2019,latin,194,3.42 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Danny Ocean - Swing.mp3","Swing","Danny Ocean","54+1",13/13,2019,latin,156,2.76 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" -"Danny Ocean - Swing.mp3","Swing","Danny Ocean","54+1",13/13,2019,latin,156,2.76 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"David Rees - De Ellos Aprendí.mp3","De Ellos Aprendí","David Rees","De Ellos Aprendí",1,2019-02-06,latin viral pop,267,4.45 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" -"Diego Torres, Carlos Vives - Un Poquito.mp3","Un poquito","Diego Torres & Carlos Vives","Un poquito",1/1,2018,latin,188,3.50 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" -"Diego Torres, Carlos Vives - Un Poquito.mp3","Un poquito","Diego Torres & Carlos Vives","Un poquito",1/1,2018,latin,188,3.50 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Don Omar, Lucenzo - Danza Kuduro.mp3","Danza kuduro","Don Omar feat. Lucenzo","Meet the Orphans",14/21,2010,latin,201,3.20 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Gianluca Vacchi, Sebastian Yatra - LOVE.mp3","LOVE","Gianluca Vacchi & Sebastián Yatra","LOVE",1/1,2018,,192,3.12 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" -"GIMS, Alvaro Soler, Jugglerz - Lo Mismo.mp3","Lo mismo","Maître Gims feat. Álvaro Soler","Lo mismo",1/1,2018,francoton,211,3.37 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" -"GIMS, Alvaro Soler, Jugglerz - Lo Mismo.mp3","Lo mismo","Maître Gims feat. Álvaro Soler","Lo mismo",1/1,2018,francoton,211,3.37 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"HaAsh - 30 de Febrero (feat. Abraham Mateo).mp3","30 de febrero","Ha*Ash feat. Abraham Mateo","30 de febrero",1/12,2017,latin,202,3.33 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" -"HaAsh, Prince Royce - 100 Años.mp3","100 años","Ha*Ash & Prince Royce","100 años",1/1,2017,latin,188,3.30 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" -"Jesse & Joy, J Balvin - Mañana Es Too Late.mp3","Mañana es Too Late","Jesse & Joy and J Balvin","Mañana es Too Late",1/1,2019,latin,196,3.23 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Juan Gabriel - No Tengo Dinero (Cover Audio).mp3","No tengo dinero","Juan Gabriel","Roma: Original Motion Picture Soundtrack",3/19,2018,Ballad/Danzón/Latin/Pop/Ranchera,187,3.10 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Juan Luis Guerra 4.40 - Kitipun.mp3","Kitipun","Juan Luis Guerra 4.40","Kitipun",1/1,2019,bachata,219,3.87 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" -"Juanes - La Camisa Negra.mp3","Juanes - La Camisa Negra","JuanesVEVO","",,2009,,247,8.31 MB,9/4/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Juanes - La Plata (feat. Lalo Ebratt).mp3","La plata","Juanes ft. Lalo Ebratt","La plata",1/1,2019,colombian pop,194,3.13 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" -"Juanes - La Plata (feat. Lalo Ebratt).mp3","La plata","Juanes ft. Lalo Ebratt","La plata",1/1,2019,colombian pop,199,3.37 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Lalo Ebratt, Sebastian Yatra, Yera, Trapical Minds - Déjate Querer.mp3","Déjate querer","Lalo Ebratt x Sebastián Yatra x Yera","Déjate querer",1/1,2019,colombian hip hop,205,3.72 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Luis Fonsi, Daddy Yankee - Despacito.mp3","Despacito","Luis Fonsi & Daddy Yankee","VIDA",9/15,2019,latin,231,4.04 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Luis Fonsi, Demi Lovato ‒ Echame La Culpa (Lyrics).mp3","Luis Fonsi, Demi Lovato ‒ Echame La Culpa (Lyrics)","Taz Network","",,2017,,189,3.73 MB,12/1/2019,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Luis Fonsi, Demi Lovato - Échame La Culpa.mp3","Échame la culpa","Luis Fonsi & Demi Lovato","VIDA",7/15,2019,latin,176,2.93 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Luis Fonsi, Sebastian Yatra, Nicky Jam - Date La Vuelta.mp3","Date la vuelta","Luis Fonsi, Sebastián Yatra & Nicky Jam","Date la vuelta",1/1,2019,latin,222,3.64 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Macaco - Toc Toc - Banda Sonora Original de la Película ”Toc Toc”.mp3","Toc Toc - Banda Sonora Original de la Película ”Toc Toc”","Macaco","Toc Toc (Banda Sonora Original de la Película ”Toc Toc”)",1,2017-06-16,latin alternative,224,3.62 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" -"MAFFiO - No Tengo Dinero (Official Lyric Video).mp3","MAFFiO - No Tengo Dinero (Official Lyric Video)","Span Glish","",,2013,,224,3.83 MB,5/9/2019,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Mau y Ricky, Camilo, Lunay - La Boca - Remix.mp3","La boca (remix)","Mau y Ricky, Camilo & Lunay","La boca (remix)",1/1,2019,latin,192,3.17 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Morat - Aprender A Quererte.mp3","Aprender A Quererte","Morat","Sobre El Amor Y Sus Efectos Secundarios",3,2016-06-17,colombian pop,228,3.93 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" -"Morat - Aprender A Quererte.mp3","Aprender A Quererte","Morat","Sobre El Amor Y Sus Efectos Secundarios",3,2016-06-17,colombian pop,228,4.01 MB,1/21/2021,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Morat - Cuando Nadie Ve.mp3","Cuando nadie ve","Morat","Balas perdidas",10/12,2018,colombian pop,222,3.53 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" -"Morat - Cuando Nadie Ve.mp3","Cuando nadie ve","Morat","Balas perdidas",10/12,2018,colombian pop,222,3.54 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Morat - No Se Va.mp3","No se va","Morat","Balas perdidas",5/12,2018,colombian pop,218,3.63 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" -"Morat - No Se Va.mp3","No se va","Morat","Balas perdidas",5/12,2018,colombian pop,218,3.63 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Morat, Aitana - Presiento.mp3","Presiento","Morat con Aitana","Presiento",1/1,2019,colombian pop,176,2.95 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Nicky Jam - Si Tú La Ves (feat. Wisin).mp3","Si Tú La Ves","Nicky Jam feat. Wisin","Fénix",7/26,2017,latin,224,3.97 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" -"No Se Va.mp3","No se va","Morat","Balas perdidas",5/12,2018,,217,3.61 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Piso 21, Micro TDH - Te Vi.mp3","Te vi","Grupo Manía feat. Yomo, Jowell y Randy, Elvis Crespo & Rubiel","La marca",10/10,2016,colombian pop,234,4.18 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Presiento.mp3","Presiento","Morat con Aitana","Presiento",1/1,2019,,174,2.91 MB,12/9/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Prince Royce, Shakira - Deja Vu - Lyrics English and Spanish - Deja Vu - Translation & Meaning.mp3","Deja vu","Prince Royce & Shakira","Deja vu",1/1,2017,Pop,198,2.63 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Reik, Manuel Turizo - Aleluya.mp3","Aleluya","Reik & Manuel Turizo","Ahora",3/9,2019,latin,161,2.75 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" -"Reik, Manuel Turizo - Aleluya.mp3","Aleluya","Reik & Manuel Turizo","Ahora",3/9,2019,latin,161,2.75 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Reik, Morat - La Bella y la Bestia (Letra_Lyrics).mp3","Reik, Morat - La Bella y la Bestia (Letra/Lyrics)","sunday","",,2020,,180,2.78 MB,7/4/2020,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Sebastian Yatra - No Hay Nadie Más.mp3","No hay nadie más","Sebastián Yatra","MANTRA",14/16,2018,colombian pop,198,3.39 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" -"Sebastian Yatra - No Hay Nadie Más.mp3","No hay nadie más","Sebastián Yatra","MANTRA",14/16,2018,colombian pop,198,3.39 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Sebastian Yatra, Daddy Yankee, Natti Natasha, Jonas Brothers - Runaway.mp3","Runaway","Sebastián Yatra, Daddy Yankee, Jonas Brothers & Natti Natasha","Runaway",1/1,2019,colombian pop,203,3.65 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Sebastian Yatra, Reik - Un Año.mp3","Un año","Sebastián Yatra & Reik","Un año",1/1,2019,colombian pop,167,2.84 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" -"Sebastian Yatra, Reik - Un Año.mp3","Un año","Sebastián Yatra & Reik","Un año",1/1,2019,colombian pop,167,2.84 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Shakira - Chantaje (feat. Maluma).mp3","Chantaje (feat. Maluma)","Shakira/Maluma","El Dorado",3,2017-05-26,colombian pop,201,3.04 MB,1/21/2021,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Shakira - Hips Don't Lie (feat. Wyclef Jean).mp3","Hips Don’t Lie","Shakira feat. Wyclef Jean","Oral Fixation, Vol. 2",3/13,2005,colombian pop,221,3.43 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Shakira - La La La (Brazil 2014) (feat. Carlinhos Brown).mp3","La La La (Brazil 2014) (feat. Carlinhos Brown)","Shakira/Carlinhos Brown","The 2014 FIFA World Cup Official Album: One Love, One Rhythm",8,2014-05-09,colombian pop,200,3.37 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" -"Shakira - Waka Waka (Esto Es Africa) - K-Mix.mp3","Waka waka (Esto es africa) (K‐mix)","Shakira","Sale el sol",12/16,2010,colombian pop,187,3.35 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Shakira - Waka Waka (This Time for Africa) [The Official 2010 FIFA World Cup (TM) Song] (feat. Freshlyground).mp3","Waka Waka (This Time for Africa) [The Official 2010 FIFA World Cup (TM) Song] (feat. Freshlyground)","Shakira/Freshlyground","Waka Waka (This Time for Africa) [The Official 2010 FIFA World Cup (TM) Song] (feat. Freshlyground)",1,2010-05-07,colombian pop,205,3.47 MB,1/21/2021,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Si Tú La Ves - Nicky Jam Ft Wisin (Video Oficial).mp3","Si Tú La Ves - Nicky Jam Ft Wisin (Video Oficial)","NickyJamTV","",,2017,,235,4.96 MB,9/28/2019,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Silvestre Dangond, Nicky Jam - Cásate Conmigo (Official Video).mp3","Silvestre Dangond, Nicky Jam - Cásate Conmigo (Official Video)","SilvestreDangondVEVO","",,2017,,257,3.91 MB,1/14/2020,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Silvestre Dangond, Nicky Jam - Cásate Conmigo.mp3","Cásate conmigo","Silvestre Dangond & Nicky Jam","Cásate conmigo",1/1,2017,colombian pop,212,3.88 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2019\" -"Silvestre Dangond, Nicky Jam - Cásate Conmigo.mp3","Cásate conmigo","Silvestre Dangond & Nicky Jam","Cásate conmigo",1/1,2017,colombian pop,212,3.88 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Ventino - Me Equivoqué.mp3","Me Equivoqué","Ventino","Ventino",1,2018-08-17,colombian pop,224,3.83 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\La Locura De Marzo 2020\" -"Ventino - Me Equivoqué.mp3","Me Equivoqué","Ventino","Ventino",1,2018-08-17,colombian pop,226,3.78 MB,1/21/2021,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -build on 4/4/2023 with Mp3tag v3.20 - the universal Tag editor - http://www.mp3tag.de/en/ \ No newline at end of file diff --git a/test/csv_input/thingsonphone2.csv b/test/csv_input/thingsonphone2.csv deleted file mode 100644 index 40a31f4..0000000 --- a/test/csv_input/thingsonphone2.csv +++ /dev/null @@ -1,174 +0,0 @@ -Filename,Title,Artist,Album,Track,Year,Genre,Length,Size,Last Modified,Path -"[I Just] Died In Your Arms.mp3","(I Just) Died in Your Arms","Cutting Crew","Broadcast",6/10,2016,Pop,280,4.33 MB,12/15/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"♪ Diggy Diggy Hole.mp3","Diggy Diggy Hole","Yogscast","",,,,248,4.04 MB,6/17/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\" -"01 Everybody Wants to Rule the World.wma","Everybody Wants to Rule the World","Tears for Fears","Roots of Rock: New Wave",1,1998,Alternative,250,3.84 MB,5/24/2011,"E:\Captures\Audio Files\Music\Music_From_DadsOldLaptop\Roots of Rock- New Wave\" -"01 Man! I Feel Like a Woman!.mp3","Man! I Feel Like a Woman!","Shania Twain","Come On Over",1/16,1997,Country,234,3.66 MB,12/11/2022,"E:\Captures\Audio Files\Music\goodsongs2\" -"02 Waiting for a Star to Fall.m4a","Waiting for a Star to Fall","Boy Meets Girl","Reel Life",2,1988,Pop,271,10.02 MB,12/10/2022,"E:\Captures\Audio Files\Music\M4A Files\" -"2 Be Loved (Am I Ready).mp3","2 Be Loved (Am I Ready)","Lizzo","Special",4/12,2022,Pop/R&B,187,2.94 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"16 The Show Must Go On.wma","The Show Must Go On","Queen","The Platinum Collection",16,2000-11-13,Rock,264,4.14 MB,12/11/2022,"E:\Captures\Audio Files\Music\Music_From_DadsOldLaptop\Queen\The Platinum Collection, Vol. 1-3 Disc 2\" -"100 gecs - Dumbest Girl Alive.mp3","Dumbest Girl Alive","100 gecs","10000 Gecs",1/10,2023,Hyperpop,137,4.44 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" -"100 gecs - Frog On The Floor.mp3","Frog on the Floor","100 gecs","10000 Gecs",4/10,2023,Hyperpop,162,4.81 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" -"Adele - Rolling in the Deep.mp3","Rolling in the Deep","Adele","21",1/15,2011,british soul,228,7.10 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -"Aldrey - La Lista (Lyric Video Oficial) #LaLista.mp3","Aldrey - La Lista (Lyric Video Oficial) #LaLista","AldreyMusica","",,2013,,259,4.05 MB,6/3/2017,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Ariana Grande - 7 rings.mp3","7 rings","Ariana Grande","thank u, next",10/12,2019,dance pop,179,5.55 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -"Ariana Grande - Into You.mp3","Into You","Ariana Grande","Dangerous Woman",4/16,2016,dance pop,244,7.74 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -"Ariana Grande - One Last Time.mp3","One Last Time","Ariana Grande","My Everything",3/18,2014,dance pop,197,6.04 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -"Ariana Grande, Zedd - Break Free.mp3","Break Free","Ariana Grande/Zedd","My Everything (Deluxe)",5,2014-08-25,dance pop,214,5.98 MB,12/31/2021,"E:\Captures\Audio Files\Music\goodsongs4\" -"Ariana Grande, Zedd - Break Free.mp3","Break Free","Ariana Grande/Zedd","My Everything (Deluxe)",5,2014-08-25,dance pop,214,5.98 MB,12/31/2021,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -"Auli'i Cravalho - How Far I'll Go (from Moana_Official Video).mp3","How Far I’ll Go","Auliʻi Cravalho","Moana",4/40,2016,Musical,156,2.13 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\disneysongs\" -"Avicii - The Nights.mp3","The Nights","Avicii","The Nights",1/1,2014,dance pop,177,5.68 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -"Backstreet Boys - As Long as You Love Me.mp3","As Long as You Love Me","Backstreet Boys","Backstreet’s Back",2/14,1997,boy band,214,6.94 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" -"Backstreet Boys - I Want It That Way.mp3","I Want It That Way","Backstreet Boys","Millennium",2,1999-05-18,boy band,213,3.45 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" -"Backstreet Boys - Quit Playing Games (With My Heart).mp3","Quit Playing Games (With My Heart)","Backstreet Boys","Backstreet Boys",5/13,1996,boy band,234,7.06 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" -"Backstreet Boys - Show Me the Meaning of Being Lonely.mp3","Show Me the Meaning of Being Lonely","Backstreet Boys","Millennium",3/12,1999,boy band,237,3.73 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" -"Besos En Guerra.mp3","Besos en guerra","Morat & Juanes","Balas perdidas",3/12,2018,Latin Pop,232,3.76 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Best Song Ever.mp3","Best Song Ever","One Direction","Midnight Memories",1/14,2013,Pop,200,3.14 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" -"Billie Eilish - bad guy.mp3","bad guy","Billie Eilish","WHEN WE ALL FALL ASLEEP, WHERE DO WE GO?",2/14,2019,art pop,194,6.37 MB,12/10/2022,"E:\Captures\Audio Files\Music\goodsongs4\" -"Billy Joel - Uptown Girl.mp3","Uptown Girl (live)","Billy Joel","A Matter of Trust: The Bridge to Russia",21/27,2014,album rock,200,2.98 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" -"Bonnie Tyler - Total Eclipse of the Heart.mp3","Total Eclipse of the Heart","Bonnie Tyler","Definitive Collection",1/18,1995,europop,272,5.05 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" -"Bruno Mars - 24K Magic.mp3","24K Magic","Bruno Mars","24K Magic",1/9,2016,Pop,226,7.12 MB,3/8/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Bruno Mars - Locked out of Heaven.mp3","Locked Out of Heaven","Bruno Mars","Unorthodox Jukebox",2/10,2012,dance pop,234,7.52 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -"Carly Rae Jepsen - Call Me Maybe.mp3","Call Me Maybe","Carly Rae Jepsen","Kiss",3/13,2012,canadian pop,194,6.12 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -"Carly Rae Jepsen - Guitar String ⧸ Wedding Ring.mp3","Guitar String / Wedding Ring","Carly Rae Jepsen","Kiss",11/16,2012,Pop,207,6.31 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" -"Carly Rae Jepsen-Emotion.mp3","Emotion","Carly Rae Jepsen","Emotion",2/17,2020,Dance-Pop,197,6.27 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\" -"Carly Rae Jepsen-Felt This Way.mp3","Felt This Way","Carly Rae Jepsen","Dedicated Side B",3/12,2020,Indie Pop,217,6.84 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\" -"Carly Rae Jepsen-I Didn’t Just Come Here To Dance.mp3","I Didn’t Just Come Here to Dance","Carly Rae Jepsen","Emotion",14/17,2020,Dance-Pop,220,6.83 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\" -"Carly Rae Jepsen-Let’s Get Lost.mp3","Let’s Get Lost","Carly Rae Jepsen","Emotion",9/17,2020,Dance-Pop,194,6.16 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\" -"Carly Rae Jepsen-Solo.mp3","Solo","Carly Rae Jepsen","Dedicated Side B",11/12,2020,Indie Pop,196,6.15 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\" -"Carly Rae Jepsen-This Love Isn't Crazy.mp3","This Love Isn’t Crazy","Carly Rae Jepsen","Dedicated Side B",1/12,2020,Indie Pop,233,7.43 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\" -"Cascada - Everytime We Touch (Fallen Superhero Hardstyle Remix).mp3","","","Hardstyle v1",,,Hardstyle,219,3.41 MB,6/20/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\" -"Cher - Believe.mp3","Believe","Cher","Believe",1/10,1998,dance pop,239,7.65 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" -"Cher - If I Could Turn Back Time.mp3","If I Could Turn Back Time","Cher","Heart of Stone",1/12,1989,dance pop,241,3.70 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\My 80's Playlist\" -"Childish Gambino, Donald Glover-3005.mp3","3005","Childish Gambino, Donald Glover","Because the Internet",,2022,,234,7.92 MB,9/1/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Clean Bandit ft. Demi Lovato - Solo (Twisted Melodiez Bootleg) [Free Release].mp3","","","Hardstyle v1",,,Hardstyle,181,2.87 MB,6/20/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\" -"Cole Swindell - She Had Me At Heads Carolina.mp3","She Had Me at Heads Carolina","Cole Swindell","Stereotype",4/13,2022,Country,206,6.54 MB,3/16/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\" -"Crazier Than You.mp3","Crazier Than You","Andrew Lippa","The Addams Family",15/21,2010,Musical,171,5.41 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\" -"Cuando Nadie Ve.mp3","Cuando nadie ve","Morat","Cuando nadie ve",1/1,2018,Latin Pop,219,3.55 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Cut To The Feeling.mp3","Cut to the Feeling","Carly Rae Jepsen","Cut to the Feeling",1/2,2017,Pop,208,3.35 MB,12/15/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Da Tweekaz - Frozen (Disney Tool) (Official Preview).mp3","","","Hardstyle v1",,,Hardstyle,228,3.44 MB,6/20/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\" -"Dua Lipa - Cool.mp3","Cool","Dua Lipa","Future Nostalgia",3/13,2020,Dance-Pop,210,6.69 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" -"Dua Lipa - Don't Start Now.mp3","Don’t Start Now","Dua Lipa","Future Nostalgia",2/13,2020,Dance-Pop,183,5.90 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" -"Dua Lipa - Hallucinate.mp3","Hallucinate","Dua Lipa","Future Nostalgia",7/13,2020,Dance-Pop,209,6.34 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" -"Dua Lipa - IDGAF.mp3","IDGAF","Dua Lipa","Dua Lipa (deluxe edition)",5/17,2017,dance pop,218,7.09 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -"Dua Lipa - Love Again (Official Music Video).mp3","Love Again","Dua Lipa","40 Tubes 2022",5/20,2021,Dance-Pop,262,4.25 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\" -"Dua Lipa, DaBaby - Levitating (feat. DaBaby).mp3","Levitating","Dua Lipa feat. DaBaby","Future Nostalgia",12/13,2020,Dance-Pop,203,6.49 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" -"Ed Sheeran - Castle on the Hill.mp3","Castle on the Hill","Ed Sheeran","÷ (Divide)",2/12,2017,pop,261,8.63 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -"Elton John - I'm Still Standing.mp3","I'm Still Standing","Elton John","Rocket Man: The Definitive Hits",17/18,2007,glam rock,185,2.80 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" -"Erasure - A Little Respect - 2009 Remastered Version.mp3","A Little Respect - 2009 Remastered Version","Erasure","The Innocents",1,1988-04-18,dance pop,213,3.48 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" -"Eric Church - Round Here Buzz.mp3","Round Here Buzz","Eric Church","Mr. Misunderstood",6/10,2016,contemporary country,216,3.32 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\Good Country\" -"Estelle - American Boy, Lyrics.mp3","American Boy","Estelle feat. Kanye West","Het beste uit de Qmusic Millennium Top 1000: 2000–2009",3/20,2009,,278,4.30 MB,12/9/2022,"E:\Captures\Audio Files\Music\2000'sThrowbacks\" -"Extreme - More Than Words.mp3","More Than Words","Extreme","Extreme II: Pornograffitti (A Funked Up Fairy Tale)",5/13,1990,album rock,334,8.82 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" -"Faith Hill - Breathe.mp3","Breathe","Faith Hill","Breathe",4/14,1999,Country,250,8.07 MB,3/16/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"George Michael-Careless Whisper.mp3","Careless Whisper","George Michael","Careless Whisper",1/2,1984,Pop,300,10.23 MB,3/16/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Getaway Car.mp3","Getaway Car","Taylor Swift","reputation",9/15,2018,Pop,234,3.72 MB,12/15/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Glimpse of Us.mp3","Glimpse of Us","Joji","Bravo Hits 118",7/24,2022,Pop,233,3.61 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\" -"Go West - The King of Wishful Thinking.mp3","The King of Wishful Thinking","Go West","Indian Summer",6/13,1992,mellow gold,242,7.47 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" -"Gotye - Somebody That I Used To Know (Lyrics).mp3","Somebody That I Used to Know","Gotye","Promo Only: Modern Rock Radio, January 2012",,,,306,4.68 MB,6/21/2021,"E:\Captures\Audio Files\Music\2000'sThrowbacks\" -"Heads Carolina, Tails California.mp3","Heads Carolina, Tails California","Jo Dee Messina","Greatest Hits",3/15,2003,Country,210,3.44 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\" -"Huey Lewis & The News - The Power Of Love.mp3","The Power of Love","Huey Lewis & the News","Greatest Hits",3/21,2006,album rock,237,3.83 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" -"I Will Survive.mp3","I Will Survive","Gloria Gaynor","Love Tracks",5/13,2013,Disco,296,5.08 MB,12/15/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Idina Menzel, AURORA - Into the Unknown (From 'Frozen 2').mp3","Into the Unknown","Idina Menzel & AURORA","Frozen II",3/11,2019,Pop,209,2.93 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\disneysongs\" -"Jay Sean, Lil Wayne - Down.mp3","Down","Jay Sean feat. Lil Wayne","All or Nothing",3/14,2009,dance pop,214,3.44 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" -"Jesse & Joy, J Balvin - Mañana Es Too Late.mp3","Mañana es Too Late","Jesse & Joy and J Balvin","Mañana es Too Late",1/1,2019,latin,196,3.23 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\" -"Johann Pachelbel - Canon In D (Jatimatic Hardstyle Bootleg) _ HQ Videoclip.mp3","Canon In D - Jatimatic Remix","Stacey Lee May","Canon In D (Jatimatic Remix)",1/1,2021,Hardstyle,242,3.75 MB,12/9/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\" -"Jonas Blue, Jack & Jack - Rise.mp3","Rise","Jonas Blue feat. Jack & Jack","Blue",11/15,2018,Electronic,194,6.32 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Journey - Don't Stop Believin'.mp3","Don't Stop Believin'","Journey","The Essential Journey",2,2001-09-19,album rock,250,4.11 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" -"Juan Gabriel - No Tengo Dinero (Cover Audio).mp3","No tengo dinero","Juan Gabriel","Roma: Original Motion Picture Soundtrack",3/19,2018,Ballad/Danzón/Latin/Pop/Ranchera,187,3.10 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Juanes - La Camisa Negra.mp3","Juanes - La Camisa Negra","JuanesVEVO","",,2009,,247,8.31 MB,9/4/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Just The Way You Are- Bruno Mars (Lyrics on Screen).mp3","Just the Way You Are","Bruno Mars","RTL Hits 2011",3/20,2011,,213,3.27 MB,12/9/2022,"E:\Captures\Audio Files\Music\2000'sThrowbacks\" -"Justin Timberlake - Sexy Back [Lyrics].mp3","Sexyback","Justin Timberlake feat. Timbaland","Nachtschicht, Volume 42",7/20,2011,,239,3.74 MB,12/9/2022,"E:\Captures\Audio Files\Music\2000'sThrowbacks\" -"Kanye West - Heartless.mp3","Heartless","Kanye West","808s & Heartbreak",3/12,2008,chicago rap,213,3.54 MB,2/5/2023,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" -"Katy Perry - Firework.mp3","Firework","Katy Perry","Teenage Dream",4/14,2010,dance pop,228,7.19 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -"Katy Perry - Teenage Dream.mp3","Teenage Dream","Katy Perry","Teenage Dream",1/14,2010,dance pop,230,3.74 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" -"Katy Perry, Snoop Dogg - California Gurls.mp3","California Gurls","Katy Perry feat. Snoop Dogg","Teenage Dream",3/14,2010,dance pop,237,3.70 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" -"Kesha - TiK ToK.mp3","TiK ToK","Ke$ha","Animal",2/18,2010,dance pop,202,3.13 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" -"Kesha - Your Love Is My Drug.mp3","Your Love Is My Drug","Ke$ha","Animal",1/18,2010,dance pop,190,3.01 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" -"Kiss - I Was Made For Lovin' You.mp3","I Was Made for Lovin’ You","KISS","KISSWORLD: The Best of KISS",3/20,2019,Rock,238,3.51 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\" -"Lady Gaga - Poker Face.mp3","Poker Face","Lady Gaga","The Fame Monster (deluxe)",12/22,2009,dance pop,239,3.89 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" -"Laura Branigan - Gloria.mp3","Gloria","Laura Branigan","Branigan",2/9,1982,dance rock,292,4.63 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" -"Leave The Door Open.mp3","Leave the Door Open","Silk Sonic","An Evening With Silk Sonic",2/9,2022,Contemporary R&B/Soul,242,3.78 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Lil Nas X, Jack Harlow - INDUSTRY BABY.mp3","INDUSTRY BABY","Lil Nas X & Jack Harlow","MONTERO",3/15,2021,Pop,212,7.01 MB,3/16/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Linkin Park-In the End.mp3","In the End","Linkin Park","Hybrid Theory",8/12,2013,Nu Metal,217,6.88 MB,3/1/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" -"Lionel Richie - Dancing On The Ceiling.mp3","Dancing On The Ceiling","Lionel Richie","Dancing On The Ceiling",1,1986,adult standards,276,4.59 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" -"Little Mix - Black Magic.mp3","Black Magic","Little Mix","Now That's What I Call Music! 91",5,2015-07-24,dance pop,212,6.87 MB,12/31/2021,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -"Lizzo - About Damn Time (Lyrics).mp3","About Damn Time","Lizzo","Bravo Hits 118",18/24,2022,Pop,191,3.13 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Lonestar - Amazed.mp3","Amazed","Lonestar","16 Biggest Hits",7/16,2006,contemporary country,241,7.87 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" -"Luis Fonsi, Demi Lovato ‒ Echame La Culpa (Lyrics).mp3","Luis Fonsi, Demi Lovato ‒ Echame La Culpa (Lyrics)","Taz Network","",,2017,,189,3.73 MB,12/1/2019,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Luke Combs - The Kind of Love We Make.mp3","The Kind of Love We Make","Luke Combs","Growin’ Up",3/12,2022,,224,7.11 MB,3/16/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\" -"lukebryan_playitagain_notmyjugremix.mp3","Play It Again (NotMyJug Remix)","Luke Bryan, NotMyJug","Audacious Remixes",,2018,,197,4.51 MB,11/27/2022,"E:\Captures\Audio Files\Music\nickremixes\" -"Madonna - Like a Prayer.mp3","Like a Prayer","Madonna","Like a Prayer",1/11,1989,dance pop,342,5.84 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" -"MAGIC! - Rude.mp3","Rude","MAGIC!","Don't Kill the Magic",1/11,2014,reggae fusion,225,7.13 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -"Marianas Trench - Desperate Measures.mp3","Desperate Measures","Marianas Trench","Ever After",5/12,2014,Pop/Pop Rock/Power Pop/Rock,257,4.03 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\" -"Marianas Trench - Haven't Had Enough.mp3","Haven't Had Enough","Marianas Trench","Ever After",2/12,2014,Pop/Pop Rock/Power Pop/Rock,246,3.57 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\" -"Me And My Broken Heart.mp3","Me and My Broken Heart","Rixton","Now That’s What I Call Music! 51",13/21,2014,Pop,194,3.17 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\" -"Meat Loaf - I'd Do Anything For Love (But I Won't Do That) - Single Edit.mp3","I’d Do Anything for Love (But I Won’t Do That) (single edit)","Meat Loaf","Bat Out of Hell II: Back Into Hell",2/11,2022,album rock,317,10.29 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" -"Morgan Wallen - Last Night.mp3","Last Night","Morgan Wallen","One Thing at a Time",2/18,2023,Country,164,5.41 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" -"My Chemical Romance - Welcome to the Black Parade.mp3","Welcome to the Black Parade","My Chemical Romance","The Black Parade",5/14,2006,emo,313,5.74 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" -"Naked Eyes - Always Something There To Remind Me (Official Video).mp3","Always Something There to Remind Me","Naked Eyes","The Best 80s Modern Rock Album... Ever!",10/16,2002,Rock,201,3.12 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\" -"Natasha Bedingfield - Unwritten.mp3","Unwritten","Natasha Bedingfield","Unwritten",4/11,2004,dance pop,262,4.58 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" -"Nightcore_018_Nightcore - Everytime We Touch.mp3","Nightcore - Everytime We Touch","NightCore","Nightcore",018,2012-12-24T18,Nightcore,186,2.89 MB,12/24/2012,"E:\Captures\Audio Files\Music\historystuff\Nightcore\" -"Nightcore_020_Nightcore - Bad boy.mp3","Nightcore - Bad boy","NightCore","Nightcore",020,2012-12-25T13,Nightcore,156,2.49 MB,12/25/2012,"E:\Captures\Audio Files\Music\historystuff\Nightcore\" -"Nightcore_204_Nightcore - Gotta Be Somebody.mp3","Nightcore - Gotta Be Somebody","Sanuksanan Nightcore P.1","Nightcore",204,2014-12-10T08,Nightcore,222,3.46 MB,12/10/2014,"E:\Captures\Audio Files\Music\historystuff\Nightcore\" -"Once And For All.mp3","Once and for All","Alan Menken","Newsies: The Musical",16/20,2012,Musical,241,7.70 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\" -"One Direction - Story of My Life.mp3","Story of My Life","One Direction","Midnight Memories (Deluxe)",2,2013-11-25,boy band,246,7.22 MB,12/31/2021,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -"Panic! At The Disco - I Write Sins Not Tragedies.mp3","I Write Sins Not Tragedies","Panic! at the Disco","A Fever You Can’t Sweat Out",10/13,2005,baroque pop,188,3.07 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" -"Panic! At The Disco-Into the Unknown (Panic! At The Disco Version).mp3","Into the Unknown (Panic! at the Disco version)","Panic! at the Disco","Frozen II",9/11,2019,Pop,187,2.93 MB,3/16/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\disneysongs\" -"Paramore - Misery Business.mp3","Misery Business","Paramore","RIOT!",4/11,2007,Rock,212,7.01 MB,3/28/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Paul Simon - You Can Call Me Al.mp3","You Can Call Me Al","Paul Simon","Graceland",6/11,1986,classic rock,282,5.36 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" -"Peabo Bryson, Regina Belle - A Whole New World (Aladdin's Theme).mp3","A Whole New World (Aladdin's Theme)","Peabo Bryson/Regina Belle","Aladdin (Original Motion Picture Soundtrack)",21,1992-01-01,adult standards,250,7.50 MB,12/15/2021,"E:\Captures\Audio Files\Music\spotifystuff\90s\" -"Phil Collins - Against All Odds (Take a Look at Me Now) - 2016 Remaster.mp3","Against All Odds (Take a Look at Me Now) - 2016 Remaster","Phil Collins","The Singles (Expanded)",10,2016-10-14,mellow gold,209,3.40 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" -"Phil Collins - You'll Be In My Heart.mp3","You’ll Be in My Heart","Phil Collins","Tarzan: Original Soundtrack Brazil",15/15,1999,mellow gold,257,8.62 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" -"Play It Again.mp3","Play It Again","Luke Bryan","Crash My Party",9/13,2013,Contemporary Country,227,3.70 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\" -"Presiento.mp3","Presiento","Morat con Aitana","Presiento",1/1,2019,,174,2.91 MB,12/9/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Prince Royce, Shakira - Deja Vu - Lyrics English and Spanish - Deja Vu - Translation & Meaning.mp3","Deja vu","Prince Royce & Shakira","Deja vu",1/1,2017,Pop,198,2.63 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Pulled.mp3","Pulled","Andrew Lippa","The Addams Family",4/21,2010,Musical,179,5.44 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\" -"Queen, David Bowie - Under Pressure - Remastered 2011.mp3","Under Pressure","Queen & David Bowie","Hot Space",11/11,1982,classic rock,246,4.24 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" -"Reik, Morat - La Bella y la Bestia (Letra_Lyrics).mp3","Reik, Morat - La Bella y la Bestia (Letra/Lyrics)","sunday","",,2020,,180,2.78 MB,7/4/2020,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"REO Speedwagon - Can't Fight This Feeling.mp3","Can’t Fight This Feeling","REO Speedwagon","Wheels Are Turnin’",6/9,1984,album rock,297,5.03 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" -"Rick Astley - Never Gonna Give You Up.mp3","Never Gonna Give You Up","Rick Astley","Whenever You Need Somebody",1/10,1987,dance rock,215,3.34 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\My 80's Playlist\" -"Rick Astley - Whenever You Need Somebody.mp3","Whenever You Need Somebody","Rick Astley","Whenever You Need Somebody",2/10,1987,dance rock,238,3.80 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\My 80's Playlist\" -"Ricky Martin - Livin' la Vida Loca.mp3","Livin’ la vida loca","Ricky Martin","Ricky Martin",1/14,1999,dance pop,243,7.68 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" -"Rihanna - Only Girl (In The World).mp3","Only Girl (in the World)","Rihanna","Loud",5/6,2021,Contemporary R&B,236,7.31 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Rock and A Hard Place.mp3","Rock and a Hard Place","Bailey Zimmerman","Rock and a Hard Place",1/1,2022,,208,3.18 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\" -"Run Away With Me.mp3","Run Away With Me","Carly Rae Jepsen","Emotion",1/17,2020,Dance-Pop/Electropop,251,3.94 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Sam Smith, Normani - Dancing With A Stranger (with Normani).mp3","Dancing With a Stranger","Sam Smith with Normani","Love Goes",12/19,2020,dance pop,174,4.45 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -"Sea Shanty Medley.mp3","Sea Shanty Medley","Home Free","Sea Shanty Medley",1/1,2021,,234,4.05 MB,12/10/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Seize the Day - Disney's NEWSIES (Official Lyric Video).mp3","Seize the Day - Disney's NEWSIES (Official Lyric Video)","Disney On Broadway","",,2013,,235,7.82 MB,6/7/2017,"E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\" -"Selena Gomez, Marshmello - Wolves.mp3","Wolves","Selena Gomez x Marshmello","Wolves",1/1,2017,dance pop,198,6.56 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -"Separate Ways (Worlds Apart).mp3","Separate Ways (Worlds Apart)","Journey","Frontiers",1/18,2017,Rock,324,5.32 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Set It Off - Wolf in Sheep's Clothing (feat. William Beckett).mp3","Wolf in Sheep's Clothing","Set It Off feat. William Beckett","Duality",8/11,2014,,188,6.00 MB,3/16/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Shawn Mendes - If I Can't Have You.mp3","If I Can’t Have You","Shawn Mendes","If I Can’t Have You",1/1,2019,canadian pop,191,6.09 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -"Silvestre Dangond, Nicky Jam - Cásate Conmigo (Official Video).mp3","Silvestre Dangond, Nicky Jam - Cásate Conmigo (Official Video)","SilvestreDangondVEVO","",,2017,,257,3.91 MB,1/14/2020,"E:\Captures\Audio Files\Music\youtubedlsongs\Latin\" -"Sledgehammer.mp3","Sledgehammer","Fifth Harmony","Reflection",3/11,2015,Pop,231,3.87 MB,12/15/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Someone To You.mp3","Someone to You","BANNERS","Someone To You",1/3,2020,,220,3.64 MB,3/1/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\" -"Starship - Nothing's Gonna Stop Us Now.mp3","Nothing's Gonna Stop Us Now","Starship","Precious Metal",9/18,1989,album rock,271,4.24 MB,12/10/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" -"SZA-Conceited.mp3","Conceited","SZA","SOS",15/25,2023,R&B,151,2.45 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" -"SZA-Nobody Gets Me.mp3","Nobody Gets Me","SZA","SOS",14/25,2023,R&B,181,2.79 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" -"SZA-Seek & Destroy.mp3","Seek & Destroy","SZA","SOS",3/25,2023,R&B,204,3.32 MB,3/27/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" -"The Cure - Friday I'm In Love.mp3","Friday I’m in Love","The Cure","Wish",7/12,1992,new wave,216,7.15 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" -"The Killers - Mr BrightSide Lyrics.mp3","Mr. Brightside","The Killers","NOW That’s What I Call the 00s: The Best of the Noughties 2000–2009",9/20,2017,,228,3.58 MB,12/9/2022,"E:\Captures\Audio Files\Music\2000'sThrowbacks\" -"The Way You Make Me Feel (2012 Remaster).mp3","The Way You Make Me Feel","Michael Jackson","Bad",2/11,2013,Pop,298,5.13 MB,12/15/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"The Weeknd, Lil Wayne-I Heard You’re Married.mp3","I Heard You’re Married","The Weeknd feat. Lil Wayne","Dawn FM",14/16,2022,Contemporary R&B,264,4.40 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" -"The Weeknd-Gasoline.mp3","Gasoline","The Weeknd","Dawn FM",2/16,2022,Contemporary R&B,212,3.66 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" -"The Weeknd-How Do I Make You Love Me?.mp3","How Do I Make You Love Me?","The Weeknd","Dawn FM",3/16,2022,Contemporary R&B,214,3.51 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" -"The Weeknd-Sacrifice.mp3","Sacrifice","The Weeknd","Dawn FM",5/16,2022,Contemporary R&B,189,3.15 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" -"The Weeknd-Take My Breath.mp3","Take My Breath","The Weeknd","Dawn FM",4/16,2022,Contemporary R&B,339,5.74 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\" -"The World Will Know.mp3","The World Will Know","Alan Menken","Newsies: The Musical",7/20,2012,Musical,249,7.90 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\" -"Thinking ‘Bout You (feat. MacKenzie Porter) [Official Music Video].mp3","Thinking ’Bout You","Dustin Lynch feat. MacKenzie Porter","Thinking ’Bout You",1/1,2021,,211,3.25 MB,12/10/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\" -"TLC - No Scrubs.mp3","No Scrubs","TLC","FanMail",5/17,1999,atl hip hop,214,7.05 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\90s\" -"Tonight I’m Getting Over You.mp3","Tonight I’m Getting Over You","Carly Rae Jepsen","Kiss",10/13,2012,Pop,219,3.55 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Trace Adkins - Chrome.mp3","Chrome","Trace Adkins","Definitive Greatest Hits",4,2010-01-01,contemporary country,204,3.73 MB,1/20/2021,"E:\Captures\Audio Files\Music\spotifystuff\" -"Travis Scott-SICKO MODE.mp3","SICKO MODE","Travis Scott","ASTROWORLD",3/17,2018,Hip Hop,313,9.87 MB,3/16/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Troy, Gabriella - Start of Something New (From "High School Musical").mp3","Start of Something New","Zac Efron & Vanessa Hudgens","High School Musical",1/11,2006,Pop,201,5.99 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\" -"Try Everything.mp3","Try Everything","Home Free","Try Everything",,2016,,197,3.84 MB,8/16/2019,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Two Tickets to Paradise.mp3","Two Tickets to Paradise","Eddie Money","Eddie Money",1/11,2016,Rock,237,3.97 MB,12/15/2022,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Vanessa Carlton - A Thousand Miles.mp3","A Thousand Miles","Vanessa Carlton","Heart & Soul",7/18,2013,dance pop,240,4.58 MB,12/9/2022,"E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\" -"WALK THE MOON - Shut Up and Dance.mp3","Shut Up and Dance","WALK THE MOON","Now That's What I Call Music! 91",10,2015-07-24,dance pop,195,6.37 MB,12/31/2021,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -"WAP (feat. Megan Thee Stallion).mp3","WAP (feat. Megan Thee Stallion)","Cardi B, Megan Thee Stallion","WAP (feat. Megan Thee Stallion)",,2020,,188,5.99 MB,8/8/2020,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Watch What Happens.mp3","Watch What Happens","Alan Menken","Newsies: The Musical",8/20,2012,Musical,187,5.87 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\" -"We're All In This Together.mp3","We're All in This Together","High School Musical Cast","High School Musical",9/11,2006,Pop,231,7.50 MB,3/16/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\" -"Wham!-Last Christmas.mp3","Last Christmas","Wham!","Last Christmas",1/2,2014,Pop,263,8.11 MB,3/1/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\" -"Whiskey Glasses.mp3","Whiskey Glasses","Morgan Wallen","If I Know Me",4/14,2018,Country/Pop,234,3.82 MB,2/4/2023,"E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\" -"Whitney Houston - I Wanna Dance with Somebody (Who Loves Me).mp3","I Wanna Dance With Somebody (Who Loves Me)","Whitney Houston","Whitney",1/11,1987,dance pop,293,4.55 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\" -"Zedd, Maren Morris, Grey - The Middle.mp3","The Middle","Zedd, Maren Morris & Grey","The Middle",1/1,2018,complextro,185,5.84 MB,12/11/2022,"E:\Captures\Audio Files\Music\spotifystuff\2010s\" -build on 4/4/2023 with Mp3tag v3.20 - the universal Tag editor - http://www.mp3tag.de/en/ \ No newline at end of file diff --git a/test/csv_output/latinstuff.yaml b/test/csv_output/latinstuff.yaml deleted file mode 100644 index 558b1d1..0000000 --- a/test/csv_output/latinstuff.yaml +++ /dev/null @@ -1,806 +0,0 @@ -name: latinstuff -tracks: -- album: Balas perdidas - artist: Morat & Juanes - filename: “Besos En Guerra' ️- Morat & Juanes (LETRA).mp3 - genre: Latin Pop - last modified: 2/4/2023 - length: '230' - size: 3.74 MB - title: Besos en guerra - track: 3/12 - year: '2018' -- album: Teléfono - artist: Aitana - filename: Aitana - TELÉFONO.mp3 - genre: latin pop - last modified: 12/10/2022 - length: '166' - size: 2.74 MB - title: Teléfono - track: 1/1 - year: '2018' -- album: Teléfono - artist: Aitana - filename: Aitana - TELÉFONO.mp3 - genre: '' - last modified: 12/10/2022 - length: '164' - size: 2.72 MB - title: Teléfono - track: 1/1 - year: '2018' -- album: '' - artist: AldreyMusica - filename: 'Aldrey - La Lista (Lyric Video Oficial) #LaLista.mp3' - genre: '' - last modified: 6/3/2017 - length: '259' - size: 4.05 MB - title: 'Aldrey - La Lista (Lyric Video Oficial) #LaLista' - track: '' - year: '2013' -- album: Mar De Colores (Versión Extendida) - artist: Alvaro Soler - filename: Alvaro Soler - La Libertad.mp3 - genre: latin pop - last modified: 1/20/2021 - length: '194' - size: 2.51 MB - title: La Libertad - track: '1' - year: '2019-05-10' -- album: Mar De Colores - artist: Alvaro Soler - filename: Alvaro Soler - Puebla.mp3 - genre: latin pop - last modified: 1/20/2021 - length: '193' - size: 3.07 MB - title: Puebla - track: '5' - year: '2018-09-21' -- album: Mar De Colores - artist: Alvaro Soler - filename: Alvaro Soler - Puebla.mp3 - genre: latin pop - last modified: 1/21/2021 - length: '193' - size: 3.07 MB - title: Puebla - track: '5' - year: '2018-09-21' -- album: Balas perdidas - artist: Morat & Juanes - filename: Besos En Guerra.mp3 - genre: Latin Pop - last modified: 2/4/2023 - length: '232' - size: 3.76 MB - title: Besos en guerra - track: 3/12 - year: '2018' -- album: Amanecer - artist: Bomba Estéreo - filename: Bomba Estéreo - To My Love.mp3 - genre: cumbia - last modified: 12/10/2022 - length: '243' - size: 4.63 MB - title: To My Love - track: 9/11 - year: '2015' -- album: Tutu - artist: Camilo + Pedro Capó - filename: Camilo, Pedro Capó - Tutu.mp3 - genre: colombian pop - last modified: 12/10/2022 - length: '181' - size: 3.18 MB - title: Tutu - track: 1/1 - year: '2019' -- album: Vives - artist: Carlos Vives & Sebastián Yatra - filename: Carlos Vives, Sebastian Yatra - Robarte un Beso.mp3 - genre: champeta - last modified: 12/10/2022 - length: '196' - size: 3.16 MB - title: Robarte un beso - track: 13/18 - year: '2017' -- album: Vives - artist: Carlos Vives & Sebastián Yatra - filename: Carlos Vives, Sebastian Yatra - Robarte un Beso.mp3 - genre: champeta - last modified: 12/10/2022 - length: '196' - size: 3.16 MB - title: Robarte un beso - track: 13/18 - year: '2017' -- album: En todo estaré - artist: Chayanne - filename: Chayanne - Madre Tierra (Oye).mp3 - genre: latin - last modified: 12/10/2022 - length: '208' - size: 3.40 MB - title: Madre Tierra (Oye) - track: 1/11 - year: '2014' -- album: En todo estaré - artist: Chayanne - filename: Chayanne - Madre Tierra (Oye).mp3 - genre: latin - last modified: 12/10/2022 - length: '208' - size: 3.40 MB - title: Madre Tierra (Oye) - track: 1/11 - year: '2014' -- album: Sin Miedo - artist: ChocQuibTown/Alexis Play - filename: ChocQuibTown - Somos los Prietos (feat. Alexis Play).mp3 - genre: colombian hip hop - last modified: 1/20/2021 - length: '229' - size: 3.71 MB - title: Somos los Prietos (feat. Alexis Play) - track: '4' - year: '2018-05-25' -- album: Quédate conmigo - artist: Chyno Miranda feat. Wisin y Gente de Zona - filename: Chyno Miranda, Wisin, Gente De Zona - Quédate Conmigo.mp3 - genre: latin - last modified: 12/10/2022 - length: '225' - size: 3.59 MB - title: Quédate conmigo - track: 1/1 - year: '2017' -- album: Primera cita - artist: CNCO - filename: CNCO - Tan Fácil.mp3 - genre: boy band - last modified: 12/9/2022 - length: '213' - size: 3.63 MB - title: Tan fácil - track: 2/14 - year: '2016' -- album: Primera cita - artist: CNCO - filename: CNCO - Tan Fácil.mp3 - genre: boy band - last modified: 12/9/2022 - length: '213' - size: 3.63 MB - title: Tan fácil - track: 2/14 - year: '2016' -- album: Llegaste tú - artist: CNCO + Prince Royce - filename: CNCO, Prince Royce - Llegaste Tú.mp3 - genre: boy band - last modified: 12/10/2022 - length: '193' - size: 3.24 MB - title: Llegaste tú - track: 1/1 - year: '2018' -- album: Llegaste tú - artist: CNCO + Prince Royce - filename: CNCO, Prince Royce - Llegaste Tú.mp3 - genre: boy band - last modified: 12/10/2022 - length: '193' - size: 3.24 MB - title: Llegaste tú - track: 1/1 - year: '2018' -- album: Alerta - artist: Cocoa Roots - filename: Cocoa Roots - Me Gusta.mp3 - genre: ecuadorian pop - last modified: 1/20/2021 - length: '202' - size: 3.22 MB - title: Me Gusta - track: '3' - year: '2017-05-20' -- album: Cuando nadie ve - artist: Morat - filename: Cuando Nadie Ve.mp3 - genre: Latin Pop - last modified: 2/4/2023 - length: '219' - size: 3.55 MB - title: Cuando nadie ve - track: 1/1 - year: '2018' -- album: Con calma - artist: Daddy Yankee feat. Snow - filename: Daddy Yankee, Snow - Con Calma.mp3 - genre: latin - last modified: 12/10/2022 - length: '194' - size: 3.42 MB - title: Con calma - track: 1/1 - year: '2019' -- album: 54+1 - artist: Danny Ocean - filename: Danny Ocean - Swing.mp3 - genre: latin - last modified: 12/10/2022 - length: '156' - size: 2.76 MB - title: Swing - track: 13/13 - year: '2019' -- album: 54+1 - artist: Danny Ocean - filename: Danny Ocean - Swing.mp3 - genre: latin - last modified: 12/10/2022 - length: '156' - size: 2.76 MB - title: Swing - track: 13/13 - year: '2019' -- album: De Ellos Aprendí - artist: David Rees - filename: David Rees - De Ellos Aprendí.mp3 - genre: latin viral pop - last modified: 1/20/2021 - length: '267' - size: 4.45 MB - title: De Ellos Aprendí - track: '1' - year: '2019-02-06' -- album: Un poquito - artist: Diego Torres & Carlos Vives - filename: Diego Torres, Carlos Vives - Un Poquito.mp3 - genre: latin - last modified: 12/10/2022 - length: '188' - size: 3.50 MB - title: Un poquito - track: 1/1 - year: '2018' -- album: Un poquito - artist: Diego Torres & Carlos Vives - filename: Diego Torres, Carlos Vives - Un Poquito.mp3 - genre: latin - last modified: 12/10/2022 - length: '188' - size: 3.50 MB - title: Un poquito - track: 1/1 - year: '2018' -- album: Meet the Orphans - artist: Don Omar feat. Lucenzo - filename: Don Omar, Lucenzo - Danza Kuduro.mp3 - genre: latin - last modified: 12/9/2022 - length: '201' - size: 3.20 MB - title: Danza kuduro - track: 14/21 - year: '2010' -- album: LOVE - artist: Gianluca Vacchi & Sebastián Yatra - filename: Gianluca Vacchi, Sebastian Yatra - LOVE.mp3 - genre: '' - last modified: 12/9/2022 - length: '192' - size: 3.12 MB - title: LOVE - track: 1/1 - year: '2018' -- album: Lo mismo - artist: Maître Gims feat. Álvaro Soler - filename: GIMS, Alvaro Soler, Jugglerz - Lo Mismo.mp3 - genre: francoton - last modified: 12/9/2022 - length: '211' - size: 3.37 MB - title: Lo mismo - track: 1/1 - year: '2018' -- album: Lo mismo - artist: Maître Gims feat. Álvaro Soler - filename: GIMS, Alvaro Soler, Jugglerz - Lo Mismo.mp3 - genre: francoton - last modified: 12/9/2022 - length: '211' - size: 3.37 MB - title: Lo mismo - track: 1/1 - year: '2018' -- album: 30 de febrero - artist: Ha*Ash feat. Abraham Mateo - filename: HaAsh - 30 de Febrero (feat. Abraham Mateo).mp3 - genre: latin - last modified: 12/10/2022 - length: '202' - size: 3.33 MB - title: 30 de febrero - track: 1/12 - year: '2017' -- album: 100 años - artist: Ha*Ash & Prince Royce - filename: HaAsh, Prince Royce - 100 Años.mp3 - genre: latin - last modified: 12/10/2022 - length: '188' - size: 3.30 MB - title: 100 años - track: 1/1 - year: '2017' -- album: Mañana es Too Late - artist: Jesse & Joy and J Balvin - filename: Jesse & Joy, J Balvin - Mañana Es Too Late.mp3 - genre: latin - last modified: 12/11/2022 - length: '196' - size: 3.23 MB - title: Mañana es Too Late - track: 1/1 - year: '2019' -- album: 'Roma: Original Motion Picture Soundtrack' - artist: Juan Gabriel - filename: Juan Gabriel - No Tengo Dinero (Cover Audio).mp3 - genre: Ballad/Danzón/Latin/Pop/Ranchera - last modified: 2/4/2023 - length: '187' - size: 3.10 MB - title: No tengo dinero - track: 3/19 - year: '2018' -- album: Kitipun - artist: Juan Luis Guerra 4.40 - filename: Juan Luis Guerra 4.40 - Kitipun.mp3 - genre: bachata - last modified: 12/11/2022 - length: '219' - size: 3.87 MB - title: Kitipun - track: 1/1 - year: '2019' -- album: '' - artist: JuanesVEVO - filename: Juanes - La Camisa Negra.mp3 - genre: '' - last modified: 9/4/2022 - length: '247' - size: 8.31 MB - title: Juanes - La Camisa Negra - track: '' - year: '2009' -- album: La plata - artist: Juanes ft. Lalo Ebratt - filename: Juanes - La Plata (feat. Lalo Ebratt).mp3 - genre: colombian pop - last modified: 12/10/2022 - length: '194' - size: 3.13 MB - title: La plata - track: 1/1 - year: '2019' -- album: La plata - artist: Juanes ft. Lalo Ebratt - filename: Juanes - La Plata (feat. Lalo Ebratt).mp3 - genre: colombian pop - last modified: 12/10/2022 - length: '199' - size: 3.37 MB - title: La plata - track: 1/1 - year: '2019' -- album: Déjate querer - artist: Lalo Ebratt x Sebastián Yatra x Yera - filename: Lalo Ebratt, Sebastian Yatra, Yera, Trapical Minds - Déjate Querer.mp3 - genre: colombian hip hop - last modified: 12/9/2022 - length: '205' - size: 3.72 MB - title: Déjate querer - track: 1/1 - year: '2019' -- album: VIDA - artist: Luis Fonsi & Daddy Yankee - filename: Luis Fonsi, Daddy Yankee - Despacito.mp3 - genre: latin - last modified: 12/9/2022 - length: '231' - size: 4.04 MB - title: Despacito - track: 9/15 - year: '2019' -- album: '' - artist: Taz Network - filename: Luis Fonsi, Demi Lovato ‒ Echame La Culpa (Lyrics).mp3 - genre: '' - last modified: 12/1/2019 - length: '189' - size: 3.73 MB - title: Luis Fonsi, Demi Lovato ‒ Echame La Culpa (Lyrics) - track: '' - year: '2017' -- album: VIDA - artist: Luis Fonsi & Demi Lovato - filename: Luis Fonsi, Demi Lovato - Échame La Culpa.mp3 - genre: latin - last modified: 12/9/2022 - length: '176' - size: 2.93 MB - title: Échame la culpa - track: 7/15 - year: '2019' -- album: Date la vuelta - artist: Luis Fonsi, Sebastián Yatra & Nicky Jam - filename: Luis Fonsi, Sebastian Yatra, Nicky Jam - Date La Vuelta.mp3 - genre: latin - last modified: 12/10/2022 - length: '222' - size: 3.64 MB - title: Date la vuelta - track: 1/1 - year: '2019' -- album: Toc Toc (Banda Sonora Original de la Película ”Toc Toc”) - artist: Macaco - filename: Macaco - Toc Toc - Banda Sonora Original de la Película ”Toc Toc”.mp3 - genre: latin alternative - last modified: 1/20/2021 - length: '224' - size: 3.62 MB - title: Toc Toc - Banda Sonora Original de la Película ”Toc Toc” - track: '1' - year: '2017-06-16' -- album: '' - artist: Span Glish - filename: MAFFiO - No Tengo Dinero (Official Lyric Video).mp3 - genre: '' - last modified: 5/9/2019 - length: '224' - size: 3.83 MB - title: MAFFiO - No Tengo Dinero (Official Lyric Video) - track: '' - year: '2013' -- album: La boca (remix) - artist: Mau y Ricky, Camilo & Lunay - filename: Mau y Ricky, Camilo, Lunay - La Boca - Remix.mp3 - genre: latin - last modified: 12/11/2022 - length: '192' - size: 3.17 MB - title: La boca (remix) - track: 1/1 - year: '2019' -- album: Sobre El Amor Y Sus Efectos Secundarios - artist: Morat - filename: Morat - Aprender A Quererte.mp3 - genre: colombian pop - last modified: 1/20/2021 - length: '228' - size: 3.93 MB - title: Aprender A Quererte - track: '3' - year: '2016-06-17' -- album: Sobre El Amor Y Sus Efectos Secundarios - artist: Morat - filename: Morat - Aprender A Quererte.mp3 - genre: colombian pop - last modified: 1/21/2021 - length: '228' - size: 4.01 MB - title: Aprender A Quererte - track: '3' - year: '2016-06-17' -- album: Balas perdidas - artist: Morat - filename: Morat - Cuando Nadie Ve.mp3 - genre: colombian pop - last modified: 12/10/2022 - length: '222' - size: 3.53 MB - title: Cuando nadie ve - track: 10/12 - year: '2018' -- album: Balas perdidas - artist: Morat - filename: Morat - Cuando Nadie Ve.mp3 - genre: colombian pop - last modified: 12/10/2022 - length: '222' - size: 3.54 MB - title: Cuando nadie ve - track: 10/12 - year: '2018' -- album: Balas perdidas - artist: Morat - filename: Morat - No Se Va.mp3 - genre: colombian pop - last modified: 12/10/2022 - length: '218' - size: 3.63 MB - title: No se va - track: 5/12 - year: '2018' -- album: Balas perdidas - artist: Morat - filename: Morat - No Se Va.mp3 - genre: colombian pop - last modified: 12/10/2022 - length: '218' - size: 3.63 MB - title: No se va - track: 5/12 - year: '2018' -- album: Presiento - artist: Morat con Aitana - filename: Morat, Aitana - Presiento.mp3 - genre: colombian pop - last modified: 12/9/2022 - length: '176' - size: 2.95 MB - title: Presiento - track: 1/1 - year: '2019' -- album: Fénix - artist: Nicky Jam feat. Wisin - filename: Nicky Jam - Si Tú La Ves (feat. Wisin).mp3 - genre: latin - last modified: 12/11/2022 - length: '224' - size: 3.97 MB - title: Si Tú La Ves - track: 7/26 - year: '2017' -- album: Balas perdidas - artist: Morat - filename: No Se Va.mp3 - genre: '' - last modified: 2/4/2023 - length: '217' - size: 3.61 MB - title: No se va - track: 5/12 - year: '2018' -- album: La marca - artist: Grupo Manía feat. Yomo, Jowell y Randy, Elvis Crespo & Rubiel - filename: Piso 21, Micro TDH - Te Vi.mp3 - genre: colombian pop - last modified: 12/10/2022 - length: '234' - size: 4.18 MB - title: Te vi - track: 10/10 - year: '2016' -- album: Presiento - artist: Morat con Aitana - filename: Presiento.mp3 - genre: '' - last modified: 12/9/2022 - length: '174' - size: 2.91 MB - title: Presiento - track: 1/1 - year: '2019' -- album: Deja vu - artist: Prince Royce & Shakira - filename: Prince Royce, Shakira - Deja Vu - Lyrics English and Spanish - Deja Vu - - Translation & Meaning.mp3 - genre: Pop - last modified: 2/4/2023 - length: '198' - size: 2.63 MB - title: Deja vu - track: 1/1 - year: '2017' -- album: Ahora - artist: Reik & Manuel Turizo - filename: Reik, Manuel Turizo - Aleluya.mp3 - genre: latin - last modified: 12/10/2022 - length: '161' - size: 2.75 MB - title: Aleluya - track: 3/9 - year: '2019' -- album: Ahora - artist: Reik & Manuel Turizo - filename: Reik, Manuel Turizo - Aleluya.mp3 - genre: latin - last modified: 12/10/2022 - length: '161' - size: 2.75 MB - title: Aleluya - track: 3/9 - year: '2019' -- album: '' - artist: sunday - filename: Reik, Morat - La Bella y la Bestia (Letra_Lyrics).mp3 - genre: '' - last modified: 7/4/2020 - length: '180' - size: 2.78 MB - title: Reik, Morat - La Bella y la Bestia (Letra/Lyrics) - track: '' - year: '2020' -- album: MANTRA - artist: Sebastián Yatra - filename: Sebastian Yatra - No Hay Nadie Más.mp3 - genre: colombian pop - last modified: 12/10/2022 - length: '198' - size: 3.39 MB - title: No hay nadie más - track: 14/16 - year: '2018' -- album: MANTRA - artist: Sebastián Yatra - filename: Sebastian Yatra - No Hay Nadie Más.mp3 - genre: colombian pop - last modified: 12/10/2022 - length: '198' - size: 3.39 MB - title: No hay nadie más - track: 14/16 - year: '2018' -- album: Runaway - artist: Sebastián Yatra, Daddy Yankee, Jonas Brothers & Natti Natasha - filename: Sebastian Yatra, Daddy Yankee, Natti Natasha, Jonas Brothers - Runaway.mp3 - genre: colombian pop - last modified: 12/11/2022 - length: '203' - size: 3.65 MB - title: Runaway - track: 1/1 - year: '2019' -- album: Un año - artist: Sebastián Yatra & Reik - filename: Sebastian Yatra, Reik - Un Año.mp3 - genre: colombian pop - last modified: 12/10/2022 - length: '167' - size: 2.84 MB - title: Un año - track: 1/1 - year: '2019' -- album: Un año - artist: Sebastián Yatra & Reik - filename: Sebastian Yatra, Reik - Un Año.mp3 - genre: colombian pop - last modified: 12/10/2022 - length: '167' - size: 2.84 MB - title: Un año - track: 1/1 - year: '2019' -- album: El Dorado - artist: Shakira/Maluma - filename: Shakira - Chantaje (feat. Maluma).mp3 - genre: colombian pop - last modified: 1/21/2021 - length: '201' - size: 3.04 MB - title: Chantaje (feat. Maluma) - track: '3' - year: '2017-05-26' -- album: Oral Fixation, Vol. 2 - artist: Shakira feat. Wyclef Jean - filename: Shakira - Hips Don't Lie (feat. Wyclef Jean).mp3 - genre: colombian pop - last modified: 12/11/2022 - length: '221' - size: 3.43 MB - title: Hips Don’t Lie - track: 3/13 - year: '2005' -- album: 'The 2014 FIFA World Cup Official Album: One Love, One Rhythm' - artist: Shakira/Carlinhos Brown - filename: Shakira - La La La (Brazil 2014) (feat. Carlinhos Brown).mp3 - genre: colombian pop - last modified: 1/20/2021 - length: '200' - size: 3.37 MB - title: La La La (Brazil 2014) (feat. Carlinhos Brown) - track: '8' - year: '2014-05-09' -- album: Sale el sol - artist: Shakira - filename: Shakira - Waka Waka (Esto Es Africa) - K-Mix.mp3 - genre: colombian pop - last modified: 12/9/2022 - length: '187' - size: 3.35 MB - title: Waka waka (Esto es africa) (K‐mix) - track: 12/16 - year: '2010' -- album: Waka Waka (This Time for Africa) [The Official 2010 FIFA World Cup (TM) Song] - (feat. Freshlyground) - artist: Shakira/Freshlyground - filename: Shakira - Waka Waka (This Time for Africa) [The Official 2010 FIFA World - Cup (TM) Song] (feat. Freshlyground).mp3 - genre: colombian pop - last modified: 1/21/2021 - length: '205' - size: 3.47 MB - title: Waka Waka (This Time for Africa) [The Official 2010 FIFA World Cup (TM) Song] - (feat. Freshlyground) - track: '1' - year: '2010-05-07' -- album: '' - artist: NickyJamTV - filename: Si Tú La Ves - Nicky Jam Ft Wisin (Video Oficial).mp3 - genre: '' - last modified: 9/28/2019 - length: '235' - size: 4.96 MB - title: Si Tú La Ves - Nicky Jam Ft Wisin (Video Oficial) - track: '' - year: '2017' -- album: '' - artist: SilvestreDangondVEVO - filename: Silvestre Dangond, Nicky Jam - Cásate Conmigo (Official Video).mp3 - genre: '' - last modified: 1/14/2020 - length: '257' - size: 3.91 MB - title: Silvestre Dangond, Nicky Jam - Cásate Conmigo (Official Video) - track: '' - year: '2017' -- album: Cásate conmigo - artist: Silvestre Dangond & Nicky Jam - filename: Silvestre Dangond, Nicky Jam - Cásate Conmigo.mp3 - genre: colombian pop - last modified: 12/10/2022 - length: '212' - size: 3.88 MB - title: Cásate conmigo - track: 1/1 - year: '2017' -- album: Cásate conmigo - artist: Silvestre Dangond & Nicky Jam - filename: Silvestre Dangond, Nicky Jam - Cásate Conmigo.mp3 - genre: colombian pop - last modified: 12/10/2022 - length: '212' - size: 3.88 MB - title: Cásate conmigo - track: 1/1 - year: '2017' -- album: Ventino - artist: Ventino - filename: Ventino - Me Equivoqué.mp3 - genre: colombian pop - last modified: 1/20/2021 - length: '224' - size: 3.83 MB - title: Me Equivoqué - track: '1' - year: '2018-08-17' -- album: Ventino - artist: Ventino - filename: Ventino - Me Equivoqué.mp3 - genre: colombian pop - last modified: 1/21/2021 - length: '226' - size: 3.78 MB - title: Me Equivoqué - track: '1' - year: '2018-08-17' -- album: null - artist: null - filename: build on 4/4/2023 with Mp3tag v3.20 - the universal Tag editor - http://www.mp3tag.de/en/ - genre: null - last modified: null - length: null - size: null - title: null - track: null - year: null diff --git a/test/csv_output/thingsonphone2.yaml b/test/csv_output/thingsonphone2.yaml deleted file mode 100644 index 9d1f3b2..0000000 --- a/test/csv_output/thingsonphone2.yaml +++ /dev/null @@ -1,1733 +0,0 @@ -name: thingsonphone2 -tracks: -- album: Broadcast - artist: Cutting Crew - filename: '[I Just] Died In Your Arms.mp3' - genre: Pop - last modified: 12/15/2022 - length: '280' - size: 4.33 MB - title: (I Just) Died in Your Arms - track: 6/10 - year: '2016' -- album: '' - artist: Yogscast - filename: ♪ Diggy Diggy Hole.mp3 - genre: '' - last modified: 6/17/2022 - length: '248' - size: 4.04 MB - title: Diggy Diggy Hole - track: '' - year: '' -- album: 'Roots of Rock: New Wave' - artist: Tears for Fears - filename: 01 Everybody Wants to Rule the World.wma - genre: Alternative - last modified: 5/24/2011 - length: '250' - size: 3.84 MB - title: Everybody Wants to Rule the World - track: '1' - year: '1998' -- album: Come On Over - artist: Shania Twain - filename: 01 Man! I Feel Like a Woman!.mp3 - genre: Country - last modified: 12/11/2022 - length: '234' - size: 3.66 MB - title: Man! I Feel Like a Woman! - track: 1/16 - year: '1997' -- album: Reel Life - artist: Boy Meets Girl - filename: 02 Waiting for a Star to Fall.m4a - genre: Pop - last modified: 12/10/2022 - length: '271' - size: 10.02 MB - title: Waiting for a Star to Fall - track: '2' - year: '1988' -- album: Special - artist: Lizzo - filename: 2 Be Loved (Am I Ready).mp3 - genre: Pop/R&B - last modified: 2/4/2023 - length: '187' - size: 2.94 MB - title: 2 Be Loved (Am I Ready) - track: 4/12 - year: '2022' -- album: The Platinum Collection - artist: Queen - filename: 16 The Show Must Go On.wma - genre: Rock - last modified: 12/11/2022 - length: '264' - size: 4.14 MB - title: The Show Must Go On - track: '16' - year: '2000-11-13' -- album: 10000 Gecs - artist: 100 gecs - filename: 100 gecs - Dumbest Girl Alive.mp3 - genre: Hyperpop - last modified: 3/27/2023 - length: '137' - size: 4.44 MB - title: Dumbest Girl Alive - track: 1/10 - year: '2023' -- album: 10000 Gecs - artist: 100 gecs - filename: 100 gecs - Frog On The Floor.mp3 - genre: Hyperpop - last modified: 3/27/2023 - length: '162' - size: 4.81 MB - title: Frog on the Floor - track: 4/10 - year: '2023' -- album: '21' - artist: Adele - filename: Adele - Rolling in the Deep.mp3 - genre: british soul - last modified: 12/10/2022 - length: '228' - size: 7.10 MB - title: Rolling in the Deep - track: 1/15 - year: '2011' -- album: '' - artist: AldreyMusica - filename: 'Aldrey - La Lista (Lyric Video Oficial) #LaLista.mp3' - genre: '' - last modified: 6/3/2017 - length: '259' - size: 4.05 MB - title: 'Aldrey - La Lista (Lyric Video Oficial) #LaLista' - track: '' - year: '2013' -- album: thank u, next - artist: Ariana Grande - filename: Ariana Grande - 7 rings.mp3 - genre: dance pop - last modified: 12/10/2022 - length: '179' - size: 5.55 MB - title: 7 rings - track: 10/12 - year: '2019' -- album: Dangerous Woman - artist: Ariana Grande - filename: Ariana Grande - Into You.mp3 - genre: dance pop - last modified: 12/11/2022 - length: '244' - size: 7.74 MB - title: Into You - track: 4/16 - year: '2016' -- album: My Everything - artist: Ariana Grande - filename: Ariana Grande - One Last Time.mp3 - genre: dance pop - last modified: 12/10/2022 - length: '197' - size: 6.04 MB - title: One Last Time - track: 3/18 - year: '2014' -- album: My Everything (Deluxe) - artist: Ariana Grande/Zedd - filename: Ariana Grande, Zedd - Break Free.mp3 - genre: dance pop - last modified: 12/31/2021 - length: '214' - size: 5.98 MB - title: Break Free - track: '5' - year: '2014-08-25' -- album: My Everything (Deluxe) - artist: Ariana Grande/Zedd - filename: Ariana Grande, Zedd - Break Free.mp3 - genre: dance pop - last modified: 12/31/2021 - length: '214' - size: 5.98 MB - title: Break Free - track: '5' - year: '2014-08-25' -- album: Moana - artist: Auliʻi Cravalho - filename: Auli'i Cravalho - How Far I'll Go (from Moana_Official Video).mp3 - genre: Musical - last modified: 2/4/2023 - length: '156' - size: 2.13 MB - title: How Far I’ll Go - track: 4/40 - year: '2016' -- album: The Nights - artist: Avicii - filename: Avicii - The Nights.mp3 - genre: dance pop - last modified: 12/10/2022 - length: '177' - size: 5.68 MB - title: The Nights - track: 1/1 - year: '2014' -- album: Backstreet’s Back - artist: Backstreet Boys - filename: Backstreet Boys - As Long as You Love Me.mp3 - genre: boy band - last modified: 12/10/2022 - length: '214' - size: 6.94 MB - title: As Long as You Love Me - track: 2/14 - year: '1997' -- album: Millennium - artist: Backstreet Boys - filename: Backstreet Boys - I Want It That Way.mp3 - genre: boy band - last modified: 1/20/2021 - length: '213' - size: 3.45 MB - title: I Want It That Way - track: '2' - year: '1999-05-18' -- album: Backstreet Boys - artist: Backstreet Boys - filename: Backstreet Boys - Quit Playing Games (With My Heart).mp3 - genre: boy band - last modified: 12/10/2022 - length: '234' - size: 7.06 MB - title: Quit Playing Games (With My Heart) - track: 5/13 - year: '1996' -- album: Millennium - artist: Backstreet Boys - filename: Backstreet Boys - Show Me the Meaning of Being Lonely.mp3 - genre: boy band - last modified: 12/10/2022 - length: '237' - size: 3.73 MB - title: Show Me the Meaning of Being Lonely - track: 3/12 - year: '1999' -- album: Balas perdidas - artist: Morat & Juanes - filename: Besos En Guerra.mp3 - genre: Latin Pop - last modified: 2/4/2023 - length: '232' - size: 3.76 MB - title: Besos en guerra - track: 3/12 - year: '2018' -- album: Midnight Memories - artist: One Direction - filename: Best Song Ever.mp3 - genre: Pop - last modified: 2/4/2023 - length: '200' - size: 3.14 MB - title: Best Song Ever - track: 1/14 - year: '2013' -- album: WHEN WE ALL FALL ASLEEP, WHERE DO WE GO? - artist: Billie Eilish - filename: Billie Eilish - bad guy.mp3 - genre: art pop - last modified: 12/10/2022 - length: '194' - size: 6.37 MB - title: bad guy - track: 2/14 - year: '2019' -- album: 'A Matter of Trust: The Bridge to Russia' - artist: Billy Joel - filename: Billy Joel - Uptown Girl.mp3 - genre: album rock - last modified: 12/10/2022 - length: '200' - size: 2.98 MB - title: Uptown Girl (live) - track: 21/27 - year: '2014' -- album: Definitive Collection - artist: Bonnie Tyler - filename: Bonnie Tyler - Total Eclipse of the Heart.mp3 - genre: europop - last modified: 12/10/2022 - length: '272' - size: 5.05 MB - title: Total Eclipse of the Heart - track: 1/18 - year: '1995' -- album: 24K Magic - artist: Bruno Mars - filename: Bruno Mars - 24K Magic.mp3 - genre: Pop - last modified: 3/8/2023 - length: '226' - size: 7.12 MB - title: 24K Magic - track: 1/9 - year: '2016' -- album: Unorthodox Jukebox - artist: Bruno Mars - filename: Bruno Mars - Locked out of Heaven.mp3 - genre: dance pop - last modified: 12/10/2022 - length: '234' - size: 7.52 MB - title: Locked Out of Heaven - track: 2/10 - year: '2012' -- album: Kiss - artist: Carly Rae Jepsen - filename: Carly Rae Jepsen - Call Me Maybe.mp3 - genre: canadian pop - last modified: 12/10/2022 - length: '194' - size: 6.12 MB - title: Call Me Maybe - track: 3/13 - year: '2012' -- album: Kiss - artist: Carly Rae Jepsen - filename: Carly Rae Jepsen - Guitar String ⧸ Wedding Ring.mp3 - genre: Pop - last modified: 3/27/2023 - length: '207' - size: 6.31 MB - title: Guitar String / Wedding Ring - track: 11/16 - year: '2012' -- album: Emotion - artist: Carly Rae Jepsen - filename: Carly Rae Jepsen-Emotion.mp3 - genre: Dance-Pop - last modified: 2/4/2023 - length: '197' - size: 6.27 MB - title: Emotion - track: 2/17 - year: '2020' -- album: Dedicated Side B - artist: Carly Rae Jepsen - filename: Carly Rae Jepsen-Felt This Way.mp3 - genre: Indie Pop - last modified: 2/4/2023 - length: '217' - size: 6.84 MB - title: Felt This Way - track: 3/12 - year: '2020' -- album: Emotion - artist: Carly Rae Jepsen - filename: Carly Rae Jepsen-I Didn’t Just Come Here To Dance.mp3 - genre: Dance-Pop - last modified: 2/4/2023 - length: '220' - size: 6.83 MB - title: I Didn’t Just Come Here to Dance - track: 14/17 - year: '2020' -- album: Emotion - artist: Carly Rae Jepsen - filename: Carly Rae Jepsen-Let’s Get Lost.mp3 - genre: Dance-Pop - last modified: 2/4/2023 - length: '194' - size: 6.16 MB - title: Let’s Get Lost - track: 9/17 - year: '2020' -- album: Dedicated Side B - artist: Carly Rae Jepsen - filename: Carly Rae Jepsen-Solo.mp3 - genre: Indie Pop - last modified: 2/4/2023 - length: '196' - size: 6.15 MB - title: Solo - track: 11/12 - year: '2020' -- album: Dedicated Side B - artist: Carly Rae Jepsen - filename: Carly Rae Jepsen-This Love Isn't Crazy.mp3 - genre: Indie Pop - last modified: 2/4/2023 - length: '233' - size: 7.43 MB - title: This Love Isn’t Crazy - track: 1/12 - year: '2020' -- album: Hardstyle v1 - artist: '' - filename: Cascada - Everytime We Touch (Fallen Superhero Hardstyle Remix).mp3 - genre: Hardstyle - last modified: 6/20/2022 - length: '219' - size: 3.41 MB - title: '' - track: '' - year: '' -- album: Believe - artist: Cher - filename: Cher - Believe.mp3 - genre: dance pop - last modified: 12/10/2022 - length: '239' - size: 7.65 MB - title: Believe - track: 1/10 - year: '1998' -- album: Heart of Stone - artist: Cher - filename: Cher - If I Could Turn Back Time.mp3 - genre: dance pop - last modified: 12/10/2022 - length: '241' - size: 3.70 MB - title: If I Could Turn Back Time - track: 1/12 - year: '1989' -- album: Because the Internet - artist: Childish Gambino, Donald Glover - filename: Childish Gambino, Donald Glover-3005.mp3 - genre: '' - last modified: 9/1/2022 - length: '234' - size: 7.92 MB - title: '3005' - track: '' - year: '2022' -- album: Hardstyle v1 - artist: '' - filename: Clean Bandit ft. Demi Lovato - Solo (Twisted Melodiez Bootleg) [Free Release].mp3 - genre: Hardstyle - last modified: 6/20/2022 - length: '181' - size: 2.87 MB - title: '' - track: '' - year: '' -- album: Stereotype - artist: Cole Swindell - filename: Cole Swindell - She Had Me At Heads Carolina.mp3 - genre: Country - last modified: 3/16/2023 - length: '206' - size: 6.54 MB - title: She Had Me at Heads Carolina - track: 4/13 - year: '2022' -- album: The Addams Family - artist: Andrew Lippa - filename: Crazier Than You.mp3 - genre: Musical - last modified: 2/4/2023 - length: '171' - size: 5.41 MB - title: Crazier Than You - track: 15/21 - year: '2010' -- album: Cuando nadie ve - artist: Morat - filename: Cuando Nadie Ve.mp3 - genre: Latin Pop - last modified: 2/4/2023 - length: '219' - size: 3.55 MB - title: Cuando nadie ve - track: 1/1 - year: '2018' -- album: Cut to the Feeling - artist: Carly Rae Jepsen - filename: Cut To The Feeling.mp3 - genre: Pop - last modified: 12/15/2022 - length: '208' - size: 3.35 MB - title: Cut to the Feeling - track: 1/2 - year: '2017' -- album: Hardstyle v1 - artist: '' - filename: Da Tweekaz - Frozen (Disney Tool) (Official Preview).mp3 - genre: Hardstyle - last modified: 6/20/2022 - length: '228' - size: 3.44 MB - title: '' - track: '' - year: '' -- album: Future Nostalgia - artist: Dua Lipa - filename: Dua Lipa - Cool.mp3 - genre: Dance-Pop - last modified: 3/27/2023 - length: '210' - size: 6.69 MB - title: Cool - track: 3/13 - year: '2020' -- album: Future Nostalgia - artist: Dua Lipa - filename: Dua Lipa - Don't Start Now.mp3 - genre: Dance-Pop - last modified: 3/27/2023 - length: '183' - size: 5.90 MB - title: Don’t Start Now - track: 2/13 - year: '2020' -- album: Future Nostalgia - artist: Dua Lipa - filename: Dua Lipa - Hallucinate.mp3 - genre: Dance-Pop - last modified: 3/27/2023 - length: '209' - size: 6.34 MB - title: Hallucinate - track: 7/13 - year: '2020' -- album: Dua Lipa (deluxe edition) - artist: Dua Lipa - filename: Dua Lipa - IDGAF.mp3 - genre: dance pop - last modified: 12/10/2022 - length: '218' - size: 7.09 MB - title: IDGAF - track: 5/17 - year: '2017' -- album: 40 Tubes 2022 - artist: Dua Lipa - filename: Dua Lipa - Love Again (Official Music Video).mp3 - genre: Dance-Pop - last modified: 2/4/2023 - length: '262' - size: 4.25 MB - title: Love Again - track: 5/20 - year: '2021' -- album: Future Nostalgia - artist: Dua Lipa feat. DaBaby - filename: Dua Lipa, DaBaby - Levitating (feat. DaBaby).mp3 - genre: Dance-Pop - last modified: 3/27/2023 - length: '203' - size: 6.49 MB - title: Levitating - track: 12/13 - year: '2020' -- album: ÷ (Divide) - artist: Ed Sheeran - filename: Ed Sheeran - Castle on the Hill.mp3 - genre: pop - last modified: 12/10/2022 - length: '261' - size: 8.63 MB - title: Castle on the Hill - track: 2/12 - year: '2017' -- album: 'Rocket Man: The Definitive Hits' - artist: Elton John - filename: Elton John - I'm Still Standing.mp3 - genre: glam rock - last modified: 12/10/2022 - length: '185' - size: 2.80 MB - title: I'm Still Standing - track: 17/18 - year: '2007' -- album: The Innocents - artist: Erasure - filename: Erasure - A Little Respect - 2009 Remastered Version.mp3 - genre: dance pop - last modified: 1/20/2021 - length: '213' - size: 3.48 MB - title: A Little Respect - 2009 Remastered Version - track: '1' - year: '1988-04-18' -- album: Mr. Misunderstood - artist: Eric Church - filename: Eric Church - Round Here Buzz.mp3 - genre: contemporary country - last modified: 12/10/2022 - length: '216' - size: 3.32 MB - title: Round Here Buzz - track: 6/10 - year: '2016' -- album: 'Het beste uit de Qmusic Millennium Top 1000: 2000–2009' - artist: Estelle feat. Kanye West - filename: Estelle - American Boy, Lyrics.mp3 - genre: '' - last modified: 12/9/2022 - length: '278' - size: 4.30 MB - title: American Boy - track: 3/20 - year: '2009' -- album: 'Extreme II: Pornograffitti (A Funked Up Fairy Tale)' - artist: Extreme - filename: Extreme - More Than Words.mp3 - genre: album rock - last modified: 12/10/2022 - length: '334' - size: 8.82 MB - title: More Than Words - track: 5/13 - year: '1990' -- album: Breathe - artist: Faith Hill - filename: Faith Hill - Breathe.mp3 - genre: Country - last modified: 3/16/2023 - length: '250' - size: 8.07 MB - title: Breathe - track: 4/14 - year: '1999' -- album: Careless Whisper - artist: George Michael - filename: George Michael-Careless Whisper.mp3 - genre: Pop - last modified: 3/16/2023 - length: '300' - size: 10.23 MB - title: Careless Whisper - track: 1/2 - year: '1984' -- album: reputation - artist: Taylor Swift - filename: Getaway Car.mp3 - genre: Pop - last modified: 12/15/2022 - length: '234' - size: 3.72 MB - title: Getaway Car - track: 9/15 - year: '2018' -- album: Bravo Hits 118 - artist: Joji - filename: Glimpse of Us.mp3 - genre: Pop - last modified: 2/4/2023 - length: '233' - size: 3.61 MB - title: Glimpse of Us - track: 7/24 - year: '2022' -- album: Indian Summer - artist: Go West - filename: Go West - The King of Wishful Thinking.mp3 - genre: mellow gold - last modified: 12/10/2022 - length: '242' - size: 7.47 MB - title: The King of Wishful Thinking - track: 6/13 - year: '1992' -- album: 'Promo Only: Modern Rock Radio, January 2012' - artist: Gotye - filename: Gotye - Somebody That I Used To Know (Lyrics).mp3 - genre: '' - last modified: 6/21/2021 - length: '306' - size: 4.68 MB - title: Somebody That I Used to Know - track: '' - year: '' -- album: Greatest Hits - artist: Jo Dee Messina - filename: Heads Carolina, Tails California.mp3 - genre: Country - last modified: 2/4/2023 - length: '210' - size: 3.44 MB - title: Heads Carolina, Tails California - track: 3/15 - year: '2003' -- album: Greatest Hits - artist: Huey Lewis & the News - filename: Huey Lewis & The News - The Power Of Love.mp3 - genre: album rock - last modified: 12/10/2022 - length: '237' - size: 3.83 MB - title: The Power of Love - track: 3/21 - year: '2006' -- album: Love Tracks - artist: Gloria Gaynor - filename: I Will Survive.mp3 - genre: Disco - last modified: 12/15/2022 - length: '296' - size: 5.08 MB - title: I Will Survive - track: 5/13 - year: '2013' -- album: Frozen II - artist: Idina Menzel & AURORA - filename: Idina Menzel, AURORA - Into the Unknown (From 'Frozen 2').mp3 - genre: Pop - last modified: 2/4/2023 - length: '209' - size: 2.93 MB - title: Into the Unknown - track: 3/11 - year: '2019' -- album: All or Nothing - artist: Jay Sean feat. Lil Wayne - filename: Jay Sean, Lil Wayne - Down.mp3 - genre: dance pop - last modified: 12/11/2022 - length: '214' - size: 3.44 MB - title: Down - track: 3/14 - year: '2009' -- album: Mañana es Too Late - artist: Jesse & Joy and J Balvin - filename: Jesse & Joy, J Balvin - Mañana Es Too Late.mp3 - genre: latin - last modified: 12/11/2022 - length: '196' - size: 3.23 MB - title: Mañana es Too Late - track: 1/1 - year: '2019' -- album: Canon In D (Jatimatic Remix) - artist: Stacey Lee May - filename: Johann Pachelbel - Canon In D (Jatimatic Hardstyle Bootleg) _ HQ Videoclip.mp3 - genre: Hardstyle - last modified: 12/9/2022 - length: '242' - size: 3.75 MB - title: Canon In D - Jatimatic Remix - track: 1/1 - year: '2021' -- album: Blue - artist: Jonas Blue feat. Jack & Jack - filename: Jonas Blue, Jack & Jack - Rise.mp3 - genre: Electronic - last modified: 3/27/2023 - length: '194' - size: 6.32 MB - title: Rise - track: 11/15 - year: '2018' -- album: The Essential Journey - artist: Journey - filename: Journey - Don't Stop Believin'.mp3 - genre: album rock - last modified: 1/20/2021 - length: '250' - size: 4.11 MB - title: Don't Stop Believin' - track: '2' - year: '2001-09-19' -- album: 'Roma: Original Motion Picture Soundtrack' - artist: Juan Gabriel - filename: Juan Gabriel - No Tengo Dinero (Cover Audio).mp3 - genre: Ballad/Danzón/Latin/Pop/Ranchera - last modified: 2/4/2023 - length: '187' - size: 3.10 MB - title: No tengo dinero - track: 3/19 - year: '2018' -- album: '' - artist: JuanesVEVO - filename: Juanes - La Camisa Negra.mp3 - genre: '' - last modified: 9/4/2022 - length: '247' - size: 8.31 MB - title: Juanes - La Camisa Negra - track: '' - year: '2009' -- album: RTL Hits 2011 - artist: Bruno Mars - filename: Just The Way You Are- Bruno Mars (Lyrics on Screen).mp3 - genre: '' - last modified: 12/9/2022 - length: '213' - size: 3.27 MB - title: Just the Way You Are - track: 3/20 - year: '2011' -- album: Nachtschicht, Volume 42 - artist: Justin Timberlake feat. Timbaland - filename: Justin Timberlake - Sexy Back [Lyrics].mp3 - genre: '' - last modified: 12/9/2022 - length: '239' - size: 3.74 MB - title: Sexyback - track: 7/20 - year: '2011' -- album: 808s & Heartbreak - artist: Kanye West - filename: Kanye West - Heartless.mp3 - genre: chicago rap - last modified: 2/5/2023 - length: '213' - size: 3.54 MB - title: Heartless - track: 3/12 - year: '2008' -- album: Teenage Dream - artist: Katy Perry - filename: Katy Perry - Firework.mp3 - genre: dance pop - last modified: 12/11/2022 - length: '228' - size: 7.19 MB - title: Firework - track: 4/14 - year: '2010' -- album: Teenage Dream - artist: Katy Perry - filename: Katy Perry - Teenage Dream.mp3 - genre: dance pop - last modified: 12/11/2022 - length: '230' - size: 3.74 MB - title: Teenage Dream - track: 1/14 - year: '2010' -- album: Teenage Dream - artist: Katy Perry feat. Snoop Dogg - filename: Katy Perry, Snoop Dogg - California Gurls.mp3 - genre: dance pop - last modified: 12/11/2022 - length: '237' - size: 3.70 MB - title: California Gurls - track: 3/14 - year: '2010' -- album: Animal - artist: Ke$ha - filename: Kesha - TiK ToK.mp3 - genre: dance pop - last modified: 12/11/2022 - length: '202' - size: 3.13 MB - title: TiK ToK - track: 2/18 - year: '2010' -- album: Animal - artist: Ke$ha - filename: Kesha - Your Love Is My Drug.mp3 - genre: dance pop - last modified: 12/11/2022 - length: '190' - size: 3.01 MB - title: Your Love Is My Drug - track: 1/18 - year: '2010' -- album: 'KISSWORLD: The Best of KISS' - artist: KISS - filename: Kiss - I Was Made For Lovin' You.mp3 - genre: Rock - last modified: 2/4/2023 - length: '238' - size: 3.51 MB - title: I Was Made for Lovin’ You - track: 3/20 - year: '2019' -- album: The Fame Monster (deluxe) - artist: Lady Gaga - filename: Lady Gaga - Poker Face.mp3 - genre: dance pop - last modified: 12/11/2022 - length: '239' - size: 3.89 MB - title: Poker Face - track: 12/22 - year: '2009' -- album: Branigan - artist: Laura Branigan - filename: Laura Branigan - Gloria.mp3 - genre: dance rock - last modified: 12/11/2022 - length: '292' - size: 4.63 MB - title: Gloria - track: 2/9 - year: '1982' -- album: An Evening With Silk Sonic - artist: Silk Sonic - filename: Leave The Door Open.mp3 - genre: Contemporary R&B/Soul - last modified: 2/4/2023 - length: '242' - size: 3.78 MB - title: Leave the Door Open - track: 2/9 - year: '2022' -- album: MONTERO - artist: Lil Nas X & Jack Harlow - filename: Lil Nas X, Jack Harlow - INDUSTRY BABY.mp3 - genre: Pop - last modified: 3/16/2023 - length: '212' - size: 7.01 MB - title: INDUSTRY BABY - track: 3/15 - year: '2021' -- album: Hybrid Theory - artist: Linkin Park - filename: Linkin Park-In the End.mp3 - genre: Nu Metal - last modified: 3/1/2023 - length: '217' - size: 6.88 MB - title: In the End - track: 8/12 - year: '2013' -- album: Dancing On The Ceiling - artist: Lionel Richie - filename: Lionel Richie - Dancing On The Ceiling.mp3 - genre: adult standards - last modified: 1/20/2021 - length: '276' - size: 4.59 MB - title: Dancing On The Ceiling - track: '1' - year: '1986' -- album: Now That's What I Call Music! 91 - artist: Little Mix - filename: Little Mix - Black Magic.mp3 - genre: dance pop - last modified: 12/31/2021 - length: '212' - size: 6.87 MB - title: Black Magic - track: '5' - year: '2015-07-24' -- album: Bravo Hits 118 - artist: Lizzo - filename: Lizzo - About Damn Time (Lyrics).mp3 - genre: Pop - last modified: 2/4/2023 - length: '191' - size: 3.13 MB - title: About Damn Time - track: 18/24 - year: '2022' -- album: 16 Biggest Hits - artist: Lonestar - filename: Lonestar - Amazed.mp3 - genre: contemporary country - last modified: 12/11/2022 - length: '241' - size: 7.87 MB - title: Amazed - track: 7/16 - year: '2006' -- album: '' - artist: Taz Network - filename: Luis Fonsi, Demi Lovato ‒ Echame La Culpa (Lyrics).mp3 - genre: '' - last modified: 12/1/2019 - length: '189' - size: 3.73 MB - title: Luis Fonsi, Demi Lovato ‒ Echame La Culpa (Lyrics) - track: '' - year: '2017' -- album: Growin’ Up - artist: Luke Combs - filename: Luke Combs - The Kind of Love We Make.mp3 - genre: '' - last modified: 3/16/2023 - length: '224' - size: 7.11 MB - title: The Kind of Love We Make - track: 3/12 - year: '2022' -- album: Audacious Remixes - artist: Luke Bryan, NotMyJug - filename: lukebryan_playitagain_notmyjugremix.mp3 - genre: '' - last modified: 11/27/2022 - length: '197' - size: 4.51 MB - title: Play It Again (NotMyJug Remix) - track: '' - year: '2018' -- album: Like a Prayer - artist: Madonna - filename: Madonna - Like a Prayer.mp3 - genre: dance pop - last modified: 12/11/2022 - length: '342' - size: 5.84 MB - title: Like a Prayer - track: 1/11 - year: '1989' -- album: Don't Kill the Magic - artist: MAGIC! - filename: MAGIC! - Rude.mp3 - genre: reggae fusion - last modified: 12/9/2022 - length: '225' - size: 7.13 MB - title: Rude - track: 1/11 - year: '2014' -- album: Ever After - artist: Marianas Trench - filename: Marianas Trench - Desperate Measures.mp3 - genre: Pop/Pop Rock/Power Pop/Rock - last modified: 2/4/2023 - length: '257' - size: 4.03 MB - title: Desperate Measures - track: 5/12 - year: '2014' -- album: Ever After - artist: Marianas Trench - filename: Marianas Trench - Haven't Had Enough.mp3 - genre: Pop/Pop Rock/Power Pop/Rock - last modified: 2/4/2023 - length: '246' - size: 3.57 MB - title: Haven't Had Enough - track: 2/12 - year: '2014' -- album: Now That’s What I Call Music! 51 - artist: Rixton - filename: Me And My Broken Heart.mp3 - genre: Pop - last modified: 2/4/2023 - length: '194' - size: 3.17 MB - title: Me and My Broken Heart - track: 13/21 - year: '2014' -- album: 'Bat Out of Hell II: Back Into Hell' - artist: Meat Loaf - filename: Meat Loaf - I'd Do Anything For Love (But I Won't Do That) - Single Edit.mp3 - genre: album rock - last modified: 12/9/2022 - length: '317' - size: 10.29 MB - title: I’d Do Anything for Love (But I Won’t Do That) (single edit) - track: 2/11 - year: '2022' -- album: One Thing at a Time - artist: Morgan Wallen - filename: Morgan Wallen - Last Night.mp3 - genre: Country - last modified: 3/27/2023 - length: '164' - size: 5.41 MB - title: Last Night - track: 2/18 - year: '2023' -- album: The Black Parade - artist: My Chemical Romance - filename: My Chemical Romance - Welcome to the Black Parade.mp3 - genre: emo - last modified: 12/11/2022 - length: '313' - size: 5.74 MB - title: Welcome to the Black Parade - track: 5/14 - year: '2006' -- album: The Best 80s Modern Rock Album... Ever! - artist: Naked Eyes - filename: Naked Eyes - Always Something There To Remind Me (Official Video).mp3 - genre: Rock - last modified: 2/4/2023 - length: '201' - size: 3.12 MB - title: Always Something There to Remind Me - track: 10/16 - year: '2002' -- album: Unwritten - artist: Natasha Bedingfield - filename: Natasha Bedingfield - Unwritten.mp3 - genre: dance pop - last modified: 12/11/2022 - length: '262' - size: 4.58 MB - title: Unwritten - track: 4/11 - year: '2004' -- album: Nightcore - artist: NightCore - filename: Nightcore_018_Nightcore - Everytime We Touch.mp3 - genre: Nightcore - last modified: 12/24/2012 - length: '186' - size: 2.89 MB - title: Nightcore - Everytime We Touch - track: 018 - year: 2012-12-24T18 -- album: Nightcore - artist: NightCore - filename: Nightcore_020_Nightcore - Bad boy.mp3 - genre: Nightcore - last modified: 12/25/2012 - length: '156' - size: 2.49 MB - title: Nightcore - Bad boy - track: '020' - year: 2012-12-25T13 -- album: Nightcore - artist: Sanuksanan Nightcore P.1 - filename: Nightcore_204_Nightcore - Gotta Be Somebody.mp3 - genre: Nightcore - last modified: 12/10/2014 - length: '222' - size: 3.46 MB - title: Nightcore - Gotta Be Somebody - track: '204' - year: 2014-12-10T08 -- album: 'Newsies: The Musical' - artist: Alan Menken - filename: Once And For All.mp3 - genre: Musical - last modified: 2/4/2023 - length: '241' - size: 7.70 MB - title: Once and for All - track: 16/20 - year: '2012' -- album: Midnight Memories (Deluxe) - artist: One Direction - filename: One Direction - Story of My Life.mp3 - genre: boy band - last modified: 12/31/2021 - length: '246' - size: 7.22 MB - title: Story of My Life - track: '2' - year: '2013-11-25' -- album: A Fever You Can’t Sweat Out - artist: Panic! at the Disco - filename: Panic! At The Disco - I Write Sins Not Tragedies.mp3 - genre: baroque pop - last modified: 12/11/2022 - length: '188' - size: 3.07 MB - title: I Write Sins Not Tragedies - track: 10/13 - year: '2005' -- album: Frozen II - artist: Panic! at the Disco - filename: Panic! At The Disco-Into the Unknown (Panic! At The Disco Version).mp3 - genre: Pop - last modified: 3/16/2023 - length: '187' - size: 2.93 MB - title: Into the Unknown (Panic! at the Disco version) - track: 9/11 - year: '2019' -- album: RIOT! - artist: Paramore - filename: Paramore - Misery Business.mp3 - genre: Rock - last modified: 3/28/2023 - length: '212' - size: 7.01 MB - title: Misery Business - track: 4/11 - year: '2007' -- album: Graceland - artist: Paul Simon - filename: Paul Simon - You Can Call Me Al.mp3 - genre: classic rock - last modified: 12/11/2022 - length: '282' - size: 5.36 MB - title: You Can Call Me Al - track: 6/11 - year: '1986' -- album: Aladdin (Original Motion Picture Soundtrack) - artist: Peabo Bryson/Regina Belle - filename: Peabo Bryson, Regina Belle - A Whole New World (Aladdin's Theme).mp3 - genre: adult standards - last modified: 12/15/2021 - length: '250' - size: 7.50 MB - title: A Whole New World (Aladdin's Theme) - track: '21' - year: '1992-01-01' -- album: The Singles (Expanded) - artist: Phil Collins - filename: Phil Collins - Against All Odds (Take a Look at Me Now) - 2016 Remaster.mp3 - genre: mellow gold - last modified: 1/20/2021 - length: '209' - size: 3.40 MB - title: Against All Odds (Take a Look at Me Now) - 2016 Remaster - track: '10' - year: '2016-10-14' -- album: 'Tarzan: Original Soundtrack Brazil' - artist: Phil Collins - filename: Phil Collins - You'll Be In My Heart.mp3 - genre: mellow gold - last modified: 12/9/2022 - length: '257' - size: 8.62 MB - title: You’ll Be in My Heart - track: 15/15 - year: '1999' -- album: Crash My Party - artist: Luke Bryan - filename: Play It Again.mp3 - genre: Contemporary Country - last modified: 2/4/2023 - length: '227' - size: 3.70 MB - title: Play It Again - track: 9/13 - year: '2013' -- album: Presiento - artist: Morat con Aitana - filename: Presiento.mp3 - genre: '' - last modified: 12/9/2022 - length: '174' - size: 2.91 MB - title: Presiento - track: 1/1 - year: '2019' -- album: Deja vu - artist: Prince Royce & Shakira - filename: Prince Royce, Shakira - Deja Vu - Lyrics English and Spanish - Deja Vu - - Translation & Meaning.mp3 - genre: Pop - last modified: 2/4/2023 - length: '198' - size: 2.63 MB - title: Deja vu - track: 1/1 - year: '2017' -- album: The Addams Family - artist: Andrew Lippa - filename: Pulled.mp3 - genre: Musical - last modified: 2/4/2023 - length: '179' - size: 5.44 MB - title: Pulled - track: 4/21 - year: '2010' -- album: Hot Space - artist: Queen & David Bowie - filename: Queen, David Bowie - Under Pressure - Remastered 2011.mp3 - genre: classic rock - last modified: 12/11/2022 - length: '246' - size: 4.24 MB - title: Under Pressure - track: 11/11 - year: '1982' -- album: '' - artist: sunday - filename: Reik, Morat - La Bella y la Bestia (Letra_Lyrics).mp3 - genre: '' - last modified: 7/4/2020 - length: '180' - size: 2.78 MB - title: Reik, Morat - La Bella y la Bestia (Letra/Lyrics) - track: '' - year: '2020' -- album: Wheels Are Turnin’ - artist: REO Speedwagon - filename: REO Speedwagon - Can't Fight This Feeling.mp3 - genre: album rock - last modified: 12/11/2022 - length: '297' - size: 5.03 MB - title: Can’t Fight This Feeling - track: 6/9 - year: '1984' -- album: Whenever You Need Somebody - artist: Rick Astley - filename: Rick Astley - Never Gonna Give You Up.mp3 - genre: dance rock - last modified: 12/11/2022 - length: '215' - size: 3.34 MB - title: Never Gonna Give You Up - track: 1/10 - year: '1987' -- album: Whenever You Need Somebody - artist: Rick Astley - filename: Rick Astley - Whenever You Need Somebody.mp3 - genre: dance rock - last modified: 12/11/2022 - length: '238' - size: 3.80 MB - title: Whenever You Need Somebody - track: 2/10 - year: '1987' -- album: Ricky Martin - artist: Ricky Martin - filename: Ricky Martin - Livin' la Vida Loca.mp3 - genre: dance pop - last modified: 12/9/2022 - length: '243' - size: 7.68 MB - title: Livin’ la vida loca - track: 1/14 - year: '1999' -- album: Loud - artist: Rihanna - filename: Rihanna - Only Girl (In The World).mp3 - genre: Contemporary R&B - last modified: 3/27/2023 - length: '236' - size: 7.31 MB - title: Only Girl (in the World) - track: 5/6 - year: '2021' -- album: Rock and a Hard Place - artist: Bailey Zimmerman - filename: Rock and A Hard Place.mp3 - genre: '' - last modified: 2/4/2023 - length: '208' - size: 3.18 MB - title: Rock and a Hard Place - track: 1/1 - year: '2022' -- album: Emotion - artist: Carly Rae Jepsen - filename: Run Away With Me.mp3 - genre: Dance-Pop/Electropop - last modified: 2/4/2023 - length: '251' - size: 3.94 MB - title: Run Away With Me - track: 1/17 - year: '2020' -- album: Love Goes - artist: Sam Smith with Normani - filename: Sam Smith, Normani - Dancing With A Stranger (with Normani).mp3 - genre: dance pop - last modified: 12/11/2022 - length: '174' - size: 4.45 MB - title: Dancing With a Stranger - track: 12/19 - year: '2020' -- album: Sea Shanty Medley - artist: Home Free - filename: Sea Shanty Medley.mp3 - genre: '' - last modified: 12/10/2022 - length: '234' - size: 4.05 MB - title: Sea Shanty Medley - track: 1/1 - year: '2021' -- album: '' - artist: Disney On Broadway - filename: Seize the Day - Disney's NEWSIES (Official Lyric Video).mp3 - genre: '' - last modified: 6/7/2017 - length: '235' - size: 7.82 MB - title: Seize the Day - Disney's NEWSIES (Official Lyric Video) - track: '' - year: '2013' -- album: Wolves - artist: Selena Gomez x Marshmello - filename: Selena Gomez, Marshmello - Wolves.mp3 - genre: dance pop - last modified: 12/11/2022 - length: '198' - size: 6.56 MB - title: Wolves - track: 1/1 - year: '2017' -- album: Frontiers - artist: Journey - filename: Separate Ways (Worlds Apart).mp3 - genre: Rock - last modified: 2/4/2023 - length: '324' - size: 5.32 MB - title: Separate Ways (Worlds Apart) - track: 1/18 - year: '2017' -- album: Duality - artist: Set It Off feat. William Beckett - filename: Set It Off - Wolf in Sheep's Clothing (feat. William Beckett).mp3 - genre: '' - last modified: 3/16/2023 - length: '188' - size: 6.00 MB - title: Wolf in Sheep's Clothing - track: 8/11 - year: '2014' -- album: If I Can’t Have You - artist: Shawn Mendes - filename: Shawn Mendes - If I Can't Have You.mp3 - genre: canadian pop - last modified: 12/11/2022 - length: '191' - size: 6.09 MB - title: If I Can’t Have You - track: 1/1 - year: '2019' -- album: '' - artist: SilvestreDangondVEVO - filename: Silvestre Dangond, Nicky Jam - Cásate Conmigo (Official Video).mp3 - genre: '' - last modified: 1/14/2020 - length: '257' - size: 3.91 MB - title: Silvestre Dangond, Nicky Jam - Cásate Conmigo (Official Video) - track: '' - year: '2017' -- album: Reflection - artist: Fifth Harmony - filename: Sledgehammer.mp3 - genre: Pop - last modified: 12/15/2022 - length: '231' - size: 3.87 MB - title: Sledgehammer - track: 3/11 - year: '2015' -- album: Someone To You - artist: BANNERS - filename: Someone To You.mp3 - genre: '' - last modified: 3/1/2023 - length: '220' - size: 3.64 MB - title: Someone to You - track: 1/3 - year: '2020' -- album: Precious Metal - artist: Starship - filename: Starship - Nothing's Gonna Stop Us Now.mp3 - genre: album rock - last modified: 12/10/2022 - length: '271' - size: 4.24 MB - title: Nothing's Gonna Stop Us Now - track: 9/18 - year: '1989' -- album: SOS - artist: SZA - filename: SZA-Conceited.mp3 - genre: R&B - last modified: 3/27/2023 - length: '151' - size: 2.45 MB - title: Conceited - track: 15/25 - year: '2023' -- album: SOS - artist: SZA - filename: SZA-Nobody Gets Me.mp3 - genre: R&B - last modified: 3/27/2023 - length: '181' - size: 2.79 MB - title: Nobody Gets Me - track: 14/25 - year: '2023' -- album: SOS - artist: SZA - filename: SZA-Seek & Destroy.mp3 - genre: R&B - last modified: 3/27/2023 - length: '204' - size: 3.32 MB - title: Seek & Destroy - track: 3/25 - year: '2023' -- album: Wish - artist: The Cure - filename: The Cure - Friday I'm In Love.mp3 - genre: new wave - last modified: 12/11/2022 - length: '216' - size: 7.15 MB - title: Friday I’m in Love - track: 7/12 - year: '1992' -- album: 'NOW That’s What I Call the 00s: The Best of the Noughties 2000–2009' - artist: The Killers - filename: The Killers - Mr BrightSide Lyrics.mp3 - genre: '' - last modified: 12/9/2022 - length: '228' - size: 3.58 MB - title: Mr. Brightside - track: 9/20 - year: '2017' -- album: Bad - artist: Michael Jackson - filename: The Way You Make Me Feel (2012 Remaster).mp3 - genre: Pop - last modified: 12/15/2022 - length: '298' - size: 5.13 MB - title: The Way You Make Me Feel - track: 2/11 - year: '2013' -- album: Dawn FM - artist: The Weeknd feat. Lil Wayne - filename: The Weeknd, Lil Wayne-I Heard You’re Married.mp3 - genre: Contemporary R&B - last modified: 2/4/2023 - length: '264' - size: 4.40 MB - title: I Heard You’re Married - track: 14/16 - year: '2022' -- album: Dawn FM - artist: The Weeknd - filename: The Weeknd-Gasoline.mp3 - genre: Contemporary R&B - last modified: 2/4/2023 - length: '212' - size: 3.66 MB - title: Gasoline - track: 2/16 - year: '2022' -- album: Dawn FM - artist: The Weeknd - filename: The Weeknd-How Do I Make You Love Me?.mp3 - genre: Contemporary R&B - last modified: 2/4/2023 - length: '214' - size: 3.51 MB - title: How Do I Make You Love Me? - track: 3/16 - year: '2022' -- album: Dawn FM - artist: The Weeknd - filename: The Weeknd-Sacrifice.mp3 - genre: Contemporary R&B - last modified: 2/4/2023 - length: '189' - size: 3.15 MB - title: Sacrifice - track: 5/16 - year: '2022' -- album: Dawn FM - artist: The Weeknd - filename: The Weeknd-Take My Breath.mp3 - genre: Contemporary R&B - last modified: 2/4/2023 - length: '339' - size: 5.74 MB - title: Take My Breath - track: 4/16 - year: '2022' -- album: 'Newsies: The Musical' - artist: Alan Menken - filename: The World Will Know.mp3 - genre: Musical - last modified: 2/4/2023 - length: '249' - size: 7.90 MB - title: The World Will Know - track: 7/20 - year: '2012' -- album: Thinking ’Bout You - artist: Dustin Lynch feat. MacKenzie Porter - filename: Thinking ‘Bout You (feat. MacKenzie Porter) [Official Music Video].mp3 - genre: '' - last modified: 12/10/2022 - length: '211' - size: 3.25 MB - title: Thinking ’Bout You - track: 1/1 - year: '2021' -- album: FanMail - artist: TLC - filename: TLC - No Scrubs.mp3 - genre: atl hip hop - last modified: 12/11/2022 - length: '214' - size: 7.05 MB - title: No Scrubs - track: 5/17 - year: '1999' -- album: Kiss - artist: Carly Rae Jepsen - filename: Tonight I’m Getting Over You.mp3 - genre: Pop - last modified: 2/4/2023 - length: '219' - size: 3.55 MB - title: Tonight I’m Getting Over You - track: 10/13 - year: '2012' -- album: Definitive Greatest Hits - artist: Trace Adkins - filename: Trace Adkins - Chrome.mp3 - genre: contemporary country - last modified: 1/20/2021 - length: '204' - size: 3.73 MB - title: Chrome - track: '4' - year: '2010-01-01' -- album: ASTROWORLD - artist: Travis Scott - filename: Travis Scott-SICKO MODE.mp3 - genre: Hip Hop - last modified: 3/16/2023 - length: '313' - size: 9.87 MB - title: SICKO MODE - track: 3/17 - year: '2018' -- album: High School Musical - artist: Zac Efron & Vanessa Hudgens - filename: Troy, Gabriella - Start of Something New (From "High School Musical").mp3 - genre: Pop - last modified: 2/4/2023 - length: '201' - size: 5.99 MB - title: Start of Something New - track: 1/11 - year: '2006' -- album: Try Everything - artist: Home Free - filename: Try Everything.mp3 - genre: '' - last modified: 8/16/2019 - length: '197' - size: 3.84 MB - title: Try Everything - track: '' - year: '2016' -- album: Eddie Money - artist: Eddie Money - filename: Two Tickets to Paradise.mp3 - genre: Rock - last modified: 12/15/2022 - length: '237' - size: 3.97 MB - title: Two Tickets to Paradise - track: 1/11 - year: '2016' -- album: Heart & Soul - artist: Vanessa Carlton - filename: Vanessa Carlton - A Thousand Miles.mp3 - genre: dance pop - last modified: 12/9/2022 - length: '240' - size: 4.58 MB - title: A Thousand Miles - track: 7/18 - year: '2013' -- album: Now That's What I Call Music! 91 - artist: WALK THE MOON - filename: WALK THE MOON - Shut Up and Dance.mp3 - genre: dance pop - last modified: 12/31/2021 - length: '195' - size: 6.37 MB - title: Shut Up and Dance - track: '10' - year: '2015-07-24' -- album: WAP (feat. Megan Thee Stallion) - artist: Cardi B, Megan Thee Stallion - filename: WAP (feat. Megan Thee Stallion).mp3 - genre: '' - last modified: 8/8/2020 - length: '188' - size: 5.99 MB - title: WAP (feat. Megan Thee Stallion) - track: '' - year: '2020' -- album: 'Newsies: The Musical' - artist: Alan Menken - filename: Watch What Happens.mp3 - genre: Musical - last modified: 2/4/2023 - length: '187' - size: 5.87 MB - title: Watch What Happens - track: 8/20 - year: '2012' -- album: High School Musical - artist: High School Musical Cast - filename: We're All In This Together.mp3 - genre: Pop - last modified: 3/16/2023 - length: '231' - size: 7.50 MB - title: We're All in This Together - track: 9/11 - year: '2006' -- album: Last Christmas - artist: Wham! - filename: Wham!-Last Christmas.mp3 - genre: Pop - last modified: 3/1/2023 - length: '263' - size: 8.11 MB - title: Last Christmas - track: 1/2 - year: '2014' -- album: If I Know Me - artist: Morgan Wallen - filename: Whiskey Glasses.mp3 - genre: Country/Pop - last modified: 2/4/2023 - length: '234' - size: 3.82 MB - title: Whiskey Glasses - track: 4/14 - year: '2018' -- album: Whitney - artist: Whitney Houston - filename: Whitney Houston - I Wanna Dance with Somebody (Who Loves Me).mp3 - genre: dance pop - last modified: 12/11/2022 - length: '293' - size: 4.55 MB - title: I Wanna Dance With Somebody (Who Loves Me) - track: 1/11 - year: '1987' -- album: The Middle - artist: Zedd, Maren Morris & Grey - filename: Zedd, Maren Morris, Grey - The Middle.mp3 - genre: complextro - last modified: 12/11/2022 - length: '185' - size: 5.84 MB - title: The Middle - track: 1/1 - year: '2018' -- album: null - artist: null - filename: build on 4/4/2023 with Mp3tag v3.20 - the universal Tag editor - http://www.mp3tag.de/en/ - genre: null - last modified: null - length: null - size: null - title: null - track: null - year: null diff --git a/test/m3u_input/thingsonphone2.m3u8 b/test/m3u_input/thingsonphone2.m3u8 deleted file mode 100644 index e26bacd..0000000 --- a/test/m3u_input/thingsonphone2.m3u8 +++ /dev/null @@ -1,179 +0,0 @@ -# -E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\Cascada - Everytime We Touch (Fallen Superhero Hardstyle Remix).mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\Clean Bandit ft. Demi Lovato - Solo (Twisted Melodiez Bootleg) [Free Release].mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\Da Tweekaz - Frozen (Disney Tool) (Official Preview).mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\100 gecs - Frog On The Floor.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\100 gecs - Dumbest Girl Alive.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\Adele - Rolling in the Deep.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\Once And For All.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\The World Will Know.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\Watch What Happens.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\Watch What Happens.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Aldrey - La Lista (Lyric Video Oficial) #LaLista.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\Crazier Than You.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\Pulled.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\Ariana Grande - One Last Time.mp3 -E:\Captures\Audio Files\Music\goodsongs4\Ariana Grande, Zedd - Break Free.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\Ariana Grande, Zedd - Break Free.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\Ariana Grande - 7 rings.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\Avicii - The Nights.mp3 -E:\Captures\Audio Files\Music\spotifystuff\90s\Backstreet Boys - Quit Playing Games (With My Heart).mp3 -E:\Captures\Audio Files\Music\spotifystuff\90s\Backstreet Boys - As Long as You Love Me.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Backstreet Boys - I Want It That Way.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Backstreet Boys - Show Me the Meaning of Being Lonely.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\Rock and A Hard Place.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\Someone To You.mp3 -E:\Captures\Audio Files\Music\goodsongs4\Billie Eilish - bad guy.mp3 -E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Billy Joel - Uptown Girl.mp3 -E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Bonnie Tyler - Total Eclipse of the Heart.mp3 -E:\Captures\Audio Files\Music\M4A Files\02 Waiting for a Star to Fall.m4a -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Bruno Mars - 24K Magic.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\Bruno Mars - Locked out of Heaven.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\WAP (feat. Megan Thee Stallion).mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Cut To The Feeling.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\Carly Rae Jepsen-Felt This Way.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\Carly Rae Jepsen-Solo.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\Carly Rae Jepsen-This Love Isn't Crazy.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\Carly Rae Jepsen-Emotion.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\Carly Rae Jepsen-I Didn’t Just Come Here To Dance.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\carlyraejepsen\Carly Rae Jepsen-Let’s Get Lost.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Run Away With Me.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\Carly Rae Jepsen - Call Me Maybe.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\Carly Rae Jepsen - Guitar String / Wedding Ring.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Tonight I’m Getting Over You.mp3 -E:\Captures\Audio Files\Music\spotifystuff\90s\Cher - Believe.mp3 -E:\Captures\Audio Files\Music\spotifystuff\My 80's Playlist\Cher - If I Could Turn Back Time.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Childish Gambino, Donald Glover-3005.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\Cole Swindell - She Had Me At Heads Carolina.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\[I Just] Died In Your Arms.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\Seize the Day - Disney's NEWSIES (Official Lyric Video).mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\Dua Lipa - IDGAF.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\Dua Lipa - Cool.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\Dua Lipa - Don't Start Now.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\Dua Lipa - Hallucinate.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\Dua Lipa, DaBaby - Levitating (feat. DaBaby).mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\Thinking ‘Bout You (feat. MacKenzie Porter) [Official Music Video].mp3 -E:\Captures\Audio Files\Music\spotifystuff\90s\Phil Collins - You'll Be In My Heart.mp3 -E:\Captures\Audio Files\Music\spotifystuff\90s\Phil Collins - You'll Be In My Heart.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\Ed Sheeran - Castle on the Hill.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Two Tickets to Paradise.mp3 -E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Elton John - I'm Still Standing.mp3 -E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Erasure - A Little Respect - 2009 Remastered Version.mp3 -E:\Captures\Audio Files\Music\spotifystuff\Good Country\Eric Church - Round Here Buzz.mp3 -E:\Captures\Audio Files\Music\spotifystuff\90s\Extreme - More Than Words.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Faith Hill - Breathe.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Sledgehammer.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\George Michael-Careless Whisper.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\I Will Survive.mp3 -E:\Captures\Audio Files\Music\spotifystuff\90s\Go West - The King of Wishful Thinking.mp3 -E:\Captures\Audio Files\Music\2000'sThrowbacks\Gotye - Somebody That I Used To Know (Lyrics).mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Sea Shanty Medley.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Try Everything.mp3 -E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Huey Lewis & The News - The Power Of Love.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Jay Sean, Lil Wayne - Down.mp3 -E:\Captures\Audio Files\Music\spotifystuff\Nick's Sick Spanish Music\Jesse & Joy, J Balvin - Mañana Es Too Late.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\Heads Carolina, Tails California.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Jonas Blue, Jack & Jack - Rise.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Separate Ways (Worlds Apart).mp3 -E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Journey - Don't Stop Believin'.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Juanes - La Camisa Negra.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Kanye West - Heartless.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Katy Perry, Snoop Dogg - California Gurls.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\Katy Perry - Firework.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Katy Perry - Teenage Dream.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Kesha - TiK ToK.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Kesha - Your Love Is My Drug.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\Kiss - I Was Made For Lovin' You.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Lady Gaga - Poker Face.mp3 -E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Laura Branigan - Gloria.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Lil Nas X, Jack Harlow - INDUSTRY BABY.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\Linkin Park-In the End.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\disneysongs\Auli'i Cravalho - How Far I'll Go (from Moana_Official Video).mp3 -E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Lionel Richie - Dancing On The Ceiling.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\2 Be Loved (Am I Ready).mp3 -E:\Captures\Audio Files\Music\spotifystuff\90s\Lonestar - Amazed.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\Play It Again.mp3 -E:\Captures\Audio Files\Music\nickremixes\lukebryan_playitagain_notmyjugremix.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\Luke Combs - The Kind of Love We Make.mp3 -E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Madonna - Like a Prayer.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\MAGIC! - Rude.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\Marianas Trench - Desperate Measures.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\Marianas Trench - Haven't Had Enough.mp3 -E:\Captures\Audio Files\Music\spotifystuff\90s\Meat Loaf - I'd Do Anything For Love (But I Won't Do That) - Single Edit.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\The Way You Make Me Feel (2012 Remaster).mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Besos En Guerra.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Cuando Nadie Ve.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Presiento.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\Whiskey Glasses.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\beast_country_playlist\Whiskey Glasses.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\Morgan Wallen - Last Night.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\My Chemical Romance - Welcome to the Black Parade.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Natasha Bedingfield - Unwritten.mp3 -E:\Captures\Audio Files\Music\historystuff\Nightcore\Nightcore_020_Nightcore - Bad boy.mp3 -E:\Captures\Audio Files\Music\historystuff\Nightcore\Nightcore_018_Nightcore - Everytime We Touch.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\Best Song Ever.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\One Direction - Story of My Life.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Panic! At The Disco - I Write Sins Not Tragedies.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Paramore - Misery Business.mp3 -E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Paul Simon - You Can Call Me Al.mp3 -E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Phil Collins - Against All Odds (Take a Look at Me Now) - 2016 Remaster.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Prince Royce, Shakira - Deja Vu - Lyrics English and Spanish - Deja Vu - Translation & Meaning.mp3 -E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Queen, David Bowie - Under Pressure - Remastered 2011.mp3 -E:\Captures\Audio Files\Music\Music_From_DadsOldLaptop\Queen\The Platinum Collection, Vol. 1-3 Disc 2\16 The Show Must Go On.wma -E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\REO Speedwagon - Can't Fight This Feeling.mp3 -E:\Captures\Audio Files\Music\spotifystuff\My 80's Playlist\Rick Astley - Never Gonna Give You Up.mp3 -E:\Captures\Audio Files\Music\spotifystuff\My 80's Playlist\Rick Astley - Whenever You Need Somebody.mp3 -E:\Captures\Audio Files\Music\spotifystuff\90s\Ricky Martin - Livin' la Vida Loca.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Rihanna - Only Girl (In The World).mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\Sam Smith, Normani - Dancing With A Stranger (with Normani).mp3 -E:\Captures\Audio Files\Music\historystuff\Nightcore\Nightcore_204_Nightcore - Gotta Be Somebody.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\Selena Gomez, Marshmello - Wolves.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Set It Off - Wolf in Sheep's Clothing (feat. William Beckett).mp3 -E:\Captures\Audio Files\Music\goodsongs2\01 Man! I Feel Like a Woman!.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\Shawn Mendes - If I Can't Have You.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Leave The Door Open.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Silvestre Dangond, Nicky Jam - Cásate Conmigo (Official Video).mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\hardstyleremixes1\Johann Pachelbel - Canon In D (Jatimatic Hardstyle Bootleg) _ HQ Videoclip.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Reik, Morat - La Bella y la Bestia (Letra_Lyrics).mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\SZA-Conceited.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\SZA-Nobody Gets Me.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\SZA-Seek & Destroy.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Getaway Car.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Luis Fonsi, Demi Lovato - Echame La Culpa (Lyrics).mp3 -E:\Captures\Audio Files\Music\spotifystuff\90s\The Cure - Friday I'm In Love.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\The Weeknd-Gasoline.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\The Weeknd-How Do I Make You Love Me?.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\The Weeknd, Lil Wayne-I Heard You’re Married.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\The Weeknd-Sacrifice.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\fullalbums\The Weeknd-Take My Breath.mp3 -E:\Captures\Audio Files\Music\spotifystuff\90s\TLC - No Scrubs.mp3 -E:\Captures\Audio Files\Music\spotifystuff\Trace Adkins - Chrome.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Travis Scott-SICKO MODE.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\Dua Lipa - Love Again (Official Music Video).mp3 -E:\Captures\Audio Files\Music\spotifystuff\90s\Peabo Bryson, Regina Belle - A Whole New World (Aladdin's Theme).mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Lizzo - About Damn Time (Lyrics).mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\Glimpse of Us.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\disneysongs\Panic! At The Disco-Into the Unknown (Panic! At The Disco Version).mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\disneysongs\Idina Menzel, AURORA - Into the Unknown (From 'Frozen 2').mp3 -E:\Captures\Audio Files\Music\spotifystuff\2000's Pop\Vanessa Carlton - A Thousand Miles.mp3 -E:\Captures\Audio Files\Music\2000'sThrowbacks\Estelle - American Boy, Lyrics.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\Troy, Gabriella - Start of Something New (From "High School Musical").mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\TheatreSongs\We're All In This Together.mp3 -E:\Captures\Audio Files\Music\2000'sThrowbacks\Justin Timberlake - Sexy Back [Lyrics].mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs_1-4\Me And My Broken Heart.mp3 -E:\Captures\Audio Files\Music\2000'sThrowbacks\The Killers - Mr BrightSide Lyrics.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\Little Mix - Black Magic.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\WALK THE MOON - Shut Up and Dance.mp3 -E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Starship - Nothing's Gonna Stop Us Now.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\Latin\Juan Gabriel - No Tengo Dinero (Cover Audio).mp3 -E:\Captures\Audio Files\Music\Music_From_DadsOldLaptop\Roots of Rock- New Wave\01 Everybody Wants to Rule the World.wma -E:\Captures\Audio Files\Music\2000'sThrowbacks\Just The Way You Are- Bruno Mars (Lyrics on Screen).mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\Naked Eyes - Always Something There To Remind Me (Official Video).mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Wham!-Last Christmas.mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\decentsongs5\Wham!-Last Christmas.mp3 -E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Whitney Houston - I Wanna Dance with Somebody (Who Loves Me).mp3 -E:\Captures\Audio Files\Music\spotifystuff\All Out 80's\Whitney Houston - I Wanna Dance with Somebody (Who Loves Me).mp3 -E:\Captures\Audio Files\Music\youtubedlsongs\♪ Diggy Diggy Hole.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\Zedd, Maren Morris, Grey - The Middle.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\Zedd, Maren Morris, Grey - The Middle.mp3 -E:\Captures\Audio Files\Music\spotifystuff\2010s\Ariana Grande - Into You.mp3 diff --git a/test/splittest.py b/test/splittest.py deleted file mode 100644 index c66c12c..0000000 --- a/test/splittest.py +++ /dev/null @@ -1,4 +0,0 @@ -teststring = "2/15" -beans = teststring.split("/") -print(beans[0]) -print(beans[1]) \ No newline at end of file diff --git a/test/yamltest.py b/test/yamltest.py deleted file mode 100644 index 225b4ad..0000000 --- a/test/yamltest.py +++ /dev/null @@ -1,20 +0,0 @@ -import os -import io -import yaml -from pathlib import Path - -total_count = 0 -yaml_files = [f for f in os.listdir("E:\Captures\Audio Files\Music\playlists\playliststosave\testing\yapl") if f.endswith('.yaml') or f.endswith('.yapl')] -for yaml_file in yaml_files: - print(f"Parsing {yaml_file}") - with open(input_path / yaml_file, 'r') as file: - count = 0 - playlist = yaml.safe_load(file) - tracks = playlist["tracks"] - for track in tracks: - if "/" in track['track']: - print("There is a thing") - count = count + 1 - total_count = total_count + count - print(f"Total count of {yaml_file}: {count}") -print(f"Total count: {total_count}") \ No newline at end of file