Skip to main content

The Ethnic Lyrics Fetcher tool

Abstract

The task of automatic retrieval and extraction of lyrics from the web is of great importance to different Music Information Retrieval applications. However, despite its importance, very little research has been carried out for this task. For this reason, in this paper, we present the Ethnic Lyrics Fetcher (ELF), a tool for Music Information Researchers, which has a novel lyrics detection and extraction mechanism. We performed two experiments to evaluate ELF’s lyrics extraction mechanism and its performance as a lyrics fetcher tool. Our experimental results show that ELF performs better than the current state of the art, using website-specific lyrics fetchers or manually retrieving the lyrics from the web.

1 Introduction

Song lyrics are used in many different types of music information retrieval (MIR) applications. Examples of MIR applications with song lyrics are Music Mood Identification [1],[2], Music Genre [3] and Mood [4] Classification, Artist Similarity [5],[6], Artist Style Identification [7], Enhancing Query By Humming Systems [8],[9], Automatic Recognition of Lyrics in Singing [10], among others [11]-[13]. Furthermore, the authors of [14] have shown that lyrics (at least in part) are the second most used in a MIR system and are also the second most desired information on such system.

The need for automated lyrics retrieval and extraction systems has been reported in several research papers. For example, in [15], the authors point out that due to some limitations on how they received their dataset (a list of song artist and song titles without blank spaces, e.g. ironmainden - fearofthedark), they were limited to using 5,631 lyrics out of 10,000 songs they had available.

In [16], the authors used a specialized online lyrics library (Leo’s Lyrics); however, they mentioned that in their experiments, direct searching did not always work for cover songs. For example, the system would only find the lyrics for the song ‘Smells Like Teen Spirit’ if the song artist provided was ‘Nirvana’. It would not find the lyrics if they provided ‘Tori Amos’ (who has recorded a cover of the song) as the song artist.

In the work of [17], the authors noted that their simple lyrics mining procedure failed to filter out all the non-text lyrics. In their approach, they examined the line of each html page to determine whether it contained lyrics-like text or not and then selected the longest sequence of lyrics-like text lines in the page. Any lyrics that were less than three lines or over 200 lines long were discarded.

In the work of [18], the authors created a lyrics dataset manually for the task of music genre classification. However, despite having available a private collection of about 12,000 songs, they only selected (randomly) 30 to 45 songs from each of the ten music genres available because of the inexistence of reliable automated tools to retrieve the lyrics for the whole collection.

Despite the importance of song lyrics to the different types of MIR applications and systems and the problems reported by several authors [15]-[18], to the best of the authors’ knowledge (as we shall see in Section 2), very little research has been carried out in the area of the automated lyrics retrieval from the web [19],[20].

The main contributions of this paper are the Ethnic Lyrics Fetcher (ELF) Systema (presented in Section 3) and its novel lyrics detection and extraction procedure (presented in Section 4). It should be noted that our system is named as Ethnic Lyrics Fetcher in the same sense the word ‘ethnic’ is used in Computational Ethnomusicology [21], i.e., our system is potentially able to retrieve lyrics for all of the world’s music. In order to evaluate ELF, we have performed two experiments. In the first experiment (Section 5), we evaluate the effectiveness of ELF’s novel lyrics extraction algorithm. In the second experiment (Section 6), we evaluate the effectiveness of ELF as an automated tool to retrieve lyrics from the web. Finally, in Section 7, we present the conclusions of this work and future research directions.

2 Related work

The task of automatically retrieving lyrics from the web presents two problems: The first problem is how to detect whether or not a given webpage contains the lyrics of a given song. The second problem is how to extract only the lyrics content from a webpage that contains the lyrics of a given song.

It is possible to avoid these two problems by using an online lyrics website that has an internal lyrics database such as LeosLyrics [22]. However, this approach has one main limitation, i.e., no matter how big the lyrics collection of a given website is, it will still have a limited number of song lyrics which may not contain the song lyrics the user is interested in. This is particularly true for new and/or non-mainstream songs.

Another approach that has been used by some researchers, in order to avoid these two problems, is to develop a website-specific automated lyrics fetcher, such as jLyrics [23]. This approach avoids the issue of manually retrieving and storing the desired lyrics but it is still limited to retrieving only the lyrics available in the website it was designed for. Also, in order to develop such an automated lyrics fetcher, it is necessary to know the website structure in order to correctly locate and extract the lyrics content from the website.

To the best of the authors’ knowledge, the only reported studies that are related to dealing with the two problems related to the task of automatic lyrics retrieval from the web are [19],[20]. The work of Knees et al. [20] is possibly the first reported work that deals with the problem of retrieving lyrics from the web. However, the main objective of their work was to use sequence alignment algorithms to produce one robust (i.e., typo-free) lyric for a given song. In [20], the authors used the Google search engine with queries containing the following information: song artist, song title, and the keyword ‘lyric’. In their pre-processing phase, they removed all HTML tags and links. Since, the authors were dealing with a different task, they could retrieve a collection of webpages and use co-relation methods in order to determine which webpages might have contained the lyrics of a given song.

In the work of [19], their main goal is to retrieve the lyrics from a given song. In order to search for lyrics, the authors also use the Google search engine and store the first 40 retrieved results of the query. Then, for each webpage, they use a regular expression-based approach to extract the lyrics content from the webpages.

It should be noted that in both works [19],[20], the authors used the same database of 258 songs, and although both papers mention the Evil Lyrics software [24], they did not make any experimental comparisons with it. The Evil Lyrics software is a plug-in used by several digital music players such as Winamp and iTunes. Although all the implementation details of the software are not available, the existing information about the software allows us to classify it as a hybrid approach to retrieve lyrics from the web. In the version of the software used in this work, the Evil Lyrics plug-in had a list of 437 websites which we assume that it knows their structure. If the lyrics are not found in one of these websites, it then searchers the web for the lyrics; however, no information is available about how this web search is performed by the software.

3 ELF system overview

Figure 1 presents an overview of the ELF system. The ELF system works as follows:

  1. 1.

    In the first step, the ELF system needs information about the song lyrics the user wants to retrieve. The ELF system requires that the user provides the song title information (mandatory) and song artist information (optional).

Figure 1
figure 1

Overview of the Ethnic Lyrics Fetcher (ELF) system.

  1. 2.

    In the second step, the ELF system pre-processes the song title and song artist information by applying case folding (e.g.,‘É’ becomes ‘é’) and accent removal (e.g., ‘é’ becomes ‘e’).

  2. 3.

    In the third step, the ELF system creates a query for the search engine. In this paper, we used the Google search engine, and the search queries have been constructed by concatenating the song title and artist information and by replacing all the white spaces in the resulting string with the plus (+) symbol. We also add to the search query a special keyword which is the the word ‘lyric’ in the language of the lyric the user is searching for.

  3. 4.

    In the fourth step, the ELF system process the JSON string returned by the Google application programming interface (API) to create a list of websites which may contain the lyrics the user is interested in.

  4. 5.

    In the fifth step, the ELF system uses its novel lyrics detection and extraction mechanism in order to identify if a given website contains a song lyrics or not.

If the website contains the song lyrics, the ELF system returns it to the user. Otherwise, it analyzes the next website on the list created in the fourth step.

Note that the ELF system can work with lyrics in any language that can be encoded using UTF-8.

4 ELF’s novel lyrics detection and extraction procedure

The ELF system employs a novel lyric detection and extraction procedure. The usual approach behind current lyrics extraction is to assume that the lyrics of a song are somewhere within the webpage where there are ends of line tags (i.e., <BR><BR> tags) [19]. One of the differences between ELF novel lyrics extraction procedure and the existing approaches is the way ELF uses all the html tags (including the <BR><BR> tags) to locate the lyrics within any webpage.

Before attempting to extract the lyrics from the webpage, the system verifies if the webpage does not come from the list of websites that are known to not have lyrics. If this is not the case, ELF’s lyric extraction procedure works as follows:

The first step is to store the retrieved webpage into a string.

The second step is to analyze the string looking for opening html tags with the exception of ‘<br<br’ (line break), ‘<p<p’ (paragraph), ‘</</’ (closing tag), and ‘<!–<!–’ (html comment). For each opening html tag found, do the following:

  1. 1.

    Create a new position in the lyric extraction vector;

  2. 2.

    Add all the content of the webpage until a new opening html tag is found.

After the webpage has been converted into the lyric extraction vector, ELF analyzes the lyric extraction vector counting the number of ‘<BR<BR’ tags in each position of the vector.

