-
Notifications
You must be signed in to change notification settings - Fork 43
Fix/change UI setting qall #4192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 7 commits
084ea2b
00a4c44
cd8048e
267ee07
77a781f
0a6646c
fce2b7c
424b9c6
b42c4f0
6227ea4
fd7e59d
2d0d30a
4f77a77
56f7f20
394a67b
1846ee5
3f0aa29
70cf5ff
b473e77
2fa1e4a
3c61a3a
5c9b05c
4689e71
1942bf9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,76 +2,35 @@ | |
<section> | ||
<div :class="$style.element"> | ||
<div :class="$style.enable"> | ||
<h3 :class="$style.header">RTC機能を有効にする</h3> | ||
<div :class="$style.header_and_content"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. アドバイスをありがとうございます。 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 他のところもできれば変えておいてほしいです! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ありがとうございます。わかりました。 |
||
<h3 :class="$style.header">RTC機能</h3> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ご指摘ありがとうございます。 |
||
<p> | ||
通話などのRTC(リアルタイムコミュニケーション)機能を有効化します。 | ||
マイクなどへのアクセス許可が必要です。 | ||
</p> | ||
</div> | ||
<a-toggle v-model="state.isEnabled" :class="$style.toggle" /> | ||
</div> | ||
<p :class="$style.content"> | ||
通話などのRTC(リアルタイムコミュニケーション)機能を有効化します<br /> | ||
マイクなどへのアクセス許可が必要です | ||
</p> | ||
</div> | ||
<template v-if="state.isEnabled"> | ||
<div :class="$style.element"> | ||
<h3 :class="$style.header">マスターボリューム</h3> | ||
<form-range-with-value | ||
v-model="state.masterVolume" | ||
:class="$style.content" | ||
max-text="100%" | ||
min="0" | ||
step="0.005" | ||
max="1" | ||
:format="formatMasterVolume" | ||
/> | ||
</div> | ||
<div :class="$style.element"> | ||
<h3 :class="$style.header">入力デバイス</h3> | ||
<div :class="$style.content"> | ||
<form-selector | ||
v-if="!fetchFailed && audioInputDevices.length > 0" | ||
v-model="state.audioInputDeviceId" | ||
:options="audioInputDeviceOptions" | ||
/> | ||
<p v-else>デバイスが取得できませんでした</p> | ||
</div> | ||
</div> | ||
<noise-suppression | ||
v-model="state.noiseSuppression" | ||
:class="$style.element" | ||
/> | ||
<div :class="$style.element"> | ||
<h3 :class="$style.header">ノイズゲート</h3> | ||
<form-range-with-value | ||
v-model="state.noiseGateThreshold" | ||
:class="$style.content" | ||
max-text="-100dB" | ||
min="-100" | ||
step="1" | ||
max="0" | ||
:format="formatNoiseGateThreshold" | ||
/> | ||
<p :class="$style.content"> | ||
マイクに入力された音が指定した音量以下だった場合にミュートします<br /> | ||
-100dBにすると無効になります | ||
</p> | ||
</div> | ||
<div :class="$style.element"> | ||
<div :class="$style.enable"> | ||
<h3 :class="$style.header">メッセージの読み上げ</h3> | ||
<div :class="$style.header_and_content"> | ||
<h3 :class="$style.header">メッセージの読み上げ</h3> | ||
<p>Qallしているチャンネルに投稿されたメッセージを読み上げます。</p> | ||
</div> | ||
<a-toggle v-model="state.isTtsEnabled" :class="$style.toggle" /> | ||
</div> | ||
<p :class="$style.content"> | ||
Qallしているチャンネルに投稿されたメッセージを読み上げます | ||
</p> | ||
</div> | ||
<div v-if="state.isTtsEnabled" :class="$style.element"> | ||
<h3 :class="$style.header">メッセージ読み上げの声</h3> | ||
<div :class="$style.content"> | ||
<div> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ご指摘ありがとうございます。 |
||
<form-selector | ||
v-if="voiceOptions.length > 0" | ||
v-model="state.voiceName" | ||
label="読み上げボイスの種類" | ||
:options="voiceOptions" | ||
/> | ||
<p v-else>読み上げ音声の声の種類が取得できませんでした</p> | ||
<p v-else>読み上げ音声の声の種類が取得できませんでした。</p> | ||
<form-input | ||
v-model.number="state.voicePitch" | ||
label="ピッチ" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
@@ -92,6 +51,47 @@ | |
/> | ||
</div> | ||
</div> | ||
<div :class="$style.element"> | ||
<h3 :class="$style.header">入力デバイス</h3> | ||
<div> | ||
<form-selector | ||
v-if="!fetchFailed && audioInputDevices.length > 0" | ||
v-model="state.audioInputDeviceId" | ||
:options="audioInputDeviceOptions" | ||
/> | ||
<p v-else>デバイスが取得できませんでした。</p> | ||
</div> | ||
</div> | ||
<div :class="$style.element"> | ||
<h3 :class="$style.header">マスターボリューム</h3> | ||
<form-range-with-value | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. なるほどです There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ありがとうございます。わかりました。 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. お疲れ様です。スライダーなのですが、FormRangeWithValue.vueを変更してしまってもいいですか? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. リポジトリ全体に対して There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ありがとうございます。確かにQallの設定画面以外では文字列がヒットしませんでした。 |
||
v-model="state.masterVolume" | ||
max-text="100%" | ||
min="0" | ||
step="0.005" | ||
max="1" | ||
:format="formatMasterVolume" | ||
/> | ||
</div> | ||
<div :class="$style.element"> | ||
<h3 :class="$style.header">ノイズゲート</h3> | ||
<p> | ||
マイクに入力された音が指定した音量以下だった場合にミュートします。 | ||
-100dBにすると無効になります。 | ||
</p> | ||
<form-range-with-value | ||
v-model="state.noiseGateThreshold" | ||
max-text="-100dB" | ||
min="-100" | ||
step="1" | ||
max="0" | ||
:format="formatNoiseGateThreshold" | ||
/> | ||
</div> | ||
<noise-suppression | ||
v-model="state.noiseSuppression" | ||
:class="$style.element" | ||
/> | ||
</template> | ||
</section> | ||
</template> | ||
|
@@ -211,15 +211,12 @@ const voiceOptions = useVoices() | |
.element { | ||
margin: 24px 0; | ||
} | ||
.content { | ||
margin-left: 12px; | ||
} | ||
.enable { | ||
display: flex; | ||
align-items: center; | ||
margin-bottom: 8px; | ||
h3 { | ||
margin: 0; | ||
.header_and_content { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ご指摘ありがとうございます。 |
||
flex: 1; | ||
} | ||
.toggle { | ||
margin-left: 12px; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NatsukiくんのPRでFormRadioコンポーネント自体を変えてもらってるので、ここらへんはもしかしたらまたちょっと変えてもらうかもです
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ありがとうございます!
一旦変えずに今後の指示を待ちます。