Progressive Import #100
PurpleBooth
started this conversation in
Ideas
Replies: 2 comments
-
Good work! Thank you. Do you have a ready dockerfile you can provide to me? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Sure FROM ubuntu
RUN apt-get update && apt-get upgrade -y && apt-get install -y git python3 python3-pip ffmpeg
RUN git clone https://github.com/PurpleBooth/audible-cli.git /src && pip install /src
COPY entrypoint.sh /entrypoint.sh
RUN groupadd -g 568 nonroot
RUN useradd -u 568 -g 568 nonroot
USER nonroot
ENTRYPOINT ["/entrypoint.sh"] And an example
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I run this tool in a Kubernetes cluster, and as such it can be restarted at any point if there is resource contestation or whatever. To help with that I made a script that basically does a progressive import across all the profiles. It's the entrypoint to a dockerfile.
I don't really expect to see this as a feature, but sometimes these sorts of things can give a bit of neat insight into how people are using the tool.
.audible
Not sometimes the file naming is a bit screwy and I fallback to the original name of the m4b for author and title, but I have another tool that fixes up my audiobook library so that's not a problem for me.
Beta Was this translation helpful? Give feedback.
All reactions