In order to decide what to output, the ELF lyric extraction procedure has threshold (θ), and it considers that any position in the lyric extraction vector that has a number of ‘<BR<BR’ tags higher than θ is the song lyrics and output it to the user.

If the song lyric to be shown to the user is empty, ELF considers that the lyric was not detected on the webpage given as input.

Figure 2 presents an example of the lyrics extraction procedure used by ELF with different θ values for the song ‘To rindo a toa’ by the Brazilian band ‘Falamansa’.

Figure 2
figure 2

An example of the lyric extraction procedure used by ELF with different theta values.

5 Evaluating ELF’s lyrics extraction procedure

In this section, we are interested in answering the following questions by using controlled experiments: (a) How well does ELF’s lyric extraction procedure (with different θ values) performs when compared against other approaches? (b) What value should be used as the θ value of ELF’s lyric extraction procedure?

5.1 Experimental settings

In order to evaluate ELF’s lyric extraction procedure, we manually verified 12 different websites which have lyrics for songs of the Latin Music Database (LMD) [25]. Each of the websites has a different way of marking the song lyrics content. Table 1 presents the list of websites we used in this experiment along with specific tag delimiters each website uses to identify the song lyrics content within their webpages.

Table 1 Lyrics websites and their lyrics identifier tags

In order to evaluate ELF’s lyric extraction procedure, we provide ELF with the full html page and compare its output (using different θ values) with the gold standard of each website. The gold standard of each website is obtained by creating a website-specific lyrics extractor which knows beforehand the special delimiter tags used in each website.

In order to measure how similar the output of ELF’s lyric extraction procedure (using different θ values) is with that of the gold standard in each website, we use the document similarity measure from the information retrieval field, known as cosine similarity [26]. The cosine similarity measure computes how similar two documents (lyrics in our case) are. The measure provides a value between 0 and 1. The higher the value, the more similar the two documents are. We also use the method presented in [19], which is, to the best of the authors’ knowledge, the reported state of the art and the lyrics obtained by using the Evil Lyrics software [24].

5.2 Experimental results

Table 2 presents the experimental results of the lyrics extraction mechanism used by ELF with different θ values, [19] and [24] for the 12 different websites presented in Table 1.

Table 2 Evaluation of ELF’s and the lyrics extraction approaches used in [[19]] and [[24]]

The analysis of Table 2 shows some interesting results. First is that for higher θ values, a higher value of overall similarity is obtained. This can be explained by the fact that a low value will simply return all the webpage content that has a <BR><BR> tag in the same position of the lyric extraction vector.

Second, we manually inspected the lyrics with higher θ values in order to understand why the similarity was not 1.00. Interestingly, we observed that some of the websites have among their structured lyrics some kind of promotional message such as ‘Ringtone - Send this ringtone to your cell phone!’ which was removed by the lyric extraction procedure used by ELF. In our experiments, this happened with the lyricsmania.com, 1songlyrics.com, lyricshall.com, and lyricsreg.com websites. Another observation that we made was that some websites such as lyricsoncall.com and 6lyrics.com have in the middle of the song lyrics the name of their website. This information was also removed by the lyric extraction procedure used by ELF. In the case of the vounessa.com.br website, it included the fields composer and music genre at the end of the lyrics which were also filtered out by ELF’s lyric extraction procedure.

Third, based on our experimental results, it seems that there is a trade-off between using a low value or a high value for θ. A low value might return everything, while a high value may filter out more than it should. Therefore, for the experiments in the next section, we employed the value of θ>3. Fourth, despite the value of θ used, the novel lyrics detection and extraction procedure used by ELF is better than the method proposed in [19] or the method used by the Evil Lyrics software.

6 Evaluating ELF as a lyrics retrieval system

In this section, we are interested in evaluating how well ELF performs as an online lyrics retrieval system. That is, we want to evaluate how well it performs by using a search engine API and its lyrics detection mechanism.

6.1 Experimental settings

In order to evaluate ELF as a online lyrics retrieval system, we have provided ELF with the song artist and song title information for all the songs available in the LMD [25]. The motivation behind using the LMD is that it contains songs with lyrics in English, Spanish, Brazilian Portuguese, and Spanglish (i.e., lyrics with words in English and Spanish).

