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/env bash | |
| # converts .flac files to .mp3 (320kbps) using ffmpeg | |
| # descends into subdirectories when using maxdepth of 2 or greater (default: 1) | |
| # requirements: bash and ffmpeg | |
| # run this script conveniently by adding an alias to ~/.bashrc | |
| # alias convertflacs="path/to/your/convertflacs.sh" | |
| # usage: |