Last active
April 18, 2024 17:54
-
-
Save brandleesee/dfe50af63562b81e3a684139a0feaf57 to your computer and use it in GitHub Desktop.
Streaming a Playlist in Terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install wget mplayer && wget "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp" && chmod +x yt-dlp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./yt-dlp -o - --extract-audio --audio-format mp3 --audio-quality 0 "INSERT_PLAYLIST_URL" | mplayer - |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Resource:
https://distrowatch.com/weekly-mobile.php?issue=20240415#pinephone
Ctrl-C to stop the stream.