A Python-based CLI tool that standardizes audiobook files with clean metadata, cover art, and structured chapters, sourced from Audible. Essential for achieving organized and high-quality audiobook files.
I am getting a couple errors when trying to run the Docker container:
Starting with UID: 99, GID: 100
chown: /config: No such file or directory
Traceback (most recent call last):
File "/usr/local/lib/python3.11/pathlib.py", line 1116, in mkdir
os.mkdir(self, mode)
FileNotFoundError: [Errno 2] No such file or directory: '/.config/m4b-merge'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/bin/m4b-merge", line 5, in
from m4b_merge.main import main
File "/usr/local/lib/python3.11/site-packages/m4b_merge/main.py", line 6, in
from . import audible_helper, config, helpers, m4b_helper
File "/usr/local/lib/python3.11/site-packages/m4b_merge/config.py", line 11, in
Path(config_path).mkdir(
File "/usr/local/lib/python3.11/pathlib.py", line 1120, in mkdir
self.parent.mkdir(parents=True, exist_ok=True)
File "/usr/local/lib/python3.11/pathlib.py", line 1116, in mkdir
os.mkdir(self, mode)
PermissionError: [Errno 13] Permission denied: '/.config'
I've tried to change the UID and GID but nothing works. Any help? Appreciated it
I am getting a couple errors when trying to run the Docker container:
Starting with UID: 99, GID: 100 chown: /config: No such file or directory Traceback (most recent call last): File "/usr/local/lib/python3.11/pathlib.py", line 1116, in mkdir os.mkdir(self, mode) FileNotFoundError: [Errno 2] No such file or directory: '/.config/m4b-merge'
During handling of the above exception, another exception occurred:
Traceback (most recent call last): File "/usr/local/bin/m4b-merge", line 5, in
from m4b_merge.main import main
File "/usr/local/lib/python3.11/site-packages/m4b_merge/main.py", line 6, in
from . import audible_helper, config, helpers, m4b_helper
File "/usr/local/lib/python3.11/site-packages/m4b_merge/config.py", line 11, in
Path(config_path).mkdir(
File "/usr/local/lib/python3.11/pathlib.py", line 1120, in mkdir
self.parent.mkdir(parents=True, exist_ok=True)
File "/usr/local/lib/python3.11/pathlib.py", line 1116, in mkdir
os.mkdir(self, mode)
PermissionError: [Errno 13] Permission denied: '/.config'
I've tried to change the UID and GID but nothing works. Any help? Appreciated it