Skip to content

Commit

Permalink
fix: audio loop of death fixed ))
Browse files Browse the repository at this point in the history
  • Loading branch information
davay42 committed Dec 25, 2024
1 parent b1c0077 commit e446da4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/state/StateSound.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const { mic, input } = useMicrophone();
.i-ph-microphone.z-10.relative(v-if="!mic.opened")
.i-ph-microphone-fill.z-10.relative(v-else)
.m-0 Mic
button.flex-button(:class="{ active: mic.monitor }", @click="mic.monitor = !mic.monitor", v-tooltip.top="'Connect microphone to output'")
button.flex-button(:style="{backgroundColor:mic.monitor ? '#f227' : ''}" @click="mic.monitor = !mic.monitor", v-tooltip.top="'Connect microphone to output. Be careful with the feedback!'")
.i-ph-ear
.m-0 Monitoring
control-rotary(v-model="mic.volume", :min="0", :max="5", :step="0.001", param="GAIN", v-tooltip.bottom="'Microphone volume'")
Expand Down

0 comments on commit e446da4

Please sign in to comment.