Created
February 16, 2019 08:44
-
-
Save ryanwoodsmall/16f53db89006f96cfcf6b4d8a2ff6718 to your computer and use it in GitHub Desktop.
loop_an_mp3_with_lame.sh
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 | |
for i in {1..7} ; do | |
echo $i 1>&2 | |
cat the_caretaker-an_empty_bliss_beyond_this_world.mp3 | |
done \ | |
| lame \ | |
--preset standard \ | |
--mp3input \ | |
- \ | |
the_caretaker-an_empty_bliss_beyond_this_world-6hr_loop.mp3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment