id3genres.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * id3genres.h: list of genres for id3 genre tags
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2003 VideoLAN
  5.  * $Id: id3genres.h 7522 2004-04-27 16:35:15Z sam $
  6.  *
  7.  * Author: Sigmund Augdal <sigmunau@idi.ntnu.no>
  8.  *         list found at http://www.id3.org/id3v2.4.0-frames.txt
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #define NUM_GENRES 80
  25. static char *ppsz_genres[] = {
  26.     N_("Blues"),
  27.     N_("Classic rock"),
  28.     N_("Country"),
  29.     N_("Dance"),
  30.     N_("Disco"),
  31.     N_("Funk"),
  32.     N_("Grunge"),
  33.     N_("Hip-Hop"),
  34.     N_("Jazz"),
  35.     N_("Metal"),
  36.     N_("New Age"),
  37.     N_("Oldies"),
  38.     N_("Other"),
  39.     N_("Pop"),
  40.     N_("R&B"),
  41.     N_("Rap"),
  42.     N_("Reggae"),
  43.     N_("Rock"),
  44.     N_("Techno"),
  45.     N_("Industrial"),
  46.     N_("Alternative"),
  47.     N_("Ska"),
  48.     N_("Death metal"),
  49.     N_("Pranks"),
  50.     N_("Soundtrack"),
  51.     N_("Euro-Techno"),
  52.     N_("Ambient"),
  53.     N_("Trip-Hop"),
  54.     N_("Vocal"),
  55.     N_("Jazz+Funk"),
  56.     N_("Fusion"),
  57.     N_("Trance"),
  58.     N_("Classical"),
  59.     N_("Instrumental"),
  60.     N_("Acid"),
  61.     N_("House"),
  62.     N_("Game"),
  63.     N_("Sound clip"),
  64.     N_("Gospel"),
  65.     N_("Noise"),
  66.     N_("Alternative rock"),
  67.     N_("Bass"),
  68.     N_("Soul"),
  69.     N_("Punk"),
  70.     N_("Space"),
  71.     N_("Meditative"),
  72.     N_("Instrumental pop"),
  73.     N_("Instrumental rock"),
  74.     N_("Ethnic"),
  75.     N_("Gothic"),
  76.     N_("Darkwave"),
  77.     N_("Techno-Industrial"),
  78.     N_("Electronic"),
  79.     N_("Pop-Folk"),
  80.     N_("Eurodance"),
  81.     N_("Dream"),
  82.     N_("Southern rock"),
  83.     N_("Comedy"),
  84.     N_("Cult"),
  85.     N_("Gangsta"),
  86.     N_("Top 40"),
  87.     N_("Christian rap"),
  88.     N_("Pop/funk"),
  89.     N_("Jungle"),
  90.     N_("Native American"),
  91.     N_("Cabaret"),
  92.     N_("New wave"),
  93.     N_("Psychedelic"),
  94.     N_("Rave"),
  95.     N_("Showtunes"),
  96.     N_("Trailer"),
  97.     N_("Lo-Fi"),
  98.     N_("Tribal"),
  99.     N_("Acid punk"),
  100.     N_("Acid jazz"),
  101.     N_("Polka"),
  102.     N_("Retro"),
  103.     N_("Musical"),
  104.     N_("Rock & roll"),
  105.     N_("Hard rock")
  106. };