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
id,name,amount | |
109,"building",1456894 | |
164,"house",1383613 | |
7,"Shopping and services",839415 | |
17,"store / shop",831628 | |
203,"school",676869 | |
4,"dining and leisure",671035 | |
74,"restaurant",385073 | |
194,"park",283545 | |
163,"sport venue",274433 |
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 | |
convert_dir=$1 | |
output_dir=$2 | |
bitrate=$3 | |
# Ensure require params are passed in | |
if [ -z $convert_dir ] || [ -z $output_dir ]; | |
then | |
echo "Usage: flac2mp3 rip_dir output_dir [bitrate]" | |
exit |