Skip to content

Instantly share code, notes, and snippets.

@rijieli
Last active June 15, 2024 17:56
Show Gist options
  • Save rijieli/dac4970b9d41c14a98bb765bcf9f77a8 to your computer and use it in GitHub Desktop.
Save rijieli/dac4970b9d41c14a98bb765bcf9f77a8 to your computer and use it in GitHub Desktop.
Download Twitter Spaces Audio By URL

python -m venv .venv

source .venv/bin/activate

pip install m3u8downloader

downloadm3u8 -o foo.mp4 spaces_m3u8_url

ffmpeg -i foo.mp4 -b:a 192K -vn bar.mp3

ffmpeg -i spaces_m3u8_url -b:a 192K -vn bar.mp3
@NabilHunt
Copy link

NabilHunt commented May 21, 2023

@larvata Thanks!

So it's working! my mistake is that I was opening: https://twitter.com/i/spaces/<id>

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