mirror of
https://github.com/AquaMorph/dotfiles.git
synced 2026-05-06 11:06:04 +00:00
AAX converter
This commit is contained in:
Executable
+11
@@ -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
|
||||||
Reference in New Issue
Block a user