📄 recorder.ini
字号:
; -- recorder settings -- ;
;------;
[device]
; id - device id
; default is -1 (WAVE_MAPPER)
;
; valid values are [0, 1 .. waveInGetNumDevs() - 1] or -1 (WAVE_MAPPER)
;
id=-1
; chooseFormat - specifies whether to display choose format dialog rather then use the
; sampling parameters provided in this ini file
; default is 1 (yes)
;
; valid values are 1 (yes, display the dialog) and 0 (do not choose the format,
; use ini parameters instead)
;
chooseFormat=0
; rate - sampling rate
; default is 44100
;
; valid values depends on soundcard, common-used values
; are 8000, 11025, 22050 and 44100
;
rate=44100
; bits - number of bits per sample
; default is 16
;
; valid values are 8 and 16
;
bits=16
; nChannels - number of channels
; default is 2 (stereo)
;
; valid values are 2 (stereo) and 1 (mono) or any other supported by your device
;
nChannels=2
; minVolumeLevel - specifies minimum volume level of stream
; default value is 0 (do not check the volume)
;
; valid values are from 0 (silence) to 32768 (most loud).
; Specify the minimum volume of sound recorder should record.
; This is useful for silence detection. Value 0 disables this feature.
;
minVolumeLevel=0
; minActiveTime - minimal time (in milliseconds) of recorder activity
; default is 1000 (1 second)
;
; when silence detection level is bigger then 0, recorder guaranteed to be
; active at least for this amount of time. This is usefult to avoid voice-cuts
; in human speech.
;
minActiveTime=1000
;----;
[data]
; out_file - output file name
; default is 'rec_buf.dat'
;
; valid value is any valid file name
;
out_file=rec_buf.dat
; append - append mode
; default is 1 (on)
;
; valid values are 1 (on) and 0 (off)
; if file already exists and append mode is on, new data will be appened to the end of file
; if file does not exists or append mode is off, new file will be created
;
append=0
;-------------;
[ConsoleWindow]
x=10
y=10
w=567
h=345
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -