for m in *.flac; do ffmpeg -i "$m" -acodec alac "${m%.flac}.m4a"; done
In case when the .flac
contains the picture additionally to the audio stream
for m in *.flac; do ffmpeg -i "$m" -c:a alac -c:v copy "${m%.flac}.m4a"; done
${m%.flac}
- the filename without extension
[email protected]:yourworkspace/yourrepository.git
for branch in `git branch -r`; do git push $NEW_REPO ${branch#*/}:${branch#*/}; done