cfg/bin/mpc-yt
Knut Ahlers 0f948bf04b
Add support for stream aliases
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2019-02-28 16:00:58 +01:00

38 lines
805 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
declare -A streamalias
source ${HOME}/bin/script_framework.sh
[ -f ${HOME}/.config/mpc-yt.cfg ] && source ${HOME}/.config/mpc-yt.cfg
ydl=$(which youtube-dl)
yurl=${1:-}
[ -n "${ydl}" ] || fail "Missing youtube-dl command"
[ -n "${yurl}" ] || fail "Missing YouTube URL"
[ -n "${streamalias[${yurl}]:-}" ] && {
info "Found alias \"${yurl}\", continuing with configured URL \"${streamalias[${yurl}]}\""
yurl=${streamalias[${yurl}]}
}
step "Fetching video information..."
title=$(${ydl} -e ${yurl})
playlist=$(${ydl} -g ${yurl})
success "Found \"${title}\""
step "Writing playlist..."
cat -s <<EOF >${HOME}/.config/mpd/playlists/mpc-yt.m3u
#EXTM3U
#EXTINF:0,${title}
${playlist}
EOF
step "Loading playlist and starting playback..."
mpc clear
mpc load mpc-yt
mpc play