linuxshellaudioyoutube-dlffplay

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


Is there any you to stream any music the terminal with youtube-dl and ffplay I know that ffplay can play audio with shell $ audio stram | ffplay -i -


Solution

  • You can try this:

    youtube-dl -f bestaudio  ytsearch:"SONG NAME" -o - 2>/dev/null | ffplay -nodisp -autoexit -i - &>/dev/null
    

    Or:

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