Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions MicListener/MicListener/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,23 @@ struct ContentView: View {
.font(.title)
.bold()

Text("Made with ❤️ by Binhake ツ")
.font(.subheadline)
.foregroundColor(.secondary)
HStack(spacing: 4) {
Text("Made with ❤️ by")
.foregroundColor(.secondary)
if let searchURL = URL(string: "https://www.google.com/search?q=binhake&ie=UTF-8") {
Link("Binhake ツ", destination: searchURL)
.foregroundColor(.blue)
.underline()
} else {
Text("Binhake ツ")
.foregroundColor(.secondary)
}
}
.font(.subheadline)
}
.padding(.top, 10)


// =================================================
// 2. STATUS SUMMARY
// =================================================
Expand Down
27 changes: 21 additions & 6 deletions MicRemote/MicRemote/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,29 @@ struct ContentView: View {
) {

// ======================================
// TITLE
// TITLE & SUBTITLE
// ======================================

Text("MIC REMOTE")
.font(
.largeTitle
)
.bold()
VStack(spacing: 4) {
Text("MIC REMOTE")
.font(.largeTitle)
.bold()

HStack(spacing: 4) {
Text("Made with ❤️ by")
.foregroundColor(.secondary)
if let searchURL = URL(string: "https://www.google.com/search?q=binhake&ie=UTF-8") {
Link("Binhake ツ", destination: searchURL)
.foregroundColor(.blue)
.underline()
} else {
Text("Binhake ツ")
.foregroundColor(.secondary)
}
}
.font(.subheadline)
}


// ======================================
// NETWORK STATUS
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,11 @@ Real-time audio streaming from an iPhone microphone to any device or web browser
- Install Tailscale on the server device.
- Access the WebApp from anywhere using your server's Tailscale IP: `http://<tailscale_ip>:3000`.
- If you want to use the iOS `MicRemote` / `MicListener` apps remotely over cellular data / outside networks, install the Tailscale app on your iPhones and use the server's Tailscale IP. That's all!

- **Standard & Traditional Method (Cloud VPS / Port Forwarding)**:
- **Option A (Cloud VPS - Recommended for 24/7 access)**: Deploy `server.js` on a Cloud VPS (AWS, DigitalOcean, Vultr, Oracle Cloud, Linode, etc.) with a Public IP or Domain. Both iPhones and web listeners can connect directly to `http://<your_vps_ip_or_domain>:3000` from anywhere via 4G/5G/Wi-Fi without needing any extra apps.
- **Option B (Home Router Port Forwarding)**:
1. Set a static local IP for your server machine in your Wi-Fi router.
2. Forward Port `3000` (TCP) on your router to the server machine's local IP.
3. Use your Public IP or a free Dynamic DNS (DDNS) hostname (DuckDNS, No-IP, Cloudflare Tunnel) to connect from outside networks.

3 changes: 2 additions & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -1073,9 +1073,10 @@ app.get(
</h1>

<div style="font-size: 13px; color: #888; margin-top: -18px; margin-bottom: 20px;">
Made with ❤️ by Binhake ツ
Made with ❤️ by <a href="https://www.google.com/search?q=binhake&ie=UTF-8" target="_blank" style="color: #60a5fa; text-decoration: underline; font-weight: 500;">Binhake ツ</a>
</div>


<div class="status">

iPhone:
Expand Down
Loading