Created
July 29, 2019 06:14
-
-
Save beantowel/641aeaa0554dae0ce929f0434c031e87 to your computer and use it in GitHub Desktop.
script for downloading MTG-QBH dataset collection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import click | |
import re | |
import csv | |
import numpy as np | |
from selenium import webdriver | |
from bs4 import BeautifulSoup | |
from urllib.parse import quote_plus | |
YOUTUBE_QUERY = 'https://www.youtube.com/results?search_query=' | |
EXT = 'ogg' | |
FILE_FORMAT = 'vorbis' | |
def search_videos(query, driver): | |
while True: | |
driver.get(YOUTUBE_QUERY + query) | |
driver.implicitly_wait(1.2) | |
try: | |
elements = driver.find_elements_by_xpath('//*[@id="video-title"]') | |
links = [] | |
for element in elements: | |
title = element.get_attribute('title') | |
href = element.get_attribute('href') | |
if href is not None: | |
links.append((title, href)) | |
assert len(links) > 0 | |
break | |
except: | |
_ = input('[PROMPT] Continue?') | |
print(elements) | |
return links | |
def autoSelection(song, links): | |
def jaccard_similarity(list1, list2): | |
intersection = len(list(set(list1).intersection(list2))) | |
union = (len(list1) + len(list2)) - intersection | |
return float(intersection / union) | |
ref = song[0].lower().split() + song[1].lower().split() + ['-'] | |
score = [jaccard_similarity(ref, link[0].lower().strip().split()) | |
for link in links] | |
if score[0] > 0.35: | |
# prefer first result | |
idx = 0 | |
else: | |
idx = np.argmax(np.array(score)) | |
if score[idx] < 0.8: | |
print(f'[WARNING] low jaccard similarity:{score[idx]}') | |
return idx | |
def interactiveSelection(song, links): | |
print('Found:\n'+'\n'.join( | |
[f'[{i}]: {link[0].strip()}' for i, link in enumerate(links)])) | |
choice = input('Pick one: ') | |
while not(choice.isdigit()) or not(0 <= int(choice) < len(links)): | |
print("Oups, that was wrong. Try again!") | |
choice = input('Pick one: ') | |
return int(choice) | |
def writeURL(output, songs, auto=False): | |
with open(output, newline='') as csvfile: | |
# <artist>\t<title>\t<label>\t<url>\t<video_title> | |
reader = csv.reader(csvfile, delimiter=',', quotechar='\"') | |
completed = [row[:3] for row in reader][1:] | |
songs = list(filter(lambda x: x not in completed, songs)) | |
print('[INFO] starting webdriver') | |
driver = webdriver.Chrome() | |
driver.get('https://www.youtube.com') | |
print('[INFO] webdriver initialized') | |
queries = [quote_plus(' - '.join(song[:2]).strip()) for song in songs] | |
with open(output, newline='', mode='a') as csvfile: | |
writer = csv.writer(csvfile, delimiter=',', | |
quotechar='\"', quoting=csv.QUOTE_MINIMAL) | |
try: | |
for song, query in zip(songs, queries): | |
print(f'[SEARCH]: {song} @ {query}') | |
links = search_videos(query, driver) | |
idx = autoSelection( | |
song, links) if auto else interactiveSelection(song, links) | |
video_title, url = links[idx] | |
print(f'[SELECTED]: {video_title}') | |
writer.writerow(list(song) + [url, video_title]) | |
except KeyboardInterrupt: | |
pass | |
def downloadSong(artist, title, label, url, v_title, dst): | |
target = os.path.join(dst, f'{artist} - {title}.webm') | |
command = f'youtube-dl --extract-audio --audio-format {FILE_FORMAT} --output \"{target}\" \'{url}\' ' | |
print(f'[INFO] Downloading {v_title} @ {url}') | |
os.system(command) | |
@click.group() | |
def cli(): | |
pass | |
@click.command() | |
@click.argument('songurls', nargs=1, type=click.Path(exists=True)) | |
@click.argument('dst', nargs=1, type=click.Path(exists=True)) | |
def download(songurls, dst): | |
with open(songurls, newline='') as csvfile: | |
# <artist>\t<title>\t<label>\t<url>\t<video_title> | |
reader = csv.reader(csvfile, delimiter=',', quotechar='\"') | |
records = [row for row in reader][1:] | |
completed = os.listdir(dst) | |
for record in records: | |
if f'{record[0]} - {record[1]}.{EXT}' not in completed: | |
downloadSong(*record, dst) | |
else: | |
print(f'[INFO] skipping {record[-1]}') | |
for record in records: | |
if record[-1]+f'.{EXT}' in completed: | |
# <TO DO ?>add metadata | |
pass | |
@click.command() | |
@click.argument('songlist', nargs=1, type=click.Path(exists=True)) | |
@click.option('--auto', default=False, type=click.BOOL, help='match urls auto selection') | |
@click.option('--output', default='./songUrls.csv', type=click.Path()) | |
def geturl(songlist, auto, output): | |
with open(songlist, newline='') as csvfile: | |
# <artist>\t<title>\t<label> | |
reader = csv.reader(csvfile, delimiter=',', quotechar='\"') | |
songs = [row for row in reader][1:] | |
if not os.path.exists(output): | |
with open(output, newline='', mode='a') as csvfile: | |
# <artist>\t<title>\t<label>\t<url>\t<video_title> | |
writer = csv.writer(csvfile, delimiter=',', | |
quotechar='\"', quoting=csv.QUOTE_MINIMAL) | |
writer.writerow(['artist', 'title', 'label', 'url', 'video_title']) | |
writeURL(output, songs, auto) | |
cli.add_command(download) | |
cli.add_command(geturl) | |
if __name__ == '__main__': | |
cli() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
artist | title | label | url | video_title | |
---|---|---|---|---|---|
The Cure | One hundred years | 100years | https://www.youtube.com/watch?v=V0K9wbvHTxs | One Hundred Years - The Cure | |
The Cure | 10:15 saturday night | 1015sat | https://www.youtube.com/watch?v=OndaSj-ijnY | The Cure - 10:15 Saturday Night | |
The Cure | Seventeen seconds | 17secs | https://www.youtube.com/watch?v=ydZj2zIt8cY | The Cure - Seventeen Seconds | |
Antonio Machin | Dos gardenias | 2gardeni | https://www.youtube.com/watch?v=0sw6-7awQ0I | DOS GARDENIAS - ANTONIO MACHIN | |
The Cure | Six different ways | 6different | https://www.youtube.com/watch?v=hBA4m2CrZJ4 | The Cure - Six Different Ways | |
The Beatles | Across the universe | across | https://www.youtube.com/watch?v=UAtYhdO4D8I | The Beatles - Across The Universe | |
The Beatles | A day in the life | adayin | https://www.youtube.com/watch?v=usNsCeOV4GM | The Beatles - A Day In The Life | |
Astor Piazzolla | Adios nonino | adiosnoni | https://www.youtube.com/watch?v=VTPec8z5vdY | Adios Nonino - Astor Piazzolla | |
The Cure | A forest | aforest | https://www.youtube.com/watch?v=xik-y0xlpZ0 | The Cure - A Forest | |
Antonio Carlos Jobim | Agua de beber | aguabeber | https://www.youtube.com/watch?v=5ScQszabm18 | Agua De Beber - Antonio Carlos Jobim | |
The Cure | A letter to Elise | aletterto | https://www.youtube.com/watch?v=-AUCSkHCrwY | The Cure - A Letter To Elise | |
Eric Carmen | All by myself | allbymys | https://www.youtube.com/watch?v=EzoazPPC7b8 | Eric Carmen - All By MySelf (HQ) | |
The Cure | All cats are grey | allcatsare | https://www.youtube.com/watch?v=hpgNx89B8Y4 | THE CURE - ALL CATS ARE GREY | |
The Beatles | All my loving | allmyloving | https://www.youtube.com/watch?v=7jPPJvqwUMo | The Beatles - All My Loving (Karaoke) | |
The Beatles | All you need is love | allyouneed | https://www.youtube.com/watch?v=dsxtImDVMig | Love Is All You Need - Beatles | |
Joao Donato | Amazonas | amazonas | https://www.youtube.com/watch?v=898Z2jdQeh8 | Joao Donato - Amazonas | |
Astor Piazzolla | Amelitango | amelitang | https://www.youtube.com/watch?v=4vf_b6-UPSA | Amelitango - Astor Piazzolla | |
The Beatles | And I love her | andilove | https://www.youtube.com/watch?v=q08tKc8To2I | The Beatles - And I Love Her (Cover) | |
The Beatles | And your bird can sing | andyourbird | https://www.youtube.com/watch?v=ALvWbpfiot0 | And Your Bird Can Sing cover - The Beatles | |
Mana | Cuando los angeles lloran | angelesll | https://www.youtube.com/watch?v=6FkQmdQJ8lg | Mana - Cuando Los Angeles Lloran (Letra) | |
The Rolling Stones | Angie | angie | https://www.youtube.com/watch?v=oCyikSfr7DQ | The Rolling Stones - Angie cover | |
The Cure | A night like this | anightlike | https://www.youtube.com/watch?v=KE1nu67-U2I | The Cure - A Night Like This | |
Kraftwerk | Antenne | antenne | https://www.youtube.com/watch?v=K9CEJhGswcE | Kraftwerk - Antenne | |
Pink Floyd | Any colour you like | anycolour | https://www.youtube.com/watch?v=c3Jzn8Tm1L0 | Pink Floyd - Any Colour You Like | |
Cole Porter | Anything goes | anythingo | https://www.youtube.com/watch?v=r7NJ9ylAhos | Anything Goes - Cole Porter (with lyrics) | |
Pink Floyd | Astronomy domine | astronomy | https://www.youtube.com/watch?v=pJh9OLlXenM | Pink Floyd - Astronomy Domine | |
Duke Ellington | Take the A train | atrain | https://www.youtube.com/watch?v=KV8Hj_E8LJc | Duke Ellington - Take the a train | |
Kraftwerk | Autobahn | autobahn | https://www.youtube.com/watch?v=ugBX6H0Z2hc | Kraftwerk - Autobahn | |
The Beatles | Back in the USSR | backussr | https://www.youtube.com/watch?v=fOeaHQ_ADAY | Back in the USSR - Beatles | |
The Beatles | Bad to me | badtome | https://www.youtube.com/watch?v=kvO-5Ga4Hso | Bad To Me - The Beatles | |
Genesis | The battle of epping forest | battleepp | https://www.youtube.com/watch?v=vFuIYyXiD5w | Genesis - The Battle of Epping Forest | |
The Beatles | Because | because | https://www.youtube.com/watch?v=0KTRtRqPAC8 | The Beatles - Because (Subtitulada) | |
Cole Porter | Begin the Beguine | beginbeg | https://www.youtube.com/watch?v=sYHXTJxoZqo | Begin the Beguine - Cole Porter | |
Genesis | In the beginning | beginning | https://www.youtube.com/watch?v=AjQS0OsukMA | Genesis - In the Beginning | |
Vinicius de Moraes | Berimbau | berimbau | https://www.youtube.com/watch?v=vSDygIDLVSA | Berimbau - Vinícius de Moraes | |
Michael Jackson | Billy Jean | billyjean | https://www.youtube.com/watch?v=YrmIOu-kPYc | michael jackson billy jean lyrics | |
Frank Sinatra | Birth of the blues | birthblues | https://www.youtube.com/watch?v=2KirUGHqV28 | Frank Sinatra - Birth Of The Blues | |
The Beatles | Black Bird | blackbird | https://www.youtube.com/watch?v=Man4Xw8Xypo | Blackbird (Remastered 2009) | |
Depeche Mode | Black celebration | blackceleb | https://www.youtube.com/watch?v=vXfbnS_BybQ | Depeche Mode - Black Celebration | |
Depeche Mode | Blasphemous rumors | blasphemo | https://www.youtube.com/watch?v=Sb6HJ4CkPuI | Depeche Mode - Blasphemous Rumors + lyrics | |
Queen | Bohemian Rapsody | bohemianr | https://www.youtube.com/watch?v=RnFfMF5J8z0 | Queen - Bohemian Rhapsody (Lyrics) | |
The Cure | Boys dont cry | boysdont | https://www.youtube.com/watch?v=9GkVhgIeGJQ | The Cure - Boys Don't Cry | |
Pink Floyd | Brain damage | braindama | https://www.youtube.com/watch?v=DVQ3-Xe_suY | Pink Floyd - Brain Damage / Eclipse | |
Pink Floyd | Bring the boys back home | bringboys | https://www.youtube.com/watch?v=wJpTW68-HKQ | Pink Floyd - Bring the Boys Back Home | |
Astor Piazzolla | Buenos Aires hora cero | buenosair | https://www.youtube.com/watch?v=ZwO8sS3EGfc | Astor Piazzolla - Buenos Aires Hora Cero | |
The Beatles | The continuing story of Bungalow Bill | bungalow | https://www.youtube.com/watch?v=pY2cEcKHvuw | Beatles - The Continuing Story Of Bungalow Bill | |
The Beatles | Cant buy me love | cantbuy | https://www.youtube.com/watch?v=srwxJUXPHvE | The Beatles - Can't Buy Me Love | |
Genesis | Can utility and the coastliners | canutili | https://www.youtube.com/watch?v=fL99hRXI_Vk | CAN UTILITY AND THE COASTLINERS - GENESIS | |
Pink Floyd | Careful with that axe Eugene | carefulaxe | https://www.youtube.com/watch?v=tMpGdG27K9o | Pink Floyd - Careful With That Axe Eugene | |
Genesis | The carpet crawlers | carpetcr | https://www.youtube.com/watch?v=2yUN6CsuVPw | Genesis - The Carpet Crawlers | |
The Beatles | Carry that weight | carryweight | https://www.youtube.com/watch?v=6B224XDJw6g | Carry That Weight (Remastered 2009) | |
The Cure | Catch | catch | https://www.youtube.com/watch?v=JWPnYXldfY8 | The Cure - Catch | |
The Cure | Charlotte sometimes | charlotte | https://www.youtube.com/watch?v=4KeII31qyck | The Cure - Charlotte Sometimes | |
Antonio Carlos Jobim | Chega de saudade | chegadesau | https://www.youtube.com/watch?v=jjeKib3HagU | Antonio Carlos Jobim - Chega De Saudade | |
Nacha pop | Chica de ayer | chicaayer | https://www.youtube.com/watch?v=B7EQkV4c8jU | Nacha Pop - Chica De Ayer | |
Ennio Morricone and Dulce Pontes | Cinema Paradiso Love theme | cinemapar | https://www.youtube.com/watch?v=bkIsX5G8WyQ | Dulce Pontes & Ennio Morricone - Cinema Paradiso | |
Genesis | The cinema show | cinemash | https://www.youtube.com/watch?v=G501Ii0X0NE | Genesis - The Cinema Show | |
The Cure | Close to me | close2me | https://www.youtube.com/watch?v=FY-zoTZjSVM | The Cure - Close To Me | |
Pink Floyd | Come in number 51 your time is up | comein51 | https://www.youtube.com/watch?v=w208rzi1toM | PINK FLOYD - Come In Number 51, Your Time Is Up | |
The Beatles | Come together | cometoget | https://www.youtube.com/watch?v=45cYwDMibGo | The Beatles - Come Together | |
Pink Floyd | Comfortably numb | comfortab | https://www.youtube.com/watch?v=_FrOQC-zEog | Pink Floyd - Comfortably numb | |
Kraftwerk | Computer liebe | computerlo | https://www.youtube.com/watch?v=Bp_6HLUQno0 | Kraftwerk - Computer Liebe | |
Antonio Carlos Jobim | Corcovado | corcovado | https://www.youtube.com/watch?v=_8xnQZ86fN4 | Corcovado - Antonio Carlos Jobim | |
Pink Floyd | Crumbling land | crumbling | https://www.youtube.com/watch?v=kv0OfEesMTo | Pink Floyd - Crumbling Land | |
Olivia Newton John | Dont cry for me Argentina | cryargenti | https://www.youtube.com/watch?v=qo9gpp1NZSs | Olivia Newton John - Don't Cry For Me Argentina | |
The Beatles | Ill cry instead | cryinstead | https://www.youtube.com/watch?v=0M6_6vfzR5A | The Beatles - I'll Cry Instead | |
Genesis | Dancing with the Moonlit knight | dancingwi | https://www.youtube.com/watch?v=r0Spl1cOf-o | Genesis - Dancing with the Moonlit Knight | |
Antonio Carlos Jobim | So danco samba | dancosamb | https://www.youtube.com/watch?v=L_Ph0engpB4 | So Danco Samba Chords at MyPartitur - Antonio Carlos Jobim | |
Kraftwerk | The model | dasmodell | https://www.youtube.com/watch?v=KFq2pU21cNU | Kraftwerk - The Model | |
The Beatles | Day Tripper | daytripper | https://www.youtube.com/watch?v=S5irvWu-Me0 | The Beatles - Day Tripper (Karaoke) | |
Depeche Mode | Deaths door | deathsdo | https://www.youtube.com/watch?v=_iyZRt_6V54 | Depeche Mode - Death's Door | |
Astor Piazzolla | Decarissimo | decarissi | https://www.youtube.com/watch?v=i-3_qLfMXWQ | Astor Piazzolla - Decarissimo | |
The Cure | Same deep water as you | deepwater | https://www.youtube.com/watch?v=V35cxutR7gc | The Cure The Same Deep Water As You | |
Antonio Vega | Se dejaba llevar | dejaballev | https://www.youtube.com/watch?v=5qn2sJSQAJE | Antonio Vega - Se Dejaba Llevar | |
Kraftwerk | Dentaku | dentaku | https://www.youtube.com/watch?v=ZbmFeXTN7GA | Kraftwerk - Dentaku | |
Kraftwerk | Der telefon anruf | dertelefon | https://www.youtube.com/watch?v=9YCVEeHR6c0 | Kraftwerk - Der Telefon Anruf | |
Antonio Carlos Jobim | Desafinado | desafinado | https://www.youtube.com/watch?v=44sp4W3WiBk | [2] Antonio Carlos Jobim - Desafinado | |
Kraftwerk | Die roboter | dieroboter | https://www.youtube.com/watch?v=jtq4V7bqpt4 | Kraftwerk - Die Roboter | |
The Cure | Disintegration | disintegr | https://www.youtube.com/watch?v=MNZxs0TWz8s | The Cure - Disintegration | |
The Beatles | Why dont we do it on the road | doitroad | https://www.youtube.com/watch?v=p4E6KtQg_z0 | Why Don't We Do It In The Road? (Remastered 2009) | |
Pink Floyd | Dont leave me now | dontleave | https://www.youtube.com/watch?v=7LBKsQ1wEVM | Pink Floyd - Don't Leave Me Now (Live) | |
Manhattan Transfer | Dont let go | dontletgo | https://www.youtube.com/watch?v=Q4APLIbUY4k | Don't Let Go - Manhattan Transfer | |
The Beatles | Dont let me down | dontletme | https://www.youtube.com/watch?v=NCtzkaL2t_Y | The Beatles - Don't Let Me Down | |
The Beatles | Drive my car | drivemycar | https://www.youtube.com/watch?v=RiI1LK1nd4A | Drive My Car - The Beatles | |
Pink Floyd | Echoes | echoes | https://www.youtube.com/watch?v=HuBqE9xGtiQ | Echoes - Pink Floyd | |
The Beatles | Eight days a week | eightdays | https://www.youtube.com/watch?v=kle2xHhRHg4 | The Beatles - Eight Days A Week | |
The Beatles | Eleanor Rigby | eleanor | https://www.youtube.com/watch?v=D0IPhMcml1E | The Beatles - Eleanor Rigby (Karaoke) | |
Kraftwerk | Electric cafe | electricca | https://www.youtube.com/watch?v=MBjhHq6qp-k | Kraftwerk - Electric Cafe | |
Pink Floyd | Empty spaces | emptyspa | https://www.youtube.com/watch?v=RC-uk0NZSt4 | Pink Floyd - Empty Spaces (Live) | |
Diana Ross and Lionel Richie | Endless love | endlesslo | https://www.youtube.com/watch?v=Y2RyCCC0_Lk | Diana Ross and Lionel Richie Endless Love Lyrics | |
The Cure | The end of the world | endofwor | https://www.youtube.com/watch?v=OWLECmUQvxU | The Cure - The End Of The World | |
Depeche Mode | Enjoy the silence | enjoysilen | https://www.youtube.com/watch?v=aGSKrC7dGcY | Depeche Mode - Enjoy the Silence | |
Kraftwerk | Europe endless | europeend | https://www.youtube.com/watch?v=cqGsi9k6ra0 | Kraftwerk - Europe Endless | |
Depeche Mode | Everything counts | everything | https://www.youtube.com/watch?v=1t-gK-9EIq4 | Depeche Mode - Everything Counts (Official Video) | |
The Cure | The exploding boy | exploding | https://www.youtube.com/watch?v=49J5Iaryv64 | The Cure - The Exploding Boy | |
The Cure | Fascination street | fascination | https://www.youtube.com/watch?v=7ZsQdLlvuk4 | The Cure - Fascination Street | |
Antonio Carlos Jobim | Favela | favela | https://www.youtube.com/watch?v=63GVV2wwjtY | Antonio Carlos Jobim - Favela | |
The Beatles | I feel fine | feelfine | https://www.youtube.com/watch?v=WrAV5EVI4tU | The Beatles - I Feel Fine | |
Kylie Minogue | Fever | fever_ky | https://www.youtube.com/watch?v=F3aoTeQg-aA | Kylie Minogue - Fever - Fever | |
The Cure | The figurehead | figurehead | https://www.youtube.com/watch?v=aqJTxMG_n1E | The Cure - The Figurehead | |
The Cure | Fire in Cairo | fireinca | https://www.youtube.com/watch?v=e6KyekvPJbw | The Cure - fire in cairo | |
Genesis | Firth of fifth | firthof | https://www.youtube.com/watch?v=SD5engyVXe0 | Genesis - Firth Of Fifth | |
Pink Floyd | Flaming | flaming | https://www.youtube.com/watch?v=ePQFKXjdAVc | Pink Floyd - Flaming (Lyrics) | |
Depeche Mode | Fly on the windscreen | flyonthewi | https://www.youtube.com/watch?v=4dBtfeoXM8I | Depeche Mode - Fly On The Windscreen | |
The Cure | Forever | forever | https://www.youtube.com/watch?v=m0ealEZ_uhA | the Cure - Forever | |
The Beatles | For no one | fornoone | https://www.youtube.com/watch?v=kXzvcAROfvg | For no one - The Beatles (LYRICS/LETRA) [Original] | |
Genesis | Fountain of Salmacis | fountainof | https://www.youtube.com/watch?v=Dkqz4UfDowY | Genesis - The Fountain of Salmacis | |
Depeche Mode | Freelove | freelove | https://www.youtube.com/watch?v=hoO9fO5Jcps | Depeche Mode - Freelove | |
The Cure | Friday Im in love | fridayim | https://www.youtube.com/watch?v=0thnAQKadpo | The Cure - Friday I'm In Love | |
The Beatles | From me to you | fromme2u | https://www.youtube.com/watch?v=Dc1-W4KsHvE | The Beatles - From Me To You | |
Astor Piazzolla | Fuga y misterio | fugaymist | https://www.youtube.com/watch?v=5vk-vdJKGuU | Fuga y Misterio - Astor Piazzolla | |
The Beatles | Get back | getback | https://www.youtube.com/watch?v=qzRRAgAjGTo | The Beatles - Get Back (HQ Sound) | |
Depeche Mode | Get the balance right | getbalanc | https://www.youtube.com/watch?v=y3LcPyICeNA | Depeche Mode - Get The Balance Right | |
The Beatles | Getting better | getting | https://www.youtube.com/watch?v=08dEdy7sFEc | Getting Better - The Beatles | |
Genesis | The return of the giant Hogweed | gianthog | https://www.youtube.com/watch?v=wgWtlls6Cno | Genesis - The Return of the Giant Hogweed | |
ABBA | Gimme gimme gimme | gimme | https://www.youtube.com/watch?v=hjEigv5TPlo | ABBA - Gimme Gimme Gimme (Syzz Rework) | |
The Beatles | Girl | girl | https://www.youtube.com/watch?v=BtWvNoC8fAo | The Beatles - Girl | |
John Lennon | Give peace a chance | givepeace | https://www.youtube.com/watch?v=JSbnxp6nMf0 | John Lennon - Give Peace A Chance (Original Video Tape) | |
The Beatles | Glass onion | glassonion | https://www.youtube.com/watch?v=evxrVjW-aeg | The Beatles - Glass Onion | |
The Beatles | Golden Slumbers | golden | https://www.youtube.com/watch?v=AcQjM7gV6mI | Golden Slumbers (Remastered 2009) | |
Pink Floyd | Goodbye blue sky | goodbyeb | https://www.youtube.com/watch?v=_0v07InoFiU | Pink Floyd - Goodbye Blue Sky | |
Pink Floyd | Goodbye cruel world | goodbyecr | https://www.youtube.com/watch?v=4MjgykuVq64 | Pink Floyd - Goodbye Cruel World | |
The Beatles | Good day sunshine | goodday | https://www.youtube.com/watch?v=ws6CF4S82nY | Good Day Sunshine - The Beatles | |
The Beatles | Good night | goodnight | https://www.youtube.com/watch?v=OiLr2Vk9xR4 | Good Night - The Beatles [Original] (+Video) | |
The Beatles | Ive Got A Feeling | gotafeeling | https://www.youtube.com/watch?v=uRlp6uhWpKE | i've got a feeling - The Beatles (cover) | |
The Cure | Lets go to bed | gotobed | https://www.youtube.com/watch?v=dVdfTtEMqL4 | the cure - lets go to bed - lyrics | |
The Beatles | Got to get you into my life | gottoget | https://www.youtube.com/watch?v=yJ8WI3Q9jm4 | The Beatles - Got to Get You Into My Life | |
Pink Floyd | The great gig in the sky | greatgig | https://www.youtube.com/watch?v=cVBCE3gaNxc | [HD] Pink Floyd - The Great Gig In The Sky | |
The Platters | The great pretender | greatpret | https://www.youtube.com/watch?v=uYw6pDoRs7M | The Platters - The Great Pretender | |
The Cure | The hanging garden | hanging | https://www.youtube.com/watch?v=yEH5jReEkSk | The Cure - Hanging Garden | |
Pink Floyd | The happiest days of out lives | happiestd | https://www.youtube.com/watch?v=cSNBp4Je4YM | Pink Floyd - The Happiest Days of Our Lives | |
The Beatles | Happiness is a warm gun | happiness | https://www.youtube.com/watch?v=8rTb_ghUbtg | The Beatles happiness is a warm gun | |
The Beatles | A hard days night | harddays | https://www.youtube.com/watch?v=Yjyj8qnqkYI | The Beatles - A Hard Day's Night | |
Pink Floyd | Have a cigar | havecigar | https://www.youtube.com/watch?v=YJLhKd9yoO8 | Pink Floyd - Have A Cigar | |
Depeche Mode | To have and to hold | havehold | https://www.youtube.com/watch?v=2Le5Z8CjIzY | DEPECHE MODE - TO HAVE AND TO HOLD | |
Pink Floyd | Heart beat pig meat | heartbeat | https://www.youtube.com/watch?v=Jtb20vB0yhE | Pink Floyd - Heart Beat Pig Meat | |
The Beatles | Hello goodbye | hellogoodb | https://www.youtube.com/watch?v=OAZ7kUZ7yWY | The Beatles - Hello Goodbye (Backwards) | |
The Beatles | Help | help | https://www.youtube.com/watch?v=ZNahS3OHPwA | The Beatles Help | |
Kris Kristofferson | Help me make it through the night | helpmema | https://www.youtube.com/watch?v=jU5-wQLtUR8 | Kris Kristofferson - Help Me Make It Through The Night | |
The Beatles | Helter skelter | heltskelt | https://www.youtube.com/watch?v=9p9UficlHnQ | The Beatles - Helter Skelter | |
The Beatles | Here comes the sun | herecomes | https://www.youtube.com/watch?v=H3OhtUtqY7Q | The Beatles - Here Comes The Sun | |
The Beatles | Here there and everywhere | herethere | https://www.youtube.com/watch?v=0Whz1jIEBI0 | The Beatles - Here There & Everywhere | |
The Beatles | Hey Jude | heyjude | https://www.youtube.com/watch?v=A_MjCqQoLLA | The Beatles - Hey Jude | |
Pink Floyd | Hey you | heyyou | https://www.youtube.com/watch?v=jQcBwE6j09U | Pink Floyd - Hey You | |
The Beatles | You have got to hide your love away | hidelove | https://www.youtube.com/watch?v=m3MrtLzDDho | The Beatles - You've Got To Hide Your Love Away | |
Depeche Mode | Higher love | higherlove | https://www.youtube.com/watch?v=sG0-mrYG4uE | Depeche Mode - Higher Love | |
Frank Sinatra | High hopes | highhopes | https://www.youtube.com/watch?v=P-emmqiNHDA | High Hopes - Frank Sinatra | |
Depeche Mode | Home | home | https://www.youtube.com/watch?v=l87jkd6juq0 | Depeche Mode - Home | |
The Beatles | Honey pie | honeypie | https://www.youtube.com/watch?v=BAx8PQORWLo | Honey Pie - The Beatles karaoke cover | |
The Cure | Hot hot hot | hothot | https://www.youtube.com/watch?v=p0E9urVs-2o | The Cure - Hot Hot Hot!!! | |
Gloria Gaynor | I am what I am | iamwhati | https://www.youtube.com/watch?v=zreTvtpTeoU | Gloria Gaynor - I Am What I Am. | |
The Beatles | I call your name | icallyou | https://www.youtube.com/watch?v=HMZT7mwTalk | The Beatles - I Call Your Name (Subtitulada) | |
Depeche Mode | I feel you | ifeelyou | https://www.youtube.com/watch?v=tf87P8mEX9U | I feel You - Depeche Mode | |
The Beatles | If I Fell | ififell | https://www.youtube.com/watch?v=HghL22JzJpk | Remember The Beatles - If I Fell | |
The Beatles | If I need someone | ifineedso | https://www.youtube.com/watch?v=XTtmZ7D77hA | The Beatles - If I Needed Someone (Subtitulada) | |
The Cure | If only tonight we could sleep | ifonlytonig | https://www.youtube.com/watch?v=f5zkRrgYD7g | The Cure - If Only Tonight We Could Sleep | |
Genesis | I know what I like | iknowwha | https://www.youtube.com/watch?v=Bn8RnZcGomY | Genesis - I Know What I Like Live | |
John Lennon | Imagine | imagine | https://www.youtube.com/watch?v=VOgFZfRVaww | John Lennon - Imagine | |
The Beatles | Im a loser | imaloser | https://www.youtube.com/watch?v=ukWRRNqMAZ4 | The Beatles - I'm a Loser | |
The Cure | Im cold | imcold | https://www.youtube.com/watch?v=b1PYREC3V90 | the cure im cold | |
The Beatles | Im down | imdown | https://www.youtube.com/watch?v=lOWrScjXMRE | I'm Down (Remastered 2009) | |
The Beatles | I me mine | imemine | https://www.youtube.com/watch?v=yqn9gmieBn4 | I me mine - The Beatles (LYRICS/LETRA) [Original] | |
The Beatles | Im looking through you | imlooking | https://www.youtube.com/watch?v=Mi5ODY-vIzI | The Beatles - I'm Looking Through You | |
The Cure | In between days | inbetween | https://www.youtube.com/watch?v=scif2vfg1ug | The Cure - In Between Days | |
The Beatles | In my life | inmylife | https://www.youtube.com/watch?v=meo_Y72T5ZU | In My Life - The Beatles | |
Astrud Gilberto | Insensatez | insensatez | https://www.youtube.com/watch?v=XxVWqOdn150 | Astrud Gilberto - How Insensitive | |
Pink Floyd | Interstellar overdrive | interstellar | https://www.youtube.com/watch?v=4o2sA0vpA-4 | Pink Floyd - Interstellar Overdrive [HQ] | |
Pink Floyd | In the flesh | intheflesh | https://www.youtube.com/watch?v=j7VBbWuC_zM | ♫ Pink Floyd - In The Flesh [Lyrics] | |
Glenn Miller | In the mood | inthemood | https://www.youtube.com/watch?v=_CI-0E_jses | Glenn Miller - In The Mood [HQ] | |
Depeche Mode | In your room | inyourroom | https://www.youtube.com/watch?v=p2QP-L-JHtY | Depeche Mode - In Your Room | |
Jobim and Moraes | Garota de Ipanema | ipanema | https://www.youtube.com/watch?v=pUdnWMaysJs | Garota de Ipanema - Tom Jobim | |
The Beatles | I saw her standing there | isawher | https://www.youtube.com/watch?v=wLNQ8EfTiJs | THE BEATLES - I Saw Her Standing There | |
Sergio Mendes trio | She is a Carioca | iscarioca | https://www.youtube.com/watch?v=W9b0Uq1ut2k | Sergio Mendes - Ela é carioca | |
Pink Floyd | Is there anybody out there | isthereany | https://www.youtube.com/watch?v=fNLhxKpfCnA | Pink Floyd - Is There Anybody Out There? | |
Kraftwerk | Its more fun to compute | itsmorefun | https://www.youtube.com/watch?v=ZbGXy1b_TSY | Kraftwerk - Its More Fun To Compute (Computerworld-Tour-Version) | |
Depeche Mode | Its no good | itsnogood | https://www.youtube.com/watch?v=stpaq27-V70 | Depeche Mode - It's No Good | |
The Cure | Its not you | itsnotyou | https://www.youtube.com/watch?v=BVI40nYsSqQ | The Cure - It's not you | |
The Beatles | I want to hold your hand | iwannahold | https://www.youtube.com/watch?v=-CHq-Wjkc5M | The Beatles Revival - I Want To Hold Your Hand | |
The Beatles | I want you | iwantyou | https://www.youtube.com/watch?v=qvKxqmRuhEY | The Beatles - I Need You | |
The Beatles | I will | iwill | https://www.youtube.com/watch?v=IJ6bAHOvPH0 | The Beatles - I Will | |
Pink Floyd | Jugband blues | jugband | https://www.youtube.com/watch?v=IB8EPySbU1I | Pink Floyd - Jugband Blues | |
The Cure | Jumping someone elses train | jumping | https://www.youtube.com/watch?v=GGbzdXtsAeI | The Cure - Jumping Someone Else's Train | |
Depeche Mode | Just cant get enough | justcanget | https://www.youtube.com/watch?v=foDox5lshSs | Depeche Mode - Just can't get enough | |
The Cure | Just like heaven | justlikeh | https://www.youtube.com/watch?v=n3nPiBai66M | The Cure - Just Like Heaven | |
John Lennon | Instant karma | karma | https://www.youtube.com/watch?v=oZ70BRxi27Y | John Lennon - Instant Karma | |
Cole Porter | I get a kick out of you | kickout | https://www.youtube.com/watch?v=wTQhDs7Ah34 | I get a kick out of you - Cole Porter | |
The Cure | Killing an arab | killingarab | https://www.youtube.com/watch?v=SdbLqOXmJ04 | The Cure - Killing an arab | |
Bob Dylan | Knocking on heavens door | knockinonh | https://www.youtube.com/watch?v=x9wirocZ32A | Bob Dylan And Tom Petty - Knocking On Heavens Door (1986) | |
The Beatles | Do you want to know a secret | knowsecret | https://www.youtube.com/watch?v=n6ZNwD5R7i0 | The Beatles - Do You Want To Know A Secret | |
The Cure | Kyoto song | kyoto | https://www.youtube.com/watch?v=VuEXyjBNlgI | The Cure - Kyoto Song | |
Tad Dameron | Lady Bird | ladybird | https://www.youtube.com/watch?v=Vo_30jsYS4k | Tadd Dameron Sextet - Lady Bird | |
Labelle | Lady Marmalade | ladymarm | https://www.youtube.com/watch?v=cdxCurfPEoI | Lady Marmalade - Labelle (Lyrics) | |
The Cure | Lament | lament | https://www.youtube.com/watch?v=bvkSwtFMM44 | The Cure - Lament | |
Pink Floyd | Learning to fly | learning2fly | https://www.youtube.com/watch?v=2mKDvp7MavQ | PINK FLOYD - Learning To Fly | |
Lluis Llach | Lestaca | lestaca | https://www.youtube.com/watch?v=aX4eZ1fpYwA | Lluis Llach - L'Estaca | |
The Beatles | Let it be | letitbe | https://www.youtube.com/watch?v=7P6X3IWLECY | The Beatles - Let it be | |
Depeche Mode | Lie to me | lietome | https://www.youtube.com/watch?v=FOtpNeLtleQ | Depeche Mode - Lie to Me | |
The Doors | Light my fire | lightmyfi | https://www.youtube.com/watch?v=cq8k-ZbsXDI | The Doors - Light My Fire | |
Depeche Mode | Little 15 | little15 | https://www.youtube.com/watch?v=cfD2UagCSDg | Depeche Mode - Little 15 | |
The Beatles | With a little help from my friends | littlehelp | https://www.youtube.com/watch?v=YIizdazLTeU | The Beatles - With a Little Help From My Friends | |
Paul McCartney and Wings | Live and let die | liveandlet | https://www.youtube.com/watch?v=JK2hKzZss5Y | Paul McCartney & WINGS - Live And Let Die | |
Bon Jovi | Livin on a prayer | livinprayer | https://www.youtube.com/watch?v=lDK9QqIzhwk | Bon Jovi - Livin' On A Prayer | |
Genesis | Los endos | losendos | https://www.youtube.com/watch?v=3EWa_yV1JDE | Genesis - Los Endos | |
The Cure | The love cats | lovecats | https://www.youtube.com/watch?v=OylJq6L-Wd0 | The Love Cats - the cure | |
The Beatles | Lovely Rita | lovelyrita | https://www.youtube.com/watch?v=a9yRTKmVAHc | Lovely Rita - The Beatles (LYRICS/LETRA) [Original] | |
Elvis Presley | Love me tender | lovemetend | https://www.youtube.com/watch?v=6iVypRfyBfc | Elvis Presley - Love Me Tender | |
The Cure | Love song | lovesong | https://www.youtube.com/watch?v=hXCKLJGLENs | The Cure - Lovesong (Official Music Video) | |
The Beatles | Lucy in the sky with diamonds | lsd | https://www.youtube.com/watch?v=mgNYK96lQOg | The Beatles - Lucy in the Sky with Diamonds | |
Pink Floyd | Lucifer Sam | lucifersam | https://www.youtube.com/watch?v=4Gc-phyk7G0 | Pink Floyd - Lucifer Sam | |
The Cure | Lullaby | lullaby | https://www.youtube.com/watch?v=eUDNAnmBi7o | [Lyrics] Lullaby - The Cure | |
The Beatles | Lady Madonna | madonna | https://www.youtube.com/watch?v=uLRiGX3L-kw | The Beatles - Lady Madonna | |
The Beatles | Magical mystery tour | magical | https://www.youtube.com/watch?v=K2xpbKBuTEw | The Beatles - Magical Mystery Tour (Trailer) | |
Kraftwerk | The man machine | manmachin | https://www.youtube.com/watch?v=cQe9eK_4U0U | Kraftwerk - The Man Machine | |
Jimmy Cliff | Many rivers to cross | manyrive | https://www.youtube.com/watch?v=SF3IktTk_pQ | Jimmy Cliff - Many Rivers To Cross | |
Depeche Mode | Master and servant | masterand | https://www.youtube.com/watch?v=LZ-gO5wG2Ls | Depeche Mode - Master And Servant | |
The Beatles | Maxwells silver hammer | maxwells | https://www.youtube.com/watch?v=TNzcpQLPq3M | The Beatles - Maxwell's Silver Hammer (Karaoke) | |
The Cure | Maybe someday | maybesom | https://www.youtube.com/watch?v=9MJwc0jUZnI | Maybe Someday - The Cure | |
The Cure | Meathook | meathook | https://www.youtube.com/watch?v=KghR_fHjFxI | The Cure - Meathook | |
Joan Manuel Serrat | Mediterraneo | mediterran | https://www.youtube.com/watch?v=_w2WOHs9wG4 | joan manuel serrat - mediterraneo | |
Andrew Lloyd Webber | Memory | memory | https://www.youtube.com/watch?v=kjgDxfqJci0 | MEMORY - Andrew Lloyd Webber - Elaine Paige | |
The Police | Message in a bottle | messbott | https://www.youtube.com/watch?v=ObL3L6MRvN4 | The Police - Message in a Bottle | |
Kraftwerk | Metall auf metall | metalonme | https://www.youtube.com/watch?v=JlatOPOMlyA | Kraftwerk - Metall auf Metall (1977) | |
Astor Piazzolla | Michelangelo | michelang | https://www.youtube.com/watch?v=tfzcPJQ8DhQ | Astor Piazzolla - Michelangelo 70 | |
The Beatles | Michelle | michelle | https://www.youtube.com/watch?v=_64CVdkjLQU | The Beatles - Michelle | |
Barret Strong | Money (thats what I want) | money | https://www.youtube.com/watch?v=yeVx1C73o8k | Barrett Strong - Money (That's What I Want) | |
Pink Floyd | Money | money_pf | https://www.youtube.com/watch?v=eJV6aR6ZLtA | Pink Floyd - Money (lyrics) | |
Depeche Mode | Monument | monument | https://www.youtube.com/watch?v=3yJSZ86hf1w | Depeche Mode - Monument 2013 | |
Pink Floyd | Let there be more light | morelight | https://www.youtube.com/watch?v=wVjObrcP7SQ | Pink Floyd - Let There Be More Light | |
Pink Floyd | Mother | mother | https://www.youtube.com/watch?v=wBkTUzKAiXQ | Pink Floyd Mother | |
The Beatles | Mother natures son | mothernat | https://www.youtube.com/watch?v=HmeENEUM6G4 | The Beatles - Mother Natures Son ( Explained) The HollyHobs | |
The Marvelets | Please Mr Postman | mrpostman | https://www.youtube.com/watch?v=qeAIz_sTCqE | The Marvelous Marvelettes - Please Mr Postman | |
Kraftwerk | Musique non stop | musicnon | https://www.youtube.com/watch?v=MXxLjhvoQSE | Kraftwerk - Musique Non Stop | |
John Lennon | Oh my love | mylove | https://www.youtube.com/watch?v=4P6Jpv4wT3I | John Lennon - Oh My Love (1971) | |
George Harrisson | My sweet lord | mysweetlord | https://www.youtube.com/watch?v=A2qJG7LdpLE | George Harrison My Sweet Lord | |
Frank Sinatra | My way | myway | https://www.youtube.com/watch?v=LQzFT71LCuc | Frank Sinatra - My way (legendado) | |
Aretha Franklin | You make me feel like a natural woman | naturalwom | https://www.youtube.com/watch?v=q9nSU2hAqK4 | Aretha Franklin - (You Make Me Feel Like) A Natural Woman | |
The Beatles | You never give me your money | nevergive | https://www.youtube.com/watch?v=dyqhLNooLqA | You never give me your money - The Beatles (LYRICS/LETRA) [Original] | |
Depeche Mode | Never let me down again | neverletme | https://www.youtube.com/watch?v=qZSi6aPDzhQ | Depeche Mode - Never let me down | |
The Jackson 5 | Never can say goodbye | neversayg | https://www.youtube.com/watch?v=IvmqYZr0RFo | Jackson 5 - Never Can Say Goodbye | |
Liza Minnelli | New York New York | newyork | https://www.youtube.com/watch?v=kn6McMsKRGs | New York, New York - Liza Minnelli 1982 | |
Fred Astaire | Night and day | nightday | https://www.youtube.com/watch?v=oiZndhOyk64 | Fred Astaire - Night and Day | |
Pink Floyd | The nile song | nilesong | https://www.youtube.com/watch?v=NQWmVHWQ6RI | Pink Floyd - The Nile Song | |
Pink Floyd | Nobody home | nobodyho | https://www.youtube.com/watch?v=IC2HGTHkqnU | Pink Floyd - Nobody Home | |
Luz Casal | No me importa nada | nomeimpor | https://www.youtube.com/watch?v=YkS-ttHspLs | Luz Casal - No me importa nada | |
The Beatles | Norwegian wood | norwegian | https://www.youtube.com/watch?v=lY5i4-rWh44 | The Beatles - Norwegian Wood | |
Metallica | Nothing else matters | nothing | https://www.youtube.com/watch?v=waBb-UM5m4g | Metallica - Nothing Else Matters | |
Sinnead O Connor | Nothing compares to you | nothingcom | https://www.youtube.com/watch?v=r6Q4Q5Hnr-E | Sinead O Connor Nothing Compares To You Lyrics | |
Depeche Mode | But not tonight | nottonigh | https://www.youtube.com/watch?v=YrzPAiKEu6s | Depeche Mode - But not tonight | |
The Beatles | Nowhere man | nowhere | https://www.youtube.com/watch?v=TGGphnDMVDI | The Beatles - Nowhere Man | |
Bob Marley | No woman no cry | nowomanno | https://www.youtube.com/watch?v=tzkG6Xu6lUE | Bob Marley - no woman no cry | |
Kraftwerk | Nummern | numbers | https://www.youtube.com/watch?v=4YPiCeLwh5o | Kraftwerk - Numbers | |
Joao Gilberto | O amor em paz | oamoremp | https://www.youtube.com/watch?v=BhTZs_wBT1A | Joao Gilberto - O Amor Em Paz | |
The Beatles | Ob la di ob la da | obladi | https://www.youtube.com/watch?v=_J9NpHKrKMw | Ob-La-Di, Ob-La-Da (Remastered 2009) | |
The Beatles | Oh darling | ohdarling | https://www.youtube.com/watch?v=cUeJdVV8yys | Oh Darling - The Beatles (Cover) | |
Kraftwerk | Ohm sweet ohm | ohmsweet | https://www.youtube.com/watch?v=QLwEG3cdeRw | Kraftwerk - Ohm Sweet Ohm | |
U2 | One | one | https://www.youtube.com/watch?v=ftjEcrrf7r0 | U2 - One | |
Pink Floyd | One of my turns | oneofmytu | https://www.youtube.com/watch?v=BOay-7aqLks | Pink Floyd - One Of My Turns | |
Pink Floyd | One of these days | oneofthese | https://www.youtube.com/watch?v=Ea_j7Lc9SYM | Pink Floyd - One of These Days | |
The Beatles | Im only sleeping | onlysleeping | https://www.youtube.com/watch?v=T0a1R0Q3zYw | I'm Only Sleeping - The Beatles | |
The Platters | Only you | onlyyou | https://www.youtube.com/watch?v=wg9tA1JkaUE | The Platters - Only You | |
Pink Floyd | On the run | ontherun | https://www.youtube.com/watch?v=VouHPeO4Gls | Pink Floyd - On The Run | |
Joao Gilberto | O Pato | opato | https://www.youtube.com/watch?v=JB28oT6KyIY | O pato - João Gilberto | |
Genesis | Your own special way | ownspecia | https://www.youtube.com/watch?v=ykaEysI4KYA | Genesis - Your Own Special Way | |
The Beatles | Paperback writer | paperback | https://www.youtube.com/watch?v=yYvkICbTZIQ | The Beatles - Paperback Writer | |
Joan Manuel Serrat | Para la libertad | paralalib | https://www.youtube.com/watch?v=A0iThjuVNTs | Joan Manuel Serrat - Para la libertad | |
The Beatles | Penny lane | pennylane | https://www.youtube.com/watch?v=S-rB0pHI9fU | The Beatles - Penny Lane | |
Depeche Mode | People are people | peopleare | https://www.youtube.com/watch?v=5Y8ZSKCEBCQ | Depeche Mode - People Are People | |
Depeche Mode | Personal Jesus | personal | https://www.youtube.com/watch?v=uSiSVlgAwMI | Depeche Mode - Personal Jesus | |
Depeche Mode | Photographic | photograp | https://www.youtube.com/watch?v=wkKueyJaA0A | Depeche Mode - Photographic | |
The Cure | Pictures of you | picturesof | https://www.youtube.com/watch?v=UmFFTkjs-O0 | The Cure - Pictures Of You | |
The Cure | Piggy in the mirror | piggyinthe | https://www.youtube.com/watch?v=c7-oBPZVQ6E | THE CURE - Piggy In The Mirror | |
Pink Floyd | Pigs on the wing | pigswing | https://www.youtube.com/watch?v=BUGBZ1VUMhY | Pink Floyd - Pigs on the Wing (part 1 & 2) | |
The Cure | Plainsong | plainsong | https://www.youtube.com/watch?v=YSaNXpD49Qw | The Cure - Plainsong (1989) | |
The Cure | Plastic passion | plasticpas | https://www.youtube.com/watch?v=hDzWTOaipQc | The Cure - Plastic Passion | |
The Cure | Play for today | playtoday | https://www.youtube.com/watch?v=28B7Q53SaQs | The Cure - Play For Today | |
Depeche Mode | Pleasure Little Treasure | pleasureli | https://www.youtube.com/watch?v=did37kTTba8 | Depeche Mode - Pleasure Little Treasure | |
Pink Floyd | Point me at the sky | pointme | https://www.youtube.com/watch?v=T0YcmdMMs3Y | Pink Floyd - Point Me At the Sky | |
Depeche Mode | Policy of truth | policytruth | https://www.youtube.com/watch?v=7L1IAIM6e_0 | Depeche Mode - Policy of Truth | |
The Beatles | Polythene Pam | polytheme | https://www.youtube.com/watch?v=Cb0dTdTeHMU | Polythene Pam (Remastered 2009) | |
The Cure | Pornography | pornography | https://www.youtube.com/watch?v=SfMQMxN4NO0 | The Cure - Pornography | |
Roy Orbison | Oh pretty woman | prettywo | https://www.youtube.com/watch?v=gy9CtTYMwAo | Roy Orbison - Oh Pretty Woman 1964 | |
The Cure | Primary | primary | https://www.youtube.com/watch?v=0xrZ61cuKLk | The Cure - Primary | |
The Beatles | Dear Prudence | prudence | https://www.youtube.com/watch?v=LA3oSBI5KN0 | The Beatles - Dear Prudence (Demo) | |
The Cure | Push | push | https://www.youtube.com/watch?v=iyOb-eFU1Ws | The Cure - Push Lyrics | |
Tom Jones | Whats new pussycat | pussycat | https://www.youtube.com/watch?v=JUI27WhoWBQ | Tom Jones - What's new pussycat | |
Kraftwerk | Radioactivity | radioactivi | https://www.youtube.com/watch?v=M0D7MBBI2Ik | Kraftwerk - Radioactivity | |
The Beatles | Rain | rain | https://www.youtube.com/watch?v=cK5G8fPmWeA | The Beatles - Rain | |
Antonio Carlos Jobim | Retrato em branco e preto | retratoem | https://www.youtube.com/watch?v=t4pgR6HwArU | Antonio Carlos Jobim & Elis Regina - Retrato em Branco e Preto | |
The Beatles | Revolution 1 | revolution | https://www.youtube.com/watch?v=nsRyQ8JdbTs | The Beatles - Revolution 1 | |
The Beatles | Baby youre a rich man | richman | https://www.youtube.com/watch?v=R-WOaNA6Bfs | BABY YOURE RICH MAN - THE BEATLES | |
The Beatles | The long and winding road | road | https://www.youtube.com/watch?v=KJvXzPQSca0 | The Long And Winding Road - The Beatles | |
The Beatles | Rocky Raccoon | rocky | https://www.youtube.com/watch?v=5_qMUFNmTq4 | The Beatles - Rocky Raccoon (Karaoke) | |
The Police | Roxanne | roxanne | https://www.youtube.com/watch?v=WXzFCS72QIA | The Police - Roxanne | |
The Beatles | Run for your life | run4yourlife | https://www.youtube.com/watch?v=WfktSTXlku0 | Run For Your Life - The Beatles (Lyrics) | |
Pink Floyd | Run like hell | runlikehe | https://www.youtube.com/watch?v=lKgOe1Rl8YY | Pink Floyd - Run Like Hell (Live) | |
Depeche Mode | Sacred | sacred | https://www.youtube.com/watch?v=jNXSHrhJekU | Depeche Mode - Sacred | |
Antonio Carlos Jobim | Samba de uma nota so | samba1nota | https://www.youtube.com/watch?v=tWwnH9xAeoU | Antonio Carlos Jobim - Samba De Uma Nota | |
Vinicius de Moraes and Toquinho | Samba da Bencao | sambabenc | https://www.youtube.com/watch?v=Fz0eddwTjnk | Samba da Benção - Vinicius de Moraes | |
Tamba trio | Samba da minha terra | sambaterra | https://www.youtube.com/watch?v=xOGFdvGb8sg | Tamba Trio - Samba da minha terra | |
The Rolling Stones | Satisfaction | satisfaction | https://www.youtube.com/watch?v=i0MyKX3zqS4 | The Rolling Stones - Satisfaction (LIVE) HD | |
Pink Floyd | A saucerful of secrets | saucerful | https://www.youtube.com/watch?v=YLW0n2sLCG4 | Pink Floyd - A Saucerful Of Secrets | |
Simon and Garfunkel | Scarborough fair | scarborou | https://www.youtube.com/watch?v=5AwsrrROCx4 | Simon and Garfunkel - Scarborough Fair Remastered study (HQ audio) | |
Metallica | Seek and destroy | seekdestr | https://www.youtube.com/watch?v=cGTwYw9a8Lg | Metallica - Seek and Destroy | |
The Beatles | I have just seen a face | seenaface | https://www.youtube.com/watch?v=1CEZ7KHdApE | The Beatles - I've Just Seen A Face | |
Pink Floyd | Set the controls for the heart of the sun | setcontrols | https://www.youtube.com/watch?v=8RbXIMZmVv8 | Pink Floyd - Set The Controls For The Heart Of The Sun | |
The Beatles | Sexy Sadie | sexysadie | https://www.youtube.com/watch?v=FLJ8Md4yCXo | The Beatles - Sexy Sadie | |
The Beatles | Sgt Peppers lonely hearts club band | sgtpeppers | https://www.youtube.com/watch?v=krnPj-jjpWY | THE BEATLES / SGT. PEPPERS LONELY HEARTS CLUB BAND 1967 | |
Depeche Mode | Shake the disease | shakedisea | https://www.youtube.com/watch?v=jwIxwRNbX6I | Depeche Mode - Shake the Disease | |
The Cure | Shake dog shake | shakedog | https://www.youtube.com/watch?v=_qg6xNslnpM | THE CURE - SHAKE DOG SHAKE | |
The Beatles | She came in through the bathroom window | shecame | https://www.youtube.com/watch?v=GTBQhejb1kA | She came in through the bathroom window - The Beatles (LYRICS/LETRA) [Original] | |
Pink Floyd | Sheep | sheep | https://www.youtube.com/watch?v=rBDjXCdFNN8 | Pink Floyd - Sheep | |
The Beatles | She loves you | shelovesyou | https://www.youtube.com/watch?v=Jk1td3fQFN8 | THE BEATLES - SHE LOVES YOU | |
The Beatles | She said she said | shesaidshe | https://www.youtube.com/watch?v=U2T68PehW5k | The Beatles - She Said She Said cover | |
The Beatles | Shes leaving home | shesleaving | https://www.youtube.com/watch?v=0MnuU03fnl0 | Shes Leaving Home - The Beatles (C&C Cover) | |
Pink Floyd | Shine on you crazy diamond ミ Part 1 | shineonyou | https://www.youtube.com/watch?v=YMC0WYgIyFA | Pink Floyd - Shine On You Crazy Diamond 2011 (radio version) | |
Pink Floyd | The show must go on | showmust | https://www.youtube.com/watch?v=rXf1tYQPay8 | Pink Floyd - The Show Must Go On | |
Kraftwerk | Showroom dummies | showroom | https://www.youtube.com/watch?v=ZJ9Stc9ONyY | Kraftwerk - Showroom Dummies | |
The Cure | Siamese twins | siamese | https://www.youtube.com/watch?v=JIWHVpR2KLM | The Cure - Siamese Twins | |
Deep Purple | Smoke on the water | smokewtr | https://www.youtube.com/watch?v=zUwEIt9ez7M | Deep Purple - Smoke on the Water | |
Depeche Mode | Somebody | somebody | https://www.youtube.com/watch?v=jbaKcxTW7A8 | Depeche Mode - Somebody (Official Video) | |
The Beatles | Something | something | https://www.youtube.com/watch?v=UelDrZ1aFeY | The Beatles - Something | |
Depeche Mode | Sometimes | sometimes | https://www.youtube.com/watch?v=eb3Bh7CDHXc | Depeche Mode - Sometimes | |
Sergio Mendes trio | So nice | sonice | https://www.youtube.com/watch?v=B1qVuJJWsME | The Sergio Mendes Trio - So Nice (1966) | |
Kraftwerk | Spacelab | spacelab | https://www.youtube.com/watch?v=AHNUQOhEkAo | Kraftwerk - Spacelab | |
Pink Floyd | Speak to me breathe | breathe | https://www.youtube.com/watch?v=Z-wKXP7s2gY | Pink Floyd - Speak To Me & Breathe | |
Led Zeppelin | Stairway to heaven | stairway2h | https://www.youtube.com/watch?v=xbhCPt6PZIU | Led Zeppelin - Stairway to Heaven Live | |
Ben E King | Stand by me | standbyme | https://www.youtube.com/watch?v=TYDkQgKgghc | Ben E King - Stand By Me (1961) | |
Pink Floyd | Stop | stop | https://www.youtube.com/watch?v=WbgpTaD0IsQ | Pink Floyd - Stop (Live) | |
Ethel Waters | Stormy weather | stormywea | https://www.youtube.com/watch?v=clnbOg9-alo | Ethel Waters - Stormy Weather | |
The Cure | A strange day | strangeday | https://www.youtube.com/watch?v=c4mym0EFKM8 | The Cure - A Strange Day | |
Depeche Mode | Strange love | strangelove | https://www.youtube.com/watch?v=jPJIKjhW1yQ | Strange love (mix) - Depeche Mode | |
Frank Sinatra | Strangers in the night | strangers | https://www.youtube.com/watch?v=h5h_EW4odWw | Frank Sinatra - Strangers in the Night | |
The Beatles | Strawberry fields forever | strawberry | https://www.youtube.com/watch?v=HtUH9z_Oey8 | The Beatles - Strawberry Fields Forever | |
Depeche Mode | Stripped | stripped | https://www.youtube.com/watch?v=27yErWOeJ-o | Depeche Mode - Stripped | |
The Beatles | Yellow submarine | submarine | https://www.youtube.com/watch?v=m2uTFF_3MaA | The Beatles - Yellow Submarine | |
The Beatles | Sun king | sunking | https://www.youtube.com/watch?v=c5CUo-cMU3s | Beatles - Sun King | |
Depeche Mode | The sun and the rainfall | sunrainfall | https://www.youtube.com/watch?v=FWRfpC8s6XU | Depeche Mode - The Sun And The Rainfall | |
Stevie Wonder | You are the sunshine of my life | sunshineli | https://www.youtube.com/watch?v=yYj1DMHwFy4 | You Are The Sunshine of My Life - Stevie Wonder | |
Elvis Presley | Suspicious minds | suspicious | https://www.youtube.com/watch?v=RxOBOhRECoo | Elvis Presley - Suspicious Minds (Audio) | |
Kraftwerk | Taschenrechner | taschenre | https://www.youtube.com/watch?v=9_jNIowu1uk | Kraftwerk - Taschenrechner | |
The Beatles | Taxman | taxman | https://www.youtube.com/watch?v=hb-RPGhpBSI | Taxman - The Beatles | |
Nirvana | Smells like teen spirit | teenspirit | https://www.youtube.com/watch?v=zYxkezUr8MQ | Nirvana - Smells Like Teen Spirit (lyrics) | |
The Beatles | The End | theend | https://www.youtube.com/watch?v=oV8PSj-hQvw | The Beatles - The End | |
The Beatles | The fool on the hill | thefool | https://www.youtube.com/watch?v=PzNn9e6Undk | The Beatles - The Fool on the Hill | |
The Beatles | There is a place | thereplace | https://www.youtube.com/watch?v=fOPwJ1gi9NQ | The Beatles - There's A Place | |
Pink Floyd | The trial | thetrial | https://www.youtube.com/watch?v=L3M0uTIt3zA | Pink Floyd - The Trial | |
The Cure | The walk | thewalk | https://www.youtube.com/watch?v=gkCYh1x44G8 | The Cure - The Walk | |
The Beatles | The world | theworld | https://www.youtube.com/watch?v=RfBEqiEhCgM | The Word (Remastered 2009) | |
Depeche Mode | The things you said | thingssaid | https://www.youtube.com/watch?v=0D9SBAKoIvg | Depeche Mode - The things you said | |
The Beatles | Things we said today | thingswe | https://www.youtube.com/watch?v=QPnTy0Ef2G0 | The Beatles - Things We Said Today | |
Pink Floyd | The thin ice | thinice | https://www.youtube.com/watch?v=axGjKo2mg0E | Pink Floyd - The Thin Ice | |
The Beatles | Ticket to ride | ticket2ride | https://www.youtube.com/watch?v=SyNt5zm3U_M | The Beatles - Ticket To Ride | |
Perez Prado | Tico tico | ticotico | https://www.youtube.com/watch?v=wkHvvdmz-S4 | PEREZ PRADO Tico Tico | |
Pink Floyd | Time | time | https://www.youtube.com/watch?v=Z-OytmtYoOI | Pink Floyd - Time | |
The Beatles | Tomorrow never knows | tomorrow | https://www.youtube.com/watch?v=7UjvdZm-Tu8 | Tomorrow Never Knows - The Beatles | |
Kraftwerk | Tour de France | tourdefra | https://www.youtube.com/watch?v=Yt3p-F2x7rY | KRAFTWERK - TOUR DE FRANCE | |
Kraftwerk | Trans Europa express | transeuro | https://www.youtube.com/watch?v=XMVokT5e0zs | Kraftwerk - Trans Europa Express (original) | |
Antonio Carlos Jobim and Ellis Regina | Triste | triste | https://www.youtube.com/watch?v=UinhsGYbtOk | Antonio Carlos Jobim - Triste | |
The Beatles | Twist and shout | twistand | https://www.youtube.com/watch?v=ZKt6XbyJ8VU | The Beatles - Twist And Shout (lyrics) | |
The Beatles | Two of us | two | https://www.youtube.com/watch?v=V9DlrlPCPKo | The Beatles - Two of Us | |
Carole King | You have got a friend | ugotafrie | https://www.youtube.com/watch?v=BcJbzuyp6VY | You've Got A Friend (Lyrics) - Carole King | |
Cole Porter | I have got you under my skin | undermysk | https://www.youtube.com/watch?v=vKFAr2xaAmc | I've Got You Under My Skin - Cole Porter (ukulele cover) | |
Pink Floyd | Us and them | usandthem | https://www.youtube.com/watch?v=nDbeqj-1XOo | Pink Floyd - Us and Them | |
Genesis | Valley of the kings | valleyking | https://www.youtube.com/watch?v=guktbTwEWfo | Valley of the Kings | |
Pink Floyd | Vera | vera | https://www.youtube.com/watch?v=F7ZI1iqDa3s | Pink Floyd - Vera (HD) | |
Genesis | Visions of angels | visionsang | https://www.youtube.com/watch?v=_9zAwypdA9o | Genesis - Visions of Angels | |
Camilo Sesto | Vivir asi es morir de amor | vivirasies | https://www.youtube.com/watch?v=bo4g3J82in4 | CAMILO SESTO - VIVIR ASI ES MORIR DE AMOR | |
Genesis | Dance on a volcano | volcano | https://www.youtube.com/watch?v=TBcnjx05a1s | Genesis - Dance on a Volcano | |
Pink Floyd | Waiting for the worms | waiting4wo | https://www.youtube.com/watch?v=0bDY0DfEjmo | Pink Floyd - Waiting for the Worms | |
Depeche Mode | Waiting for the night | waitingnig | https://www.youtube.com/watch?v=vyrpRzdvp5U | Depeche Mode - Waiting for the Night | |
Genesis | Waiting room only | waitingroom | https://www.youtube.com/watch?v=-uTREb7g_HM | Genesis - The Waiting Room | |
The Beatles | I am the walrus | walrus | https://www.youtube.com/watch?v=19sAewJH22I | The Beatles - I Am The Walrus | |
John Lennon | Watching the weels | watchingwe | https://www.youtube.com/watch?v=uVXR2LYeFBI | Watching The Wheels - John Lennon | |
Bob Dylan | All along the watchtower | watchtower | https://www.youtube.com/watch?v=BzanOzyqgas | BOB DYLAN - All Along the Watchtower | |
Antonio Carlos Jobim | Wave | wave | https://www.youtube.com/watch?v=IRcOKz6fsr4 | Antonio Carlos Jobim - Wave | |
The Beatles | We can work it out | wecanwork | https://www.youtube.com/watch?v=Qyclqo_AV2M | The Beatles - We Can Work it Out | |
Pink Floyd | Welcome to the machine | welcome2 | https://www.youtube.com/watch?v=lt-udg9zQSE | Pink Floyd - Welcome To The Machine | |
Burt Bacharach | What the world needs now | whatthewo | https://www.youtube.com/watch?v=lSBrn6wTZSA | What The World Needs Now - Burt Bacharach | |
The Beatles | When I am sixty four | whenim64 | https://www.youtube.com/watch?v=HCTunqv1Xt4 | When I'm Sixty Four (Remastered 2009) | |
The Beatles | While my guitar gently weeps | whileguitar | https://www.youtube.com/watch?v=VJDJs9dumZI | The Beatles - While My Guitar Gently Weeps | |
The Cure | Why cant I be you | whycanti | https://www.youtube.com/watch?v=KDCJph1Nmeg | Why Can't I Be You - the cure | |
Lou Reed | Walk on the wild side | wildsidew | https://www.youtube.com/watch?v=oG6fayQBm9w | Lou Reed - Walk on the Wild Side (audio) | |
Gloria Gaynor | I will survive | willsurv | https://www.youtube.com/watch?v=Tth-8wA3PdY | I will survive - Gloria Gaynor | |
Henry Mancini | Days of wine and roses | wineroses | https://www.youtube.com/watch?v=wP9KxqyIpAA | DAYS OF WINE AND ROSES - HENRY MANCINI | |
Pink Floyd | Wish you were here | wishyouw | https://www.youtube.com/watch?v=IXdNnw99-Ic | Pink Floyd - Wish You Were Here | |
Louis Armstrong | What a wonderful world | wonderfulwo | https://www.youtube.com/watch?v=p42esUHqq8Q | Louis Armstrong - What A Wonderful World | |
The Beatles | It wont be long | wontbelong | https://www.youtube.com/watch?v=Wm-DzHlM2Jw | The Beatles - It Won't Be Long | |
Depeche Mode | World in my eyes | worldinmy | https://www.youtube.com/watch?v=KzqWe7uYo_A | Depeche Mode - World In My Eyes | |
The Beatles | Yer blues | yerblues | https://www.youtube.com/watch?v=F-PCq5duGQA | The Beatles - Yer Blues | |
The Beatles | Yes it is | yesitis | https://www.youtube.com/watch?v=XlVhCkvsIQs | Yes it is - The Beatles | |
The Beatles | Yesterday | yesterday | https://www.youtube.com/watch?v=jo505ZyaCbA | The Beatles - Yesterday | |
The Beatles | You cant do that | youcant | https://www.youtube.com/watch?v=vUIcEGH1ICE | The Beatles - You Can't Do That | |
Pink Floyd | Young lust | younglust | https://www.youtube.com/watch?v=1Rr1YTWMJrU | Pink Floyd - Young Lust | |
The Beatles | You wont see me | youwontse | https://www.youtube.com/watch?v=_Xe0C2WB5Og | The Beatles - You Won't See Me | |
Irving Berlin | White Christmas | whitechri | https://www.youtube.com/watch?v=w9QLn7gM-hY | Bing Crosby - White Christmas (1942) Original Version | |
The Kinks | You really got me | reallygotme | https://www.youtube.com/watch?v=qqJnhYabfsY | The Kinks - You Really Got Me (Live) | |
Steppenwolf | Born to be wild | bort2bwi | https://www.youtube.com/watch?v=rMbATaj7Il8 | Steppenwolf - Born To Be Wild | |
The Knack | My Sharona | mysharona | https://www.youtube.com/watch?v=bbr60I0u2Ng | The Knack - My Sharona | |
Judy Garland | Over the rainbow | overrainbow | https://www.youtube.com/watch?v=MXJ2Q0F8H80 | Judy Garland - Over the Rainbow 1955 | |
Lynyrd Skynyrd | Sweet home Alabama | sweethome | https://www.youtube.com/watch?v=ye5BuYf8q4o | Lynyrd Skynyrd - Sweet Home Alabama | |
Queen | We will rock you | wewillrock | https://www.youtube.com/watch?v=mhTRhAX_QBA | Queen - We Will Rock You | |
Steve Miller Band | Abracadabra | abracadabra | https://www.youtube.com/watch?v=7QyoRzZrF00 | Steve miller Band - Abracadabra | |
Robert Palmer | Addicted to love | addiclove | https://www.youtube.com/watch?v=XcATvu5f9vE | Robert Palmer - Addicted To Love | |
The Velvet Underground | All tomorrows parties | alltomorrows | https://www.youtube.com/watch?v=ugBFEbGyqwc | The Velvet Underground - All Tomorrow's Parties | |
Simon and Garfunkel | America | america | https://www.youtube.com/watch?v=IH9MMdaVZnE | Simon and Garfunkel - America (music video) | |
Procol Harum | A whiter shade of pale | shadepale | https://www.youtube.com/watch?v=Mb3iPP-tHdA | A Whiter Shade Of Pale - Procol Harum | |
Elliot Smith | Between the bars | betwebar | https://www.youtube.com/watch?v=5x8ue3-np2c | Elliot Smith Between The Bars | |
Styx | Blue collar man | blcollarman | https://www.youtube.com/watch?v=xArmqniFiJ8 | Styx - Blue Collar Man | |
The Beach Boys | Caroline No | carolineno | https://www.youtube.com/watch?v=aWPi8PLo33o | The Beach Boys - Caroline No (original speed) | |
Simon and Garfunkel | Cecilia | cecilia | https://www.youtube.com/watch?v=XdnjfxXpr7g | Simon and Garfunkel - Cecilia (Acoustic Cover) | |
The Everly Brothers | Claudette | claudette | https://www.youtube.com/watch?v=JvhkvT5KXdE | The Everly Brothers - Claudette | |
Eric Clapton | Cocaine | cocaine | https://www.youtube.com/watch?v=qYS732zyYfU | Eric Clapton - Cocaine | |
Neil Young | Dont let it bring you down | dontletit | https://www.youtube.com/watch?v=F7letrMf_nE | Neil Young - Don't Let It Bring You Down | |
Blue Nile | Downtown lights | downtown | https://www.youtube.com/watch?v=VchxhBww_7Q | The Blue Nile - The Downtown Lights | |
George Michael | Faith | faith | https://www.youtube.com/watch?v=C9iDBkJqxNg | Faith - George Michael | |
The Beach Boys | God only knows | godonlykn | https://www.youtube.com/watch?v=AOMyS78o5YI | The Beach Boys - God only knows | |
Fletwood Mac | Gold dust woman | golddustw | https://www.youtube.com/watch?v=xzxSIMaMIZQ | Fleetwood Mac - Gold Dust Woman | |
Styx | Grand illusion | grandillu | https://www.youtube.com/watch?v=nO62scTZ7Qk | Styx - Grand Illusion | |
Neil Young | Heart of gold | heartgold | https://www.youtube.com/watch?v=Eh44QPT1mPE | Neil Young - Heart Of Gold | |
The Temptations | I cant get next to you | icantgetnex | https://www.youtube.com/watch?v=uGYWpdFcH3g | The Temptations - I can't get next to you | |
The Boomtown Rats | I dont like mondays | inomondays | https://www.youtube.com/watch?v=-Kobdb37Cwc | The Boomtown Rats - I Don't Like Mondays | |
Aerosmith | I dont want to miss a thing | inomissath | https://www.youtube.com/watch?v=oR68oAtWY-c | Aerosmith Armageddon I dont want to miss a thing | |
John Lennon | I am losing you | imlosingu | https://www.youtube.com/watch?v=4K4RMp5Llbc | John Lennon - I'm Losing You (Subtitulada) | |
10cc | I am not in love | imnotinlov | https://www.youtube.com/watch?v=tdCY0CgMoq8 | 10cc - I m Not In Love | |
Run DMC | It is tricky | itstricky | https://www.youtube.com/watch?v=qBiA_po8TYM | Run DMC - It's Tricky | |
Styx | Lady | lady | https://www.youtube.com/watch?v=QumxOQganfo | Styx - Lady | |
Creedence Clearwater Revival | Lodi | lodi | https://www.youtube.com/watch?v=YpozyJk-ttc | Creedence Clearwater Revival - Lodi | |
Bob Dylan | Maggies farm | maggiesfa | https://www.youtube.com/watch?v=5GFJDq_TKWI | Bob Dylan - Maggies Farm (1978) | |
Extreme | More than words | morethwor | https://www.youtube.com/watch?v=zGpnREo076A | Extreme - More Than Words [Live] | |
The Who | My generation | mygenerat | https://www.youtube.com/watch?v=qN5zw04WxCc | The Who - My Generation | |
Celine Dion | My heart will go on | titanic | https://www.youtube.com/watch?v=GIWMRAoNv84 | Celine Dion - My Heart Will Go On | |
Velvet Underground | New age | newage | https://www.youtube.com/watch?v=PCK36JA_0-g | New Age - Velvet Underground | |
Roy Orbison and The Teen Kings | Ooby dooby | oobydooby | https://www.youtube.com/watch?v=amrdKqzMy24 | Roy Orbison and the Teen Kings - Ooby Dooby | |
Creedence Clearwater Revival | Proud Mary | proudmary | https://www.youtube.com/watch?v=_MqKttEyYKc | Creedence Clearwater Revival - Proud Mary | |
Prince and The Revolution | Purple rain | purplerain | https://www.youtube.com/watch?v=V2guxEr5EaI | Purple Rain - The Revolution | |
Lloyd Cole and The Commotions | Rattlesnakes | rattlesnakes | https://www.youtube.com/watch?v=gSc46sEZdl4 | Lloyd Cole And The Commotions - Rattlesnakes | |
Joe Jackson | Real men | realmen | https://www.youtube.com/watch?v=BA65lg1HWt4 | Joe Jackson - Real Men | |
Neil Diamond | Red red wine | redredwine | https://www.youtube.com/watch?v=nD-98ihfI5M | Neil Diamond - Red Red Wine | |
Big Star | September gurls | septgurls | https://www.youtube.com/watch?v=BNKSs1J38EA | Big Star - September Gurls | |
Paul Simon | Something so right | smthsorigt | https://www.youtube.com/watch?v=mQqAKAAkufE | Paul Simon - Something So Right | |
Queen | Stone cold crazy | stonecold | https://www.youtube.com/watch?v=AnGaEk0rZdU | Queen - stone cold crazy | |
Bryan Adams | Straight from the heart | straightfh | https://www.youtube.com/watch?v=-ebtjgK8NNU | Bryan Adams - Straight From The Heart | |
The Stranglers | Strange little girl | strangelitg | https://www.youtube.com/watch?v=L_YpmQbfVhc | The Stranglers - Strange Little Girl | |
The Rolling Stones | Street fighting man | streetfight | https://www.youtube.com/watch?v=Kc7IMC6RF24 | The Rolling Stones - Street Fighting Man | |
Bryan Adams | Summer of 69 | summer69 | https://www.youtube.com/watch?v=NgpcwYooLO0 | Bryan Adams - Summer Of 69 Live | |
Al Green | Take me to the river | takeme2riv | https://www.youtube.com/watch?v=KEasxe8hDs4 | Take Me to the River - Al Green | |
A Ha | Take on me | takeonme | https://www.youtube.com/watch?v=BrfRMHf62hs | A - Ha - Take On Me (Kygo Remix) | |
Simon and Garfunkel | The boxer | theboxer | https://www.youtube.com/watch?v=-hqdZ4AWSaI | Simon And Garfunkel - The Boxer | |
The Persuaders | Thin line between love and hate | thinlineb | https://www.youtube.com/watch?v=Ucob0quCdZk | The Persuaders - Thin Line Between Love And Hate | |
Tom Waits | Time | time_tw | https://www.youtube.com/watch?v=3_eR0IVSOhY | Tom Waits - Time | |
Aerosmith | Toys in the attic | toysattic | https://www.youtube.com/watch?v=mO-p_eSe8yU | Aerosmith - Toys In The Attic | |
The Clash | Train in vain | trainvain | https://www.youtube.com/watch?v=q3Yl4ehzX-o | The Clash - Train in Vain | |
ZZ Top | Tush | tush | https://www.youtube.com/watch?v=-jB_QM73Slk | ZZ Top - Tush | |
Bob Marley | Waiting in vain | waitvain | https://www.youtube.com/watch?v=WqodaRxEs60 | Waiting In Vain - Bob Marley (lyrics) | |
Aerosmith | Walk this way | walktway | https://www.youtube.com/watch?v=4c8O2n1Gfto | Aerosmith - Walk This Way (Audio) | |
Marvin Gaye | Whats going on | whatsgoon | https://www.youtube.com/watch?v=iH7qPzew7k4 | Whats Going On [Remix] - Marvin Gaye | |
Cream | White room | whiteroom | https://www.youtube.com/watch?v=yHs0XZ3iMfc | Cream - White Room (REACTION!!!) | |
Buddy Holly | That will be the day | thatllbetd | https://www.youtube.com/watch?v=9nrInsANB8Q | Buddy Holly & The Crickets - That'll Be The Day | |
The Everly Brothers | Love hurts | lovehurts | https://www.youtube.com/watch?v=ADhMExH8V-8 | Love Hurts - The Everly Brothers | |
Unknown | Canon in D major | canonpach | https://www.youtube.com/watch?v=4KJL1Tah_40 | Pachelbel - Canon in D Major | |
The Beatles | I will get you | illgetyou | https://www.youtube.com/watch?v=b9mrHdVmLCM | I'll get you - The Beatles (LYRICS/LETRA) [Original] | |
The Beatles | No reply | noreply | https://www.youtube.com/watch?v=QOOf-kmdBYc | The Beatles - No Reply | |
The Beatles | Not a second time | notsecond | https://www.youtube.com/watch?v=Qh0qElLgAVc | The Beatles - Not A Second Time | |
The Beatles | Octopuss garden | octopusga | https://www.youtube.com/watch?v=I4B1tHC02XQ | The Beatles HD - Octopus Garden | |
The Beatles | Old brown shoe | oldbrown | https://www.youtube.com/watch?v=hftzahi0Wms | The Beatles - Old Brown Shoe (Subtitulada) | |
The Beatles | Please please me | pleaseplease | https://www.youtube.com/watch?v=q3NTVkHwD5I | The Beatles - Please Please Me | |
The Beatles | PS I love you | psilove | https://www.youtube.com/watch?v=cRUdUlpZo9s | The Beatles - PS I Love You | |
The Beatles | Savoy Truffle | savoytru | https://www.youtube.com/watch?v=3hYybQ-dwkE | Savoy Truffle - Beatles | |
The Beatles | She is a woman | shesawom | https://www.youtube.com/watch?v=GsNgLiPyuCY | The Beatles HD - She is A Woman (Remastered) | |
Unknown | Beethoven 5 th symphony | beethoven5 | https://www.youtube.com/watch?v=6z4KK7RWjmk | Beethoven - Symphony No. 5 (FULL) | |
The Rolling Stones | Gimme shelter | gimmeshel | https://www.youtube.com/watch?v=SOVG2ZJ4lgQ | The Rolling Stones - Gimme Shelter | |
Sam Cooke | A change is gonna come | achangeis | https://www.youtube.com/watch?v=bg6tS5pDE0g | Sam Cooke - A Change Is Gonna Come [TR Sub] | |
Led Zeppelin | Whole lotta love | wholelot | https://www.youtube.com/watch?v=Mln0RciE2o0 | Led Zeppelin - Whole Lotta Love (HQ) | |
The Impressions | Keep on pushing | keeponpu | https://www.youtube.com/watch?v=HU-mEsCk3D8 | The Impressions - Keep On Pushing | |
Don Covay | Mercy mercy | mercym | https://www.youtube.com/watch?v=FEqZuFh_pdk | Don Covay - Mercy Mercy.wmv | |
Curtis Mayfield | People get ready | peoplegetr | https://www.youtube.com/watch?v=riGGtrYCBvA | Curtis Mayfield - People Get Ready (lyrics) | |
Chuck Berry | Thirty days | 30days | https://www.youtube.com/watch?v=kU_506KSI_s | Chuck Berry - Thirty Days | |
Soul Survivors | Expressway to your heart | expressway | https://www.youtube.com/watch?v=BBIFsOma5y4 | Soul Survivors - Expressway to Your Heart | |
Leadbelly | In the pines | inthepines | https://www.youtube.com/watch?v=LSfekpkZ2u0 | Leadbelly - In The Pines (1944) | |
Sly and The Family Stone | Sing a simple song | singsimple | https://www.youtube.com/watch?v=yYrbj9bSGeg | Sly and the family Stone - Sing a simple song | |
The Swan Silvertones | Mary dont you weep | madntwee | https://www.youtube.com/watch?v=UvOWoXrENAg | Mary Don't You Weep - The Swan Silvertones |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment