修改默认降噪模式
This commit is contained in:
parent
d77782916c
commit
ef8e9641ed
|
|
@ -121,7 +121,7 @@ const App: React.FC = () => {
|
|||
isShareSavePath: true, //是否下载钱询问每个文件保存的位置
|
||||
closeSetting: 'hide', //关闭按钮设置
|
||||
isAINoiseReduction: true, //是否开启ai降噪
|
||||
aINoiseReduction: 0, // 降噪模式
|
||||
aINoiseReduction: 1, // 降噪模式
|
||||
}))
|
||||
}
|
||||
}, [])
|
||||
|
|
|
|||
|
|
@ -244,7 +244,7 @@ const AudioComponents = () => {
|
|||
ecordingVolume: 0,
|
||||
autoEcordingVolume: true,
|
||||
isAINoiseReduction: true,
|
||||
aINoiseReduction: 0
|
||||
aINoiseReduction: 1
|
||||
});
|
||||
const setting = JSON.parse(storage.getItem('setting') as string)
|
||||
useEffect(() => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue