1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
#
# Sample Gmp3 RC file
# -------------------
#
# Settings for the buffer size, in K. Default 1500 (roughly 6-7 seconds).
#
# buffer_size = 1500
# Down-sampling settings. 0, 2 or 4. Default 0 (44,100 hz).
#
# downsample = 0
# Types of output:
# 0 = Left only
# 1 = Right only
# 2 = Stereo (default)
# 3 = Mono
#
# output_type = 2
# Whether to decode to line-out or not. True or false. Default false.
#
# send_to_lineout = false
# Controls whether or not gmp3 allows it's window to be managed by the window
# manager.
#
# managed = true
# Controls display of tooltips. True or false. Default is true.
#
# tooltips = true
# This parameter defines the playlist to automatically load on startup.
# Make sure to provide the full path, or gmp3 may not be able to find
# the playlist, and won't load it.
#
# autoload = /home/brettk/songs.pls
# This parameter determines if filename autoparsing is enabled. Default is
# disabled. This feature automatically parses filenames to extract the
# song title. The format for the file name is: artist_name-song_title.mp3
#
# autoparse = false
# Defines an external mixer, if you want one. Uses system() to call the
# mixer, so just make sure it's in the path and you should be fine.
#
# mixerapp = kmix
# This defines the theme to load on startup.
#
# themepack = default
# Defines whether or not ID3 tags are automatically read to retrieve song
# titles.
#
# autoloadtags = true
# Defines the default directory to be read when loading new mp3's. This
# changes to reflect the last directory you loaded an mp3 from when selecting
# files.
#
# mp3loaddir = /home/mp3s
# This one defines the executable used to call the mpg123
# compatible (at the switch level) executable.
#
# mp3player = /usr/local/bin/mpg123
# Defines the sound device to be used by the mp3 player.
#
# sound_device = /dev/dsp
# Defines the server to use as the HTTP proxy server.
#
# http_proxy = my.web.proxy
# Defines the authentication string to send to server.
#
# http_auth_string = string to send
|