Automatic Playlist Generation

Total Page:16

File Type:pdf, Size:1020Kb

Automatic Playlist Generation Automatic Playlist Generation Xingting Gong and Xu Chen Stanford University [email protected] [email protected] I. Introduction mitigate the problem of a small training set. Instead of designing a machine learning problem to train only on Digital music applications have become an increasingly the user-provided seeds, the Microsoft group gathered popular means of listening to music. Applications such 174,577 songs from 14,198 albums as a kernel "meta"- as Spotify allows the user to add songs to his/her training set. The idea is that songs placed on the same playlist without downloading the song to his/her com- album are similar, and so it is appropriate to train the puter. The user can also be recommended songs by similarity metric on the set of 174,577 songs. However, Spotify through Spotify’s “Discover" option. Pandora— their selection of musical features were mostly qualita- an online radio—generates a radio station based on tive, and consisted of: genre (i.e. jazz, rap), subgenera a single user-inputted artist, genre, or composer. For (i.e. heavy metal), mood (i.e. angry, happy), style (i.e. these types of applications, applying algorithms to East coast rap, Gangsta rap) , rhythm type (i.e swing, learn user preferences is extremely important. In this disco), rhythmic description (i.e. funky, lazy), and vo- report, we explore two different methods to generate cal code (i.e. duet, instrumental). We felt that some of automatic playlists based on user-input: these features were not very well defined and seemed 1. Gaussian Process Regression (GPR): redundant in the musical qualities they were trying to This method takes in a set of seed songs (which can capture. The example features classified under genre, contain as little as a single song) inputted by the user to subgenera, and style, for example, seem extremely in- train a preference function that predicts the user pref- terchangeable amongst the 3 categories. For our first erence for a new song to be considered for the playlist. method using GPR, we aim to expand upon the Mi- 2. SVM + HMM: crosoft group’s work by applying KMT to data from the For this method, we assume that the user has gener- Million Song Dataset (described in section III). Briefly, ated a large number of seed songs (i.e. a user has liked the Million Song Dataset provides quantitative features hundreds of songs are pandora throughout the course such as tempo in beats-per-minute, or loudness in deci- of a year). For this method we also require a set of bels, which we will instead use as features to train the low-preference songs (i.e. the user has skipped hun- similarity metric. dreds of songs on pandora over a year). With a large Our second method falls into the more standard cat- training set of labelled data, we can apply classification egory of binary classification problems. More notably, algorithms such as SVM to determine if a new song we want to expand upon a standard SVM by modeling will be liked or disliked by the user. the timbre sequence as a HMM. There has been a lot Because we believe timbre to be an important predic- of research on using timbre to analyze complex instru- tor for music, we combine the SVM with an HMM to mental textures and even rhythmic styles [2-4]. Due model the timbre spectra. to the importance of timbre in characterizing sound, These methods are described in much greater detail in we believe that an SVM armed with HMM can be an section IV. effective classifier on large training sets. II. Related Work III. Dataset and Features Automatic Playlist Generation can be a difficult task We obtained our data from the Million Song Dataset, a due to the fact that the user will often provide only dataset compiled by Columbia University’s Laboratory a few seed songs. With such a small training set, it for the Recognition and Organization of Speech and can be difficult to train a sensible similarity metric. A Audio and The Echo Nest. The entirety of this dataset paper by Zheng et. al. at Microsoft Corporation de- consists of audio features and metadata for a million vised a novel "Kernel Meta-Training" (KMT) method to popular songs. For the sake of practicality, we down- 1 loaded the 10,000 song subset. IV. Methods The dataset contains approximately 54 features per track. Of this set we hand selected a subset of 5 fea- Gaussian Process Regression: The first of our main tures upon which to perform our analysis: methods makes use of Gaussian Process Regression. In a Gaussian process (GP), any finite subset of the points 1. Genre: Each track can consist of anywhere from 0 in our domain space satisfies a multivariate Gaussian to multiple user-supplied genre tags from the Mu- distribution. For automatic playlist generation, our sicBrainz website. To keep our analysis simple, we domain space consists of the possible user preferences randomly assigned each track to one its genre tags. f for some song which we wish to predict. To simplify Each track is therefore labelled by an integer that calculations, the mean of the GP is often assumed to be corresponds to a particular genre. 0, which makes sense in our case since it is reasonable 2. Tempo: The estimated tempo in BMP. To discretize to assume that in the space of all songs, a user will this feature, we binned the tempo values by incre- probably not want to listen to most of them. = f gN ments of 20. Let seedSongs xi i=1 be the set of user-inputted songs that serve as the "seed" for which we will gen- 3. Loudness: The average loudness of the song in dB. erate a playlist around, where xi denotes the feature We binned these values by increments of 5 dB. vector for seed song i. Let fi denote the true user pref- erence for these songs (though fi can in principle take 4. Decade: We included the decade in which the song on any real value, for simplicity we assume it is approx- was released as a feature. The motivation behind imately 1 with noise s if the user selects the song as a this is that songs produced in the same decade seed). Let f∗ denote the user preference for some song sound similar in style. x∗ that we want to predict. Then the joint distribution 5. Timbre: Timbre is represented as a 12 × N matrix [ fi, f∗] is Gaussian: of Mel-frequency cepstral coefficients, where N is f the number of segments. Each column of the matrix i = N (0, K) (1) f is thus a 12 dimensional vector representing the 12 ∗ MFCCs of a particular time segment. We processed where K is the covariance matrix. timbre differently for each of our two methods: Since [ fi, f∗] is jointly Gaussian, the conditional dis- tribution P( f j f ) is therefore also a Gaussian with GPR: For this method, we limited ourselves to tracks ∗ i parameters: with N ≥ 200 and randomly selected 200 rows of the timbre matrix for these tracks. P( f∗j fi) ∼ N (m, S) (2a) SVM + HMM: Since each column of the timbre ma- m = K(xi, x∗)K(xi, xi) fi (2b) trix is obtained from a different time segment, it −1 S = K(x∗, x∗) − K(x, x∗)K(x , x ) K(x∗, x ) (2c) makes more sense to represent the timbre matrix as i i i a hidden markov model. We trained an HMM for The preference function f∗ is then obtained by tak- each of the two song sets representing songs "liked" ing the posterior mean of this conditional distribution, and "disliked" by the user (i.e. added or not added resulting in: to the user’s Spotify playlist from the application’s N list of recommendations). The loglikelihoods of each f∗ = ∑ aiK(xi, x∗) (3a) track given each of the HMM models are then used i=1 as features for the SVM. N 2 −1 ai = ∑(K(xi, xj) + s dij) (3b) j=1 Table 1: Feature Vector Examples Lastly, since s is the noise in our GP, it is obtained by Features Example raw values Discretized/Processed values maximizing the log likelihood of obtaining the set of Genre rock, indie, pop, hip-hop Integer values 0 to 9 country, jazz, metal, folk seed songs: rap, dance 1 1 N Tempo 130.861, 122.174, 80.149 6, 6, 4 log p( f js) = − f TK−1 f − log jKj − log 2p (4) Year 1989, 1999, 2007 198, 199, 200 2 2 2 Avg. Loudness -13.366, -7.928, -15.367 -2, -1, -3 Timbre (GPR) 12 ×N matrix of MFCCs randomly selected 200 rows Thus, in order to learn the preference function we must Timbre (SVM+HM) 12 ×N matrix of MFCCs loglikelihoods under each HMM obtain a kernel K(x, y) that will serve as our similar- ity metric between two songs x and y. Once we have 2 the preference function, selecting a playlist becomes as thought of as a mask that allows us to compare a subset easy as computing the preference of each song under of features at a time. In other words, yn evaluates to 1 consideration and ranking the top M. only when the components of x and y are exactly equal For our project we tried two kernels, the first of (or less than a threshold) whenever the component of a which must be learned (a method called "Kernel Meta is 1.
Recommended publications
  • Legitimizing Pay to Play: Marketizing Radio Content Through a Responsive Auction Mechanism
    LEGITIMIZING PAY TO PLAY: MARKETIZING RADIO CONTENT THROUGH A RESPONSIVE AUCTION MECHANISM Alon Rotem* I. INTRODUCTION ............................................. 130 II. RADIO REGULATION BACKGROUND / HISTORY ........ 131 A. Government Enforced Public Interest Standards...... 131 B. Marketization of the Public Interest Doctrine ........ 133 C. The Impact of the 1996 Telecommunications Act on License Renewals .................................... 134 III. PAYOLA RULES ............................................ 135 A. Payola Rules Impact on the Recording Industry ...... 136 B. A Brief History of Payola Transgressions ............ 137 C. Falloutfrom Recent Payola Prosecution .............. 139 D. Modern Payola Rules Ambiguity ..................... 139 IV. IMPACT OF TECHNOLOGY AND AUCTIONS ON BROAD- CAST SCARCITY ............................................ 140 A. The Rise and Evolution of Technology-Driven A uctions ....... ..................................... 141 B. Applying the Auction Mechanism to Radio Content Programm ing ........................................ 141 * J.D. Candidate 2007, University of California, Berkeley, Boalt Hall School of Law. B.S. Managerial Economics, 2001, University of California, Davis. I would like to thank my wife, Nicole, parents, Doron and Batsheva, and brothers, Tommy and Jonathan for their love, support, and encouragement. Additionally, I would like to thank Professor Howard Shelanski for his wisdom and guidance in the "Telecommunications Law & Policy" class for which this comment was written. Special thanks to Paul Cohune, who has generously de- voted his time to editing this and virtually every paper I have written in the last 10 years, to Zach Katz for sharing his profound knowledge of the music industry, and to my future col- leagues at Ropes & Gray, LLP. I am also very grateful for the assistance of the editors of the UCLA Entertainment Law Review. Mr. Rotem welcomes comments at alon.rotem@ gmail.com.
    [Show full text]
  • Jeff Smith Head of Music, BBC Radio 2 and 6 Music Media Masters – August 16, 2018 Listen to the Podcast Online, Visit
    Jeff Smith Head of Music, BBC Radio 2 and 6 Music Media Masters – August 16, 2018 Listen to the podcast online, visit www.mediamasters.fm Welcome to Media Masters, a series of one to one interviews with people at the top of the media game. Today, I’m here in the studios of BBC 6 Music and joined by Jeff Smith, the man who has chosen the tracks that we’ve been listening to on the radio for years. Now head of music for BBC Radio 2 and BBC Radio 6 Music, Jeff spent most of his career in music. Previously he was head of music for Radio 1 in the late 90s, and has since worked at Capital FM and Napster. In his current role, he is tasked with shaping music policy for two of the BBC’s most popular radio stations, as the technology of how we listen to music is transforming. Jeff, thank you for joining me. Pleasure. Jeff, Radio 2 has a phenomenal 15 million listeners. How do you ensure that the music selection appeals to such a vast audience? It’s a challenge, obviously, to keep that appeal across the board with those listeners, but it appears to be working. As you say, we’re attracting 15.4 million listeners every week, and I think it’s because I try to keep a balance of the best of the best new music, with classic tracks from a whole range of eras, way back to the 60s and 70s. So I think it’s that challenge of just making that mix work and making it work in terms of daytime, and not only just keeping a kind of core audience happy, but appealing to a new audience who would find that exciting and fun to listen to.
    [Show full text]
  • Playlists from the Matrix — Combining Audio and Metadata in Semantic Embeddings
    PLAYLISTS FROM THE MATRIX — COMBINING AUDIO AND METADATA IN SEMANTIC EMBEDDINGS Kyrill Pugatschewski1;2 Thomas Kollmer¨ 1 Anna M. Kruspe1 1 Fraunhofer IDMT, Ilmenau, Germany 2 University of Saarland, Saarbrucken,¨ Germany [email protected], [email protected], [email protected] ABSTRACT 2. DATASET 2.1 Crawling We present a hybrid approach to playlist generation which The Spotify Web API 2 has been chosen as source of playlist combines audio features and metadata. Three different ma- information. We focused on playlists created by tastemak- trix factorization models have been implemented to learn ers, popular users such as labels and radio stations, as- embeddings for audio, tags and playlists as well as fac- suming that their track listings have higher cohesiveness in tors shared between tags and playlists. For training data, comparison to user collections of their favorite songs. Ex- we crawled Spotify for playlists created by tastemakers, tracted data includes 30-second preview clips, genres and assuming that popular users create collections with high high-level audio features such as danceability and instru- track cohesion. Playlists generated using the three differ- mentalness. ent models are presented and discussed. In total, we crawled 11,031 playlists corresponding to 4,302,062 distinct tracks. For 1,147 playlists, we have pre- view clips for their 54,745 distinct tracks. 165 playlists are curated by tastemakers, corresponding to 6,605 tracks. 1. INTRODUCTION 2.2 Preprocessing The overabundance of digital music makes manual compi- To use the high-level audio features within our model, we lation of good playlists a difficult process.
    [Show full text]
  • TELLIN' STORIES: the Art of Building & Maintaining Artist Legacies
    TELLIN’ STORIES The Art Of Building & Maintaining Artist Legacies TELLIN’ STORIES: The Art of Building & Maintaining Artist Legacies Introduction “A legacy has to be proactive and reactive at the same time and their greatest successes lie in simultaneously looking back to guide the way forward...” Legacies in music are a life’s work – constantly sometimes it can have a detrimental impact. It is evolving and surprising audiences. a high-wire act and a bad decision can unspool a lifetime of work, an image becomes frozen or the It does not follow, however, that just because you artists (and their art) are painted into a corner. have built a legacy in your career that it is set in stone forever. Legacies are ongoing work and they When an artist passes away, that work they have to be worked at, refined and maintained. achieved in their lifetime has to be carried on by the Existing audiences have to be held onto and new artist’s estate. Increasingly they have to be worked audiences have to be continually brought on board. and developed just like current living artists. Streaming and social media have made that always- Equally, it does not follow that everything an on approach more straightforward, but every step artist and their team does will add to or expand has to be carefully calculated and remain true to that legacy. Sometimes it can have no impact and the original vision of that artist. 2 TELLIN’ STORIES: The Art of Building & Maintaining Artist Legacies Contents 02 Introduction 04 Filing systems: the art of archive management 12 Inventory
    [Show full text]
  • Your Guide to Over 2500 Channels of Entertainment
    YOUR GUIDE TO OVER 2500 CHANNELS OF ENTERTAINMENT Voted World’s Best Infl ight Entertainment Digital Widescreen February 2017 for the 12th consecutive year! PLANET Explore the wonders ofEARTH II and more incredible entertainment NEW MOVIES | DOCUMENTARIES | SPORT | ARABIC MOVIES | COMEDY TV | KIDS | BOLLYWOOD | DRAMA | NEW MUSIC | BOX SETS | AND MORE ENTERTAINMENT An extraordinary experience... Wherever you’re going, whatever your mood, you’ll find over 2500 channels of the world’s best inflight entertainment to explore on today’s flight. 496 movies Information… Communication… Entertainment… THE LATEST MOVIES Track the progress of your Stay connected with in-seat* phone, Experience Emirates’ award- flight, keep up with news SMS and email, plus Wi-Fi and mobile winning selection of movies, you can’t miss and other useful features. roaming on select flights. TV, music and games. from page 16 STAY CONNECTED ...AT YOUR FINGERTIPS Connect to the OnAir Wi-Fi 4 103 network on all A380s and most Boeing 777s Move around 1 Choose a channel using the games Go straight to your chosen controller pad programme by typing the on your handset channel number into your and select using 2 3 handset, or use the onscreen the green game channel entry pad button 4 1 3 Swipe left and right like Search for movies, a tablet. Tap the arrows TV shows, music and ĒĬĩĦĦĭ onscreen to scroll system features ÊÉÏ 2 4 Create and access Tap Settings to Português, Español, Deutsch, 日本語, Français, ̷͚͑͘͘͏͐, Polski, 中文, your own playlist adjust volume and using Favourites brightness Many movies are available in up to eight languages.
    [Show full text]
  • Classical Revival in 2020
    THE CLASSICAL REVIVAL IN 2020 A report by BPI, Deezer and the Royal Philharmonic Orchestra Deezer, BPI and the Royal Philharmonic (RPO) present their first ever collaborative report which brings together streaming data with consumer opinion research. Using Deezer’s streaming data, the report highlights the demographic profile of Classical listeners across a range of countries and whether that has changed during lockdown. The market research data (provided by the RPO) reports on consumer attitudes to music during the period of home isolation. The RPO has seen online and social media audience engagement soar during lockdown and it has premiered several online concerts. All the organisations involved in this report share a commitment to broadening the range and appeal of Classical music to a broader and younger audience. Please address any questions to: Chris Green: [email protected] Hannah Wright: [email protected] INTRODUCTION RPO: Guy Bellamy: [email protected] • In a one-year period (April 2019- 2020), there was a 17% increase of Classical listeners on Deezer worldwide. • In the last year, almost a third (31%) of Deezer’s Classical listeners in the UK were under 35 years old, a much younger age profile than those who typically purchase Classical music. • RPO’s research found that under 35s were the most likely age group to have listened to orchestral music during lockdown (59%, compared to a national average of 51%). • There were a greater number of female KEY listeners in the UK listening to Deezer’s FINDINGS Classical playlists during lockdown. • Classical fans preferred mood-based music during lockdown.
    [Show full text]
  • The Revolution Will Not Be Televised…But It Will Be Streamed”: Spotify, Playlist Curation, and Social Justice Movements
    “THE REVOLUTION WILL NOT BE TELEVISED…BUT IT WILL BE STREAMED”: SPOTIFY, PLAYLIST CURATION, AND SOCIAL JUSTICE MOVEMENTS Melissa Camp A thesis submitted to the faculty at the University of North Carolina at Chapel Hill in partial fulfillment of the requirements for the degree of Master of Arts in the Department of Music in the School of Arts and Sciences. Chapel Hill 2021 Approved by: Mark Katz Aaron Harcus Jocelyn Neal © 2021 Melissa Camp ALL RIGHTS RESERVED ii ABSTRACT Melissa Camp: “The Revolution Will Not Be Televised…But It Will Be Streamed”: Spotify, Playlist Curation, and Social Justice Movements (Under the direction of Mark Katz) Since its launch in 2008, the Swedish-based audio streaming service Spotify has transformed how consumers experience music. During the same time, Spotify collaborated with social justice activists as a means of philanthropy and brand management. Focusing on two playlists intended to promote the Black Lives Matter movement (2013–) and support protests against the U.S. “Muslim Ban” (2017–2020), this thesis explores how Spotify’s curators and artists navigate the tensions between activism and capitalism as they advocate for social justice. Drawing upon Ramón Grosfoguel’s concept of subversive complicity (2003), I show how artists and curators help promote Spotify’s progressive image and bottom line while utilizing the company’s massive platform to draw attention to the people and causes they care most about by amplifying their messages. iii To Preston Thank you for your support along the way. iv ACKNOWLEDGMENTS I would first like to thank my thesis advisor, Mark Katz, for his dedication and support throughout the writing process, especially in reading, writing, and being the source of advice, encouragement, and knowledge for the past year.
    [Show full text]
  • Effects of Recommendations on the Playlist Creation Behavior of Users Iman Kamehkhosh, Geoffray Bonnin, Dietmar Jannach
    Effects of recommendations on the playlist creation behavior of users Iman Kamehkhosh, Geoffray Bonnin, Dietmar Jannach To cite this version: Iman Kamehkhosh, Geoffray Bonnin, Dietmar Jannach. Effects of recommendations on the playlist creation behavior of users. User Modeling and User-Adapted Interaction, Springer Verlag, 2019, 10.1007/s11257-019-09237-4. hal-02476936 HAL Id: hal-02476936 https://hal.archives-ouvertes.fr/hal-02476936 Submitted on 13 Feb 2020 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. User Modeling and User-Adapted Interaction https://doi.org/10.1007/s11257-019-09237-4 Effects of recommendations on the playlist creation behavior of users Iman Kamehkhosh1 · Geoffray Bonnin2 · Dietmar Jannach3 Received: 15 August 2018 / Accepted in revised form: 27 March 2019 © The Author(s) 2019 Abstract The digitization of music, the emergence of online streaming platforms and mobile apps have dramatically changed the ways we consume music. Today, much of the music that we listen to is organized in some form of a playlist, and many users of modern music platforms create playlists for themselves or to share them with others. The manual creation of such playlists can however be demanding, in particular due to the huge amount of possible tracks that are available online.
    [Show full text]
  • Big Daddy's Ultimate Playlist!
    BIG DADDY’S ULTIMATE PLAYLIST! It's simple. I scroll through my iPod and when I come upon an artist that I have at least 15 songs by, I then pick one AND ONLY ONE song to make THE ULTIMATE PLAYLIST. (The number next to the artist is how many songs I have by that artist on my I-pod) A AC/DC... 17... YOU SHOOK ME ALL NIGHT LONG ARETHA FRANKLIN... 27... RESPECT Came close to selecting the live DR. FEELGOOD off ARETHA IN PARIS, but there is no denying the power and majesty of RESPECT. After a gazillion listens, it STILL rocks. AL GREEN... 16... LET’S STAY TOGETHER ALANIS MORISSETTE... 15... THE COUCH What can I say? I loved her first two CD's which is how she ended up with EXACTLY 15 songs ARTIE SHAW... 21... DANCIN’ IN THE DARK B THE BAND... 18... RAG, MAMA RAG B-52S... 15... PLANET CLAIRE BARRY WHITE... 16... YOU’RE MY FIRST, MY LAST, MY EVERYTHING BEACH BOYS... 116... GIRLS ON THE BEACH I know what you're thinking, this should be GOD ONLY KNOWS or a million others, but this one just floors me with it's staggering harmonies and innocence and it's also one of the first Beach Boy tunes I ever heard . BEATLES... 198... YOU CAN’T DO THAT No, I'm not kidding. BEASTIE BOYS... 25... SURE SHOT BEN FOLDS... 32... SONG FOR THE DUMPED BENNY GOODMAN... 22... WHAT’S NEW BOB DYLAN... 115... LIKE A ROLLING STONE I could have easily went with Adam's pick or many others, but ROLLING STONE gives you six minutes worth of Bob.
    [Show full text]
  • Random Walk with Restart for Automatic Playlist Continuation and Query-Specific Adaptations
    Random Walk with Restart for Automatic Playlist Continuation and Query-Specific Adaptations Master's Thesis Timo van Niedek Radboud University, Nijmegen [email protected] 2018-08-22 First Supervisor Prof. dr. ir. Arjen P. de Vries Radboud University, Nijmegen [email protected] Second Supervisor Prof. dr. Martha A. Larson Radboud University, Nijmegen [email protected] Abstract In this thesis, we tackle the problem of automatic playlist continuation (APC). APC is the task of recommending one or more tracks to add to a partially created music playlist. Collaborative filtering methods for APC do not take the purpose of a playlist into account, while recent research has shown that a user's judgement of playlist quality is highly subjective. We therefore propose a system in which metadata, audio features and playlist titles are used as a proxy for its purpose, and build a recommender that combines these features with a CF-like approach. Based on recent successes in other recommendation domains, we use random walk with restart as our first recommendation approach. The random walks run over a bipartite graph representation of playlists and tracks, and are highly scalable with respect to the collection size. The playlist characteristics are determined from the track metadata, audio features and playlist title. We propose a number of extensions that integrate these characteristics, namely 1) title-based prefiltering, 2) title-based retrieval, 3) feature-based prefiltering and 4) degree pruning. We evaluate our results on the Million Playlist Dataset, a recently published dataset for the purpose of researching automatic playlist continuation.
    [Show full text]
  • Radio Doesn't Request Requests Anymore
    Radio Doesn't Request Requests Anymore in the country NEW YORK -Radio request lines are not what they used to There is a lot of variation in how program directors use One of the most successful programmers KWK -AM /WWWK -FM in St. L be. Once the backbone of Top 40 excitement, request lines are request lines, but practically no one permits these call -ins to day, Bobby Hattrik of for now an often important ingredient of radio research. have a direct and immediate effect on what is being played on shuns request lines as being even too unsophisticated Gone are the days when a listener would call his favorite Top the station, a Billboard survey reveals. search. a he says. "Vs do 40 station with a request and within a short time hear not only Why? Because group calling is not only teen, it is particularly "Request lines provide too small universe." our artists." Using a next -d the record but a playback of his conversation with the DJ. young teens, a group most stations don't want to attract today. call -outs to test our music and Today, probably most request lines are run by AOR stations. Some programmers also fear unscrupulous competition will dialing method (picking numbers at random from the pl une digit of the last unit of the pl one If a listener asks for a record not on a station's playlist, it simply call up asking for stiff records or a promotion person will load book and moving to the next week. I- rom won't get played.
    [Show full text]
  • Spotify Playlist to Accompany This Exhibition
    Decolonising the Arts Curriculum playlist A Spotify playlist to accompany this exhibition Spotify profile: LCC Library Special Collection You are invited to suggest songs for the playlist using the following criteria: Songs that express your identity or experience. Songs that challenge or resist the dominant culture. Songs you think we should hear. Please email: [email protected] Or tweet: @LCC_Library Or write your suggestions and put in suggestions box Song, Artist We Are All Prostitutes, The Pop Group Lonesome Death of Hattie Carroll, Bob Dylan Across 110th St, Bobby Womack Man in the Hills, Burning Spear Concrete Jungle, (or anything else of ‘Catch a Fire’) The Wailers Folsom Prison Blues, Johnny Cash Crap Rap 2/ Like to Blow, The Fall Four Women & Mississippi Goddam, Nina Simone Rumble Link, Wray Suspicion, The Originals Fade Away, Junior Byles War on the Bullshit, Osiris Ghost Town & Do Nothing, The Specials The Woolston Ferry, Gutta Percha And The Balladeers Mothership Connection (Star child) live version if possible , Parliament Space is the Place, Sun Ra Forgive the Cnts & Nigerians (Stop Giving out About), Jinx Lennon The Revolution will not be Televised, Gil Scott-Heron The Band played Waltzing Matilda, The Pogues One Nation Under A Groove & Who Says a Funk Band Can’t Play Rock, Funkadelic Bike, Pink Floyd Vitamin C, Can Looking Glass, The La’s Dirty Old Town, The Dubliners I Am A Cider Drinker, The Wurzels Back in Southampton (another personal favourite, Gutta Percha And The Balladeers Yardbird suite, Charlie
    [Show full text]