You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.
I haven't had time to look at how to implement this in the GUI, but I did come up with a workaround. I ran the GUI once and copied the console output to get my activation_bytes. Then, I downloaded the ffmpeg binary from this repo and made a batch file that points at it:
I hard-coded the output path and bitrate; note that %~n1 is the filename of the first argument minus the extension.
Then, I made a second file to call the first one:
@echooffREM Always run from BAT's working dir cd /d %~dp0for%%fin (%*) DO (
start /low "Transcoding %%~nf" _audible_worker.bat %%f
)
Now, I can drag a bunch of files onto the second batch file in Windows Explorer, and it opens one new window per file so I can transcode them in parallel. It's a good-enough solution as long as you only have one Audible account so your activation_bytes value doesn't change.
This is a great thing.. I'm just wondering is it possible to expand the project to allow for selecting multiple .aax files and converting as a batch?
that would make life much easier... don't you think?
kind regards,
The text was updated successfully, but these errors were encountered: