Skip to content

Instantly share code, notes, and snippets.

@roblogic
Created September 21, 2024 06:47
Show Gist options
  • Save roblogic/0e9f838d3ee875a2fc701e4a976cb34c to your computer and use it in GitHub Desktop.
Save roblogic/0e9f838d3ee875a2fc701e4a976cb34c to your computer and use it in GitHub Desktop.

install blackhole

using Homebrew

brew install --cask blackhole-2ch

mess around with MacOS audio device settings

applies to intel macs as well

https://www.avtouchbar.com/blackhole-m1-macs/

play the music, using ffmpeg to record it

i created this shell script: recordff.sh using info from the forums

#!/bin/zsh

./basic ffarpeggio.bas &

export FFMPEG_FMT_SYSTEM_AUDIO=avfoundation
export FFMPEG_INPUT_DEVICE_SYSTEM_AUDIO=":0"

echo "Recording system audio."

ffmpeg\
  -nostdin\
  -f ${FFMPEG_FMT_SYSTEM_AUDIO}\
  -i ${FFMPEG_INPUT_DEVICE_SYSTEM_AUDIO}\
  system_audio.wav

Note, the program ffarpeggio.bas is here, and the basic executable is RHN's Chipmunk Basic

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment