-
-
Save exogen/5f4d2abfedbcd8aec933 to your computer and use it in GitHub Desktop.
Instantly play the first result from YouTube
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
#!/bin/bash | |
# Usage: play bizarre love triangle | |
# Arguments are joined so no quotes are needed. | |
# NOTE: $TMPDIR (on Mac at least) already ends in a slash. | |
youtube-dl --default-search "ytsearch" \ | |
--restrict-filenames \ | |
--output "${TMPDIR:-/tmp/}%(title)s-%(id)s.%(ext)s" \ | |
--exec afplay "$*" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment