Skip to content

Commit

Permalink
Merge pull request #38 from Zackriya-Solutions/feature-request/openro…
Browse files Browse the repository at this point in the history
…uter-integration

Fix Microphone Permission Dialog on macOS
  • Loading branch information
sujithatzackriya authored Feb 21, 2025
2 parents 78b8660 + 695d0fa commit b742c46
Show file tree
Hide file tree
Showing 7 changed files with 132 additions and 138 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
</h3>
<p align="center">
<a href="https://meetily.zackriya.com"><b>Website</b></a> •
<a href="https://www.linkedin.com/in/sujithscom/"><b>Author</b></a>
<a href="https://in.linkedin.com/company/zackriya-solutions"><b>Author</b></a>
<a href="https://discord.gg/crRymMQBFH"><b>Discord Channel</b></a>
</p>
<p align="center">

Expand Down Expand Up @@ -229,4 +231,4 @@ Last updated: December 26, 2024

## Star History

[![Star History Chart](https://api.star-history.com/svg?repos=Zackriya-Solutions/meeting-minutes&type=Date)](https://star-history.com/#Zackriya-Solutions/meeting-minutes&Date)
[![Star History Chart](https://api.star-history.com/svg?repos=Zackriya-Solutions/meeting-minutes&type=Date)](https://star-history.com/#Zackriya-Solutions/meeting-minutes&Date)
101 changes: 0 additions & 101 deletions frontend/BUG.txt

This file was deleted.

8 changes: 8 additions & 0 deletions frontend/src-tauri/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSMicrophoneUsageDescription</key>
<string>This application needs access to your microphone to record meeting audio.</string>
</dict>
</plist>
10 changes: 10 additions & 0 deletions frontend/src-tauri/entitlements.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.device.audio-input</key>
<true/>
<key>com.apple.security.device.microphone</key>
<true/>
</dict>
</plist>
2 changes: 1 addition & 1 deletion frontend/src-tauri/src/audio/audio_processing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub fn normalize_v2(audio: &[f32]) -> Vec<f32> {
}

// Increase target RMS for better voice volume while keeping peak in check
let target_rms = 0.5; // Increased from 0.6
let target_rms = 0.9; // Increased from 0.6
let target_peak = 0.95; // Slightly reduced to prevent clipping

let rms_scaling = target_rms / rms;
Expand Down
Loading

0 comments on commit b742c46

Please sign in to comment.