In this experiment, we have used the Google API as ELF’s search engine for querying possible websites that may contain the lyrics for the song the user is looking for. As a baseline for ELF, we have implemented 12 website-specific lyrics fetchers (those listed in Table 1) that have a website-specific URL encoding and the lyrics-specific information. Table 3 presents the website structure for each of the 12 lyrics websites.

Table 3 Fixed structure of the 12 lyrics websites used as baselines

We also evaluate two versions of the ELF system. One version uses the song title and song artist information, referred to as ELFST+A, and the other version uses only the song title information, referred to as ELFST.

It should be noted that in the experiments reported in this section, the following websites have been listed in ELF as non-lyrics websites: ‘blogspot’, ‘wikipedia’, and ‘youtube’.

Additionally, in order to compare ELF with the current state-of-the-art technology in online lyrics fetching, we also present the performance of the Evil Lyrics software [24]. To make a fair comparison with ELF, we have also run the experiments with Evil Lyrics using song title and song artist information (referred to as EvilLyricsST+A) or using only song title information (referred to as EvilLyricsST).

6.2 Experimental results

Let us now evaluate ELF as a lyrics retrieval system by comparing the total number of lyrics retrieved by it with the other approaches. Table 4 presents the experimental results (broken down by music genre) when using ELFST+A, ELFST, the other 12 lyrics websites, and the two configurations of the Evil Lyrics software to retrieve lyrics for the Latin Music Database.

Table 4 Number of lyrics retrieved by the different approaches for each music genre in the LMD

In Table 4, from row 1 to row 12, we present the results of using the individual lyrics websites and their lyrics page structure to retrieve the song lyrics from the LMD. The analysis of these results shows that the Brazilian websites vagalume.com.br (1,569 lyrics retrieved) and vounessa.com.br (1,944 lyrics retrieved) contain the highest number of lyrics for songs from the LMD among the individual websites. To some extent, this is an expected result since six out of the 10 music genres in the LMD are Brazilian music genres.

However, we were also interested in knowing if these websites could be combined into one lyrics retrieval system in order to obtain a higher number of lyrics. The result of this combination is shown in Table 4 row 13. The combined approached of the individual websites retrieved 2,480 lyrics for the songs in the LMD. It should be noted that among these results (individual or the combined approach), the webpages would be extracted using the known webpage structure and, as discussed in section 5.2, may contain some additional content besides the song lyrics (such as some type of advertisement).

In Table 4 row 14, we present the results of the lyrics being manually searched (using the Google search engine) and retrieved by the authors of this paper. It should be noted that the authors are familiar with all the languages present in the songs of the LMD and that the method used for manually gathering the lyrics consisted on, first, using well-known websites for the particular music genres presented in the LMD such as letras.mus.br and then, on a second stage, the authors searched for lyrics using song title and artist information using Google search engine. This process has led to the retrieval of 2,503 lyrics of songs from the LMD.

In Table 4 row 15, we present the results for the Evil Lyrics software using song artist and song title information (EvilLyricsST+A). This version of Evil Lyrics has retrieved 2,863 lyrics for songs from the LMD. In order to evaluate if all the lyrics retrieved were the actual lyrics of the songs, we have manually inspected each one of them. After this analysis, we verified that 422 out of the 2,847 retrieved lyrics were not actual lyrics but some other type of information such as artist’s biographies and discographies. Therefore, in total, the EvilLyricsST+A correctly retrieved 2,425 lyrics.

In Table 4 row 16, we present the results for ELFST+A (with θ>3). This version of ELF has managed to retrieve 2,847 lyrics from songs in the LMD. This is a very interesting result, as these lyrics were retrieved automatically by the system. In order to evaluate if all the lyrics retrieved were the actual lyrics of the songs, we have manually inspected each one of them. After this analysis, we verified that 204 out of the 2,847 retrieved lyrics were not actual lyrics but some other type of information. Therefore, in total, the ELFST+A correctly retrieved 2,643 lyrics.

Another aspect that we analyzed was which lyrics websites were being used by ELFST+A to retrieve lyrics. In total, the ELFST+A has gathered lyrics from 157 different websites. Due to space limitations, it is not viable to list all the websites here, but it is interesting to note that the top five websites used by ELFST+A were letras.mus.br (1,490 lyrics), www.todotango.com (279 lyrics), www.musica.com (224 lyrics), www.vagalume.com.br (91 lyrics), and www.mp3lyrics.org (76 lyrics). Out of these websites, only two of them were known to the authors of this paper before these experiments.

