]> git.donarmstrong.com Git - bin.git/blob - audio_from_youtube
we only need the CreateDate and the Serial out of image info
[bin.git] / audio_from_youtube
1 #!/bin/bash
2
3 for youtube in "$@"; do
4     youtube-dl --extract-audio "${youtube}";
5 done;
6