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
| #!/usr/bin/env bash | |
| # Download a podcast episode from anchor.fm | |
| # | |
| # Usage: | |
| # grab-anchor-episode https://anchor.fm/emerge/episodes/Robert-MacNaughton---Learnings-from-the-Life-and-Death-of-the-Integral-Center-e31val | |
| # | |
| # anchor.fm serves a list of m4a files that need to be concatenated with ffmpeg. | |
| set -eu -o pipefail |