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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
################################################################################
# Example configuration file for the SoundScape Renderer (SSR) #
# #
# Configuration files are processed in this order: #
# 1) /Library/SoundScapeRenderer/ssr.conf #
# 2) /etc/ssr.conf #
# 3) $HOME/Library/SoundScapeRenderer/ssr.conf #
# 4) $HOME/.ssr/ssr.conf #
# 5) anything specified on the command line with "ssr --config=my_conf.file" #
# #
# If a parameter is specified more than once, the last occurrence counts! #
################################################################################
# Correction of master volume in dB
#MASTER_VOLUME_CORRECTION = 6
# Exponent exp that determines the amplitude decay in virtual space ( 1/r^exp )
#DECAY_EXPONENT = 0
# Distance in m of equal level for plane waves and point sources
#STANDARD_AMPLITUDE_REFERENCE_DISTANCE = 3
# Switch off auto-rotation of sound sources toward the reference
#AUTO_ROTATION = off
# Default Scene file name
#SCENE_FILE_NAME = my_scene.asd
# GUI scene shortcuts
#SCENE_MENU = scene_menu.conf
# Default playback setup file
#PLAYBACK_SETUP_FILE_NAME = default_setup.asd
# XML Schema file name to validate XML scene and reproduction setup files
#XML_SCHEMA_FILE_NAME = asdf.xsd
# audio recorder file name
#AUDIO_RECORDER_FILE_NAME = test07.wav
# renderer type: WFS, binaural, BRS, VBAP, AAP, generic
#RENDERER_TYPE = WFS
########################## JACK settings #######################################
# alsa input port prefix
#INPUT_PREFIX = "alsa_pcm:capture_"
# alsa output port prefix
#OUTPUT_PREFIX = "alsa_pcm:playback_"
########################## Renderer type settings ##############################
# WFS:
#WFS_PREFILTER = impulse_responses/wfs_prefilter_120_1500_44100.wav
#DELAYLINE_SIZE = 100000
#INITIAL_DELAY = 1000
# binaural
#HRIR_FILE_NAME = default_hrirs.wav
#HRIR_SIZE = 512
# Ambisonics
#AMBISONICS_ORDER = 3
#IN_PHASE_RENDERING = TRUE # "true" works as well
################################# GUI settings #################################
# location of images for GUI
#PATH_TO_GUI_IMAGES = images
# Enable GUI
#GUI = on
############################# head tracker settings ############################
# select head tracker
#TRACKER = fastrak
#TRACKER = patriot
#TRACKER = intersense
#TRACKER = razor
# space separated list of serial ports which are tried for Polhemus Fastrak
#TRACKER_PORTS = "/dev/ttyUSB2 /dev/ttyS1"
############################ IP Interface configuration ########################
# ENABLE IP Server Interface
#NETWORK_INTERFACE = on
# Listening server port
#SERVER_PORT = 8443
# ASCII code of character to end messages with (binary zero: 0; new line: 10;
# carriage return: 13)
#END_OF_MESSAGE_CHARACTER = 10
############################## Verbosity Level #################################
# Set the level of system information
#
# Level 0: Only errors and warnings are shown.
# Level 1: A few more messages are shown.
# Level 2: Quite a lot messages are shown.
# Level 3: Even messages which can repeat many times per second are shown.
# This is a lot of messages!
#
#VERBOSE = "1"
################################################################################
# Loop audio files (individually, not synchronized!)
#LOOP = yes
|