]> git.sesse.net Git - vlc/blob - modules/demux/util/id3genres.h
Added support for oldstyle id3 genres.
[vlc] / modules / demux / util / id3genres.h
1 /* id3genres.h: list of genres for id3 genre tags, found at
2  * http://www.id3.org/id3v2.4.0-frames.txt
3  */
4
5 #define NUM_GENRES 80
6
7 static char *ppsz_genres[] = {
8     N_("Blues"),
9     N_("Classic Rock"),
10     N_("Country"),
11     N_("Dance"),
12     N_("Disco"),
13     N_("Funk"),
14     N_("Grunge"),
15     N_("Hip-Hop"),
16     N_("Jazz"),
17     N_("Metal"),
18     N_("New Age"),
19     N_("Oldies"),
20     N_("Other"),
21     N_("Pop"),
22     N_("R&B"),
23     N_("Rap"),
24     N_("Reggae"),
25     N_("Rock"),
26     N_("Techno"),
27     N_("Industrial"),
28     N_("Alternative"),
29     N_("Ska"),
30     N_("Death Metal"),
31     N_("Pranks"),
32     N_("Soundtrack"),
33     N_("Euro-Techno"),
34     N_("Ambient"),
35     N_("Trip-Hop"),
36     N_("Vocal"),
37     N_("Jazz+Funk"),
38     N_("Fusion"),
39     N_("Trance"),
40     N_("Classical"),
41     N_("Instrumental"),
42     N_("Acid"),
43     N_("House"),
44     N_("Game"),
45     N_("Sound Clip"),
46     N_("Gospel"),
47     N_("Noise"),
48     N_("AlternRock"),
49     N_("Bass"),
50     N_("Soul"),
51     N_("Punk"),
52     N_("Space"),
53     N_("Meditative"),
54     N_("Instrumental Pop"),
55     N_("Instrumental Rock"),
56     N_("Ethnic"),
57     N_("Gothic"),
58     N_("Darkwave"),
59     N_("Techno-Industrial"),
60     N_("Electronic"),
61     N_("Pop-Folk"),
62     N_("Eurodance"),
63     N_("Dream"),
64     N_("Southern Rock"),
65     N_("Comedy"),
66     N_("Cult"),
67     N_("Gangsta"),
68     N_("Top 40"),
69     N_("Christian Rap"),
70     N_("Pop/Funk"),
71     N_("Jungle"),
72     N_("Native American"),
73     N_("Cabaret"),
74     N_("New Wave"),
75     N_("Psychadelic"),
76     N_("Rave"),
77     N_("Showtunes"),
78     N_("Trailer"),
79     N_("Lo-Fi"),
80     N_("Tribal"),
81     N_("Acid Punk"),
82     N_("Acid Jazz"),
83     N_("Polka"),
84     N_("Retro"),
85     N_("Musical"),
86     N_("Rock & Roll"),
87     N_("Hard Rock")
88 };