Skip to content

Commit

Permalink
Merge pull request Ikaros-521#921 from Ikaros-521/owner
Browse files Browse the repository at this point in the history
修正 录音配置的描述
  • Loading branch information
Ikaros-521 authored Jul 13, 2024
2 parents b8e70f3 + 5c06077 commit 17443b7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions docs/投资人/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,16 @@
avatar: "https://images.cnblogs.com/cnblogs_com/ikaros-521/2328032/o_240709115852_AgAABTM-uTh5R68ehrRHwLlZ6NOOV01z%20(1).png",
amount: "8.88"
},
{
name: "阿翔",
avatar: "https://images.cnblogs.com/cnblogs_com/ikaros-521/2328032/o_240713105417_QQ%E5%9B%BE%E7%89%8720240713185322.jpg",
amount: "88"
},
{
name: "冰岛之夏",
avatar: "https://images.cnblogs.com/cnblogs_com/ikaros-521/2328032/o_240713111820_QQ%E5%9B%BE%E7%89%8720240713191803.jpg",
amount: "100"
},
];

// 对投资方数据按投资金额(amount)进行降序排序
Expand Down
Binary file modified docs/投资人/invest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion webui.py
Original file line number Diff line number Diff line change
Expand Up @@ -5692,7 +5692,7 @@ async def fish_speech_load_model(data):
).style("width:200px;").tooltip('按压此按键就可以停止录音了,按一次就行了')

input_talk_volume_threshold = ui.input(label='音量阈值', value=config.get("talk", "volume_threshold"), placeholder='音量阈值,指的是触发录音的起始音量值,请根据自己的麦克风进行微调到最佳').style("width:100px;").tooltip('音量阈值,指的是触发录音的起始音量值,请根据自己的麦克风进行微调到最佳')
input_talk_silence_threshold = ui.input(label='沉默阈值', value=config.get("talk", "silence_threshold"), placeholder='沉默阈值,指的是触发停止路径的最低音量值,请根据自己的麦克风进行微调到最佳').style("width:100px;").tooltip('沉默阈值,指的是触发停止路径的最低音量值,请根据自己的麦克风进行微调到最佳')
input_talk_silence_threshold = ui.input(label='停录计数', value=config.get("talk", "silence_threshold"), placeholder='停录计数,指的是音量低于起始值的计数,这个值越大,切分音频越慢,即需要等待更长时间才会停止录音,但也不能太小,不然说一半就停了').style("width:100px;").tooltip('沉默阈值,指的是触发停止路径的最低音量值,请根据自己的麦克风进行微调到最佳')
input_talk_silence_CHANNELS = ui.input(label='CHANNELS', value=config.get("talk", "CHANNELS"), placeholder='录音用的参数').style("width:100px;")
input_talk_silence_RATE = ui.input(label='RATE', value=config.get("talk", "RATE"), placeholder='录音用的参数').style("width:100px;")
switch_talk_show_chat_log = ui.switch('聊天记录', value=config.get("talk", "show_chat_log")).style(switch_internal_css)
Expand Down

0 comments on commit 17443b7

Please sign in to comment.