Official guide for PulseAudio: https://docs.audiorelay.net/instructions/linux/use-your-phone-as-a-mic-for-a-linux-pc
From: https://audiorelay.net/downloads/linux
Deb on debian or ubuntu, archive for others.
#!/bin/bash | |
# Vars | |
HEREAMI="$(dirname "$(readlink -f "${0}")")" | |
URL="https://www.internic.net/domain/named.root" | |
FILE="/usr/share/dns/root.hints" | |
# Check if file is the same, otherwise override | |
if ! diff -q <(curl -s "${URL}") "${FILE}" > /dev/null 2>&1; then | |
# Download root.hints file |
Official guide for PulseAudio: https://docs.audiorelay.net/instructions/linux/use-your-phone-as-a-mic-for-a-linux-pc
From: https://audiorelay.net/downloads/linux
Deb on debian or ubuntu, archive for others.