Created
September 29, 2018 21:44
-
-
Save drench/863f8a07eeefaf1f9090901cfd432872 to your computer and use it in GitHub Desktop.
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/sh | |
dir=$(mktemp -d) | |
unzip "$1" -d "$dir" | |
for f in $dir/*.m4a; do | |
echo "converting $f to mp4…" | |
afconvert -f mp4f "$f" | |
done | |
castnow $dir/*.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This plays Bandcamp downloads that are zipped m4a (Apple Lossless) on a Chromecast. It depends on https://github.com/xat/castnow.