29 lines
1.2 KiB
Python
Executable File
29 lines
1.2 KiB
Python
Executable File
# This is a sample quisk_conf.py configuration file for a soundcard.
|
|
|
|
# Please do not change this sample file.
|
|
# Instead copy it to your own .quisk_conf.py and make changes there.
|
|
# See quisk_conf_defaults.py for more information.
|
|
|
|
# The default hardware module was already imported. Import a different one here.
|
|
# import quisk_hardware_fixed as quisk_hardware
|
|
|
|
# In ALSA, soundcards have these names. The "hw" devices are the raw
|
|
# hardware devices, and should be used for soundcard capture.
|
|
#name_of_sound_capt = "hw:0"
|
|
#name_of_sound_capt = "hw:1"
|
|
#name_of_sound_capt = "plughw"
|
|
#name_of_sound_capt = "plughw:1"
|
|
#name_of_sound_capt = "default"
|
|
|
|
# Pulseaudio support added by Philip G. Lee. Many thanks!
|
|
# For PulseAudio support, use the name "pulse" and connect the streams
|
|
# to your hardware devices using a program like pavucontrol
|
|
#name_of_sound_capt = "pulse"
|
|
|
|
sample_rate = 96000 # ADC hardware sample rate in Hertz
|
|
name_of_sound_capt = "hw:0" # Name of soundcard capture hardware device.
|
|
name_of_sound_play = name_of_sound_capt # Use the same device for play back
|
|
channel_i = 0 # Soundcard index of in-phase channel: 0, 1, 2, ...
|
|
channel_q = 1 # Soundcard index of quadrature channel: 0, 1, 2, ...
|
|
|