In Table 4 row 17, we present the results for the Evil Lyrics software using only song title information (EvilLyricsST). This version of Evil Lyrics has retrieved 2,935 lyrics for songs in the LMD. In order to evaluate if all the lyrics retrieved were the actual lyrics of the songs, we have manually inspected each one of them. After this analysis, we verified that 215 out of the 2,935 retrieved lyrics were not actual lyrics but some other type of information. Therefore, in total, the EvilLyricsST correctly retrieved 2,720 lyrics.

In Table 4 row 18, we present the results for using ELFST (with θ>3), i.e., using only song title information. This version of ELF has managed to retrieve 3,116 lyrics for songs in the LMD. As with the ELFST+A, we manually verified if all the lyrics were the actual lyrics of the songs. Our analysis has shown that for ELFST, only 60 of the retrieved lyrics were not the actual lyrics of the songs. Therefore, the ELFST has successfully retrieved 3,056 lyrics of the LMD using 110 different websites. The top five websites used were letras.mus.br(1,454 lyrics), www.musica.com (760 lyrics), www.todotango.com (274 lyrics), www.vagalume.com.br (114 lyrics), and www.lyricsmode.com (38 lyrics).

In Table 4 row 19, we present the total number of songs available within each music genre of the LMD, and in row 20, we present the number of instrumental songs in the LMD. After the analysis of this information, it becomes clear that the maximum number of lyrics that could be retrieved correctly for the songs in the LMD is 3,074.

Let us now analyze the results under the information retrieval metrics of precision, recall, and F-measure presented in Table 5. The analysis of Table 5 shows some interesting results. First, it should be noted that for the specific websites, although their precision is always 1.0, there is a need to know their website structure and their webpage structure in order to correctly fetch lyrics which is unfeasible in practice.

Table 5 Evaluation of the different approaches for retrieving lyrics from the web

Second, with the exception of the vagalume.com.br and vounessa.com.br websites, all the specific websites provided low recall values as they only retrieved a small portion of the number of lyrics requested. Third, the Evil Lyrics software using both song artist and song title information achieved an F-measure similar to the baseline 12-website combined approach and the manually retrieval of the songs. This might have happened because the Evil Lyrics software is a hybrid approach to web-based lyrics retrieval, since it has a list of websites which we assume it knows their structure. In the version of the software used in the experiments, the websites letras.mus.br and www.vagalume.com.br were present in the list of known websites. For this reason, we believe that it might have used this websites first when searching for the lyrics, since it already knew their structure, hence its similar performance with the 12-website combined approach.

Fourth, both versions of the Ethnic Lyrics Fetcher system have achieved high F-measure rates, being 0.9144 for the ELFST+A and 0.9834 for the ELFST. The difference between the performance of ELFST+A and the ELFST lies in the fact that in Latin music, many authors perform covers of songs performed by well-known artists. Therefore, in many cases when the song in the LMD is sung by a less famous band, the ELFST+A may not find the lyrics, even though the lyrics is widely available under the famous artist name. This might also explain why the EvilLyricsST was the second best performing approach in our experiments.

Fifth, the F-measure achieved by the ELFST is higher than those of all the other approaches: manually searching for the lyrics (0.8841), using all the 13 lyrics websites together (0.8794), or using the EvilLyricsST (0.9277). This demonstrates the feasibility of using the ELF system to automatically retrieve lyrics for different music information retrieval tasks and research experiments.

7 Conclusions

The task of automatic lyrics retrieval and extraction from the web is a non-trivial task. Despite its importance to several music information retrieval applications, very little research has been carried out so far. For this reason, in this paper, we have presented the ELF tool and its novel lyrics detection and extraction mechanism.

In order to evaluate ELF’s novel lyric extraction method from any webpage, we have evaluated its performance against 12 lyrics websites with known structure for delimiting the lyrics content and also against the method proposed by [19]. Our experimental results show that ELF’s novel lyrics extraction procedure is better than the method prosed by [19] and that it should be used with a θ value higher than 3 (θ>3).

