如何使用 ffplay 和 youtube-dl 在终端中播放 youtube 歌曲

How to play youtube song in terminal with ffplay and youtube-dl

你有没有使用 youtube-dl 和 ffplay 流式传输任何音乐的终端 我知道 ffplay 可以用 shell 播放音频 $ audio stram | ffplay -i -

你可以试试这个: youtube-dl -f bestaudio ytsearch:"SONG NAME" -o - 2>/dev/null | ffplay -nodisp -autoexit -i - &>/dev/null

或者: youtube-dl -f bestaudio VIDEO_URL -o - 2>/dev/null | ffplay -nodisp -autoexit -i - &>/dev/null