mirror of
https://github.com/AquaMorph/dotfiles.git
synced 2025-04-29 17:25:34 +00:00
AAX converter
This commit is contained in:
parent
f4686e50f7
commit
083d50f223
11
scripts/audio/aax-convert.sh
Executable file
11
scripts/audio/aax-convert.sh
Executable file
@ -0,0 +1,11 @@
|
||||
#! /bin/bash
|
||||
|
||||
# Load user settings from config file.
|
||||
. ~/.config/settings.conf
|
||||
|
||||
for file in *.aax; do
|
||||
convertedFile="./${file%%.*}.m4b"
|
||||
if [ ! -f "$convertedFile" ]; then
|
||||
ffmpeg -y -activation_bytes ${activation_bytes} -i ./${file} -codec copy $convertedFile
|
||||
fi
|
||||
done
|
Loading…
x
Reference in New Issue
Block a user