We have also evaluated ELF as a lyrics retrieval system. In our experiments, we compared its performance with 12 site-specific lyrics fetchers, the manual retrieval of the lyrics, and also with two versions of the Evil Lyrics software [24]. In these experiments, two versions of ELF were used: the first version (ELFST+A) uses both the song artist and song title information, while the second version (ELFST) uses only the song title information. Our experiments have shown that both versions of ELF can be used as lyrics retrieval tools, but that the ELFST has a better performance (measured by the F-measure) because it is capable of correctly fetching lyrics for cover songs. Furthermore, ELFST has outperformed all the other approaches, even the Evil Lyrics software which is currently one of the most well-known and used plug-ins in several digital music player softwares. As future research, we intend to perform experiments with the Ethnic Lyrics Fetcher system on other music databases with songs in other languages.

8 Endnote

a Available online at http://music.cp.utfpr.edu.br/elf/.

Abbreviations

API:

Application Programming Interface

ELF:

Ethnic Lyrics Fetcher

ELFST:

Ethnic Lyrics Fetcher using only the song title information

ELFST+A:

Ethnic Lyrics Fetcher using the song title and artist information

MIR:

music information retrieval

References

  1. X Hu, JS Downie, AF Ehmann, in Proceedings of the 10th International Society for Music Information Retrieval Conference (ISMIR). Lyric text mining in music mood classification (Kobe, Japan, 26–30 Oct 2009), pp. 411–416.

    Google Scholar 

  2. X Hu, JS Downie, in Proceedings of the 11th International Society for Music Information Retrieval Conference (ISMIR). When lyrics outperform audio for music mood classification: a feature analysis (Utrecht, Netherlands, 9–13 Aug 2010), pp. 619–624.

    Google Scholar 

  3. R Mayer, A Rauber, in Proceedings of the 12th International Society for Music Information Retrieval Conference (ISMIR). Musical genre classification by ensembles of audio and lyrics features (Miami, USA, 24–28 Oct 2011), pp. 675–680.

    Google Scholar 

  4. den Brinker B, van Dinther R, Skowronek J: Expressed music mood classification compared with valence and arousal ratings. EURASIP J. Audio Speech Music Process 2012, 2012: Article ID 24. 10.1186/1687-4722-2012-24

    Article  Google Scholar 

  5. S Baumann, O Hummel, in Proceedings of the 3rd International Conference on Web Delivering of Music. Using cultural metadata for artist recommendations (Leeds, UK, 15–17 Sept 2003), pp. 138–141.

    Google Scholar 

  6. B Logan, A Kositsky, P Moreno, in Proceedings of the IEEE International Conference on Multimedia and Expo. Semantic analysis of song lyrics (Taipei, Taiwan, 27–30 June 2004), pp. 827–830.

    Google Scholar 

  7. T Li, M Ogihara, in Proceedings of the 12th Annual ACM International Conference on Multimedia. Music artist style identification by semi-supervised learning from both lyrics and content (New York, USA, 10–16 Oct 2004), pp. 364–367.

    Google Scholar 

  8. Z Guo, Q Wang, G Liu, J Guo, Y Lu, in Proceedings of the IEEE International Conference on Multimedia and Expo Workshops. A music retrieval system using melody and lyric (Melbourne, Australia, 9–13 July 2012), pp. 343–348.

    Google Scholar 

  9. C-C Wang, J-SR Jang, W Wang, in Proceedings of the 11th International Society for Music Information Retrieval Conference (ISMIR). An improved query by singing/humming system using melody and lyrics information (Utrecht, Netherlands, 9–13 Aug 2010), pp. 45–50.

    Google Scholar 

  10. Mesaros A, Virtanen T: Automatic recognition of lyrics in singing. EURASIP J. Audio Speech Music Process 2010, 2010: Article ID 546047. 10.1186/1687-4722-2010-546047

    Article  Google Scholar 

  11. S Funasawa, H Ishizaki, K Hoashi, Y Takishima, J Katto, in Proceedings of the 11th International Society for Music Information Retrieval Conference (ISMIR). Automated music slideshow generation using web images based on lyrics (Utrecht, Netherlands, 9–13 Aug 2010), pp. 63–68.

    Google Scholar 

  12. JPG Mahedero, A Martinez, P Cano, M Koppenberger, F Gouyon, in Proceedings of the 13th Annual ACM International Conference on Multimedia. Natural language processing of lyrics (Singapore, 6–11 Nov 2005), pp. 475–478.

    Google Scholar 

  13. T O’Hara, N Schuler, Y Lu, DE Tamir, in Proceedings of the 13th International Society for Music Information Retrieval Conference (ISMIR). Inferring chord sequence meanings via lyrics: process and evaluation (Porto, Portugal, 8–12 Oct 2012), pp. 463–468.

    Google Scholar 

  14. JS Downie, SJ Cunningham, in Proceedings of the 3rd International Conference on Music Information Retrieval. Toward a theory of music information retrieval queries: system design implications (Paris, France, 13–17 Oct 2002), pp. 299–300.

    Google Scholar 

  15. MV Zaanen, P Kanters, in Proceedings of the 11th International Society for Music Information Retrieval Conference (ISMIR). Automatic mood classification using tf*idf based on lyrics (Utrecht, Netherlands, 9–13 Aug 2010), pp. 75–80.

    Google Scholar 

  16. DA Shamma, B Pardo, KJ Hammond, in Proceedings of the 13th Annual ACM International Conference on Multimedia. Musicstory: a personalized music video creator (Singapore, 6–11 Nov 2005), pp. 563–566.

    Google Scholar 

  17. R Macrae, S Dixon, in Proceedings of the 13th International Society for Music Information Retrieval Conference (ISMIR). Ranking lyrics for online search (Porto, Portugal, 8–12 Oct 2012), pp. 362–366.

    Google Scholar 

  18. R Mayer, R Neumayer, A Rauber, in Proceedings of the 9th International Society for Music Information Retrieval Conferece (ISMIR). Rhyme and style features for musical genre classification by song lyrics (Philadelphia, USA, 14–18 Sept 2008), pp. 337–342.

    Google Scholar 

  19. G Geleijnse, J Korst, in Proceedings of the 7th International Society for Music Information Retrieval Conference (ISMIR). Efficient lyrics extraction from the web (Victoria, Canada,8–12 Oct 2006), pp. 371–372.

    Google Scholar 

  20. P Knees, M Schedl, G Widmer, in Proceedings of the 6th International Society for Music Information Retrieval Conference (ISMIR). Multiple lyrics alignment: automatic retrieval of song lyrics (London, UK, 11–15 Sept 2005), pp. 564–569.

    Google Scholar 

  21. Tzanetakis G, Kapur A, Schloss WA, Wright M: Computational ethnomusicology. J. Interdiscip. Music Stud 2007, 1(2):1-24.

    Google Scholar 

  22. Leo’s Lyrics,. Accessed 14 Oct 2013., [http://www.leoslyrics.com/]

  23. jLyrics,. Accessed 14 Oct 2013., [http://jmir.sourceforge.net/jLyrics.html]

  24. Evil Lyrics,. Accessed 10 Dec 2013., [http://www.evillabs.sk/evillyrics/]

  25. CN Silla Jr, AL Koerich, CAA Kaestner, in Proceedings of the 9th International Conference on Music Information Retrieval. The Latin Music Database (Philadelphia, USA, 14–18 Sept 2008), pp. 451–456.

    Google Scholar 

  26. Salton G, Buckley C: Term weighting approaches in automatic text retrieval. Inf. Process. Manag 1998, 24(5):513-523. 10.1016/0306-4573(88)90021-0

    Article  Google Scholar 

Download references

Acknowledgements

We thank the anonymous reviewers for their insightful and valuable feedback on the earlier versions of this manuscript.

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Carlos N Silla Jr.

Additional information

Competing interests

The authors declare that they have no competing interests.

Authors’ original submitted files for images

Below are the links to the authors’ original submitted files for images.

Authors’ original file for figure 1

Authors’ original file for figure 2

Rights and permissions

Open Access  This article is licensed under a Creative Commons Attribution 4.0 International License, which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons licence, and indicate if changes were made.

The images or other third party material in this article are included in the article’s Creative Commons licence, unless indicated otherwise in a credit line to the material. If material is not included in the article’s Creative Commons licence and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder.

To view a copy of this licence, visit https://creativecommons.org/licenses/by/4.0/.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Ribeiro, R.P., Almeida, M.A. & Silla Jr, C.N. The Ethnic Lyrics Fetcher tool. J AUDIO SPEECH MUSIC PROC. 2014, 27 (2014). https://doi.org/10.1186/s13636-014-0027-4

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/s13636-014-0027-4

Keywords