Search found 14 matches

by updatefreak
24 Dec 2025, 07:10
Forum: Scripting and Automation
Topic: ntfy notification
Replies: 2
Views: 6071

Re: ntfy notification

ok, thanks a lot. I will try
by updatefreak
23 Dec 2025, 18:43
Forum: Scripting and Automation
Topic: ntfy notification
Replies: 2
Views: 6071

ntfy notification

This is my current docker compose with email notification.
Now I want to use my selfhosted ntfy server.
I checked this explanation https://www.filebot.net/forums/viewtopic.php?t=13769#notify-via-ntfy but not fully sure how to define it then in the docker compose (FYI: I have also a user and passwort ...
by updatefreak
16 Sep 2025, 10:57
Forum: unRAID & docker
Topic: Bad movieFormat value and bad seriesFormat value
Replies: 2
Views: 24012

Re: Bad movieFormat value and bad seriesFormat value

thanks a lot for the quick reply.
Yes, AMC_CUSTOM_OPTIONS works as expected.
So I will also remove the "
by updatefreak
16 Sep 2025, 05:16
Forum: unRAID & docker
Topic: Bad movieFormat value and bad seriesFormat value
Replies: 2
Views: 24012

Bad movieFormat value and bad seriesFormat value

Hi,

I use the following docker compose for FileBot:
services:
filebot:
container_name: FileBot
image: jlesage/filebot
ports:
- 5802:5800
volumes:
- /volume1/docker/filebot:/config:rw
- /volume1:/storage:rw
environment:
- USER_ID=1026
- GROUP_ID=100
- LANG=de_DE.UTF-8
- TZ=Europe ...
by updatefreak
04 Mar 2024, 05:41
Forum: Ubuntu & Desktop Linux
Topic: E-Mail report Authentication required
Replies: 3
Views: 11591

Re: E-Mail report Authentication required

I tried it now again with GMX-Mail in the docker compose with

- AMC_CUSTOM_OPTIONS="--def mail=mail.gmx.net:587:[email protected]:[email protected]:12345678910"

Here I got the error: Argument[1]: File does not exist: /etc/services.d/amc/mail.gmx.net:587:[email protected]:[email protected]:12345678910
Is here ...
by updatefreak
13 Aug 2023, 12:22
Forum: Scripting and Automation
Topic: {lang} and {subt} fail on files named *.eng.Forced..sub
Replies: 4
Views: 2821

Re: Questen to eng.forced subtitles

console output is e.g.

[amc ] Auto-detect movie from context [/storage/docker/jdownloader2/output/extracted/World War Z (2013).eng.idx]
[amc ] Auto-detect movie from context [/storage/docker/jdownloader2/output/extracted/World War Z (2013).eng.sub]
[amc ] Auto-detect movie from context [/storage ...
by updatefreak
13 Aug 2023, 11:40
Forum: Scripting and Automation
Topic: {lang} and {subt} fail on files named *.eng.Forced..sub
Replies: 4
Views: 2821

{lang} and {subt} fail on files named *.eng.Forced..sub

Hi,

I have a question regarding the subtiles. I configured filebot as follows:
-e AMC_MOVIE_FORMAT="Filme/{~jellyfin}" \
-e AMC_SERIES_FORMAT="Serien/{~jellyfin}" \

Aim is to have:
movie.eng.forced.sub
movie.eng.sub
movie.ger.forced.sub
movie.ger.sub

But I in my case
movie.eng.forced.sub
is ...
by updatefreak
09 Aug 2023, 10:58
Forum: Ubuntu & Desktop Linux
Topic: E-Mail report Authentication required
Replies: 3
Views: 11591

Re: E-Mail report Authentication required

Thank you for you answer.
I tried it with Gmail and that worked without problems :)
by updatefreak
08 Aug 2023, 16:47
Forum: Ubuntu & Desktop Linux
Topic: E-Mail report Authentication required
Replies: 3
Views: 11591

E-Mail report Authentication required

Hi,

I have currently a problem to automatically send a report.
I setup a docker container as follows:

docker run -d --name=FileBot \
-p 5802:5800 \
-e USER_ID=1026 \
-e GROUP_ID=100 \
-e LANG=de_DE.UTF-8 \
-e TZ=Europe/Berlin \
-e AMC_ACTION=move \
-e AMC_CONFLICT=skip \
-e AMC_LANG=German \
-e ...
by updatefreak
06 Aug 2023, 11:07
Forum: unRAID & docker
Topic: Combine FileBot and JDownloader (both as Docker-Container)
Replies: 8
Views: 58093

Re: Combine FileBot and JDownloader (both as Docker-Container)

found now a solution for me:

docker run -d --name=FileBot \
-p 5802:5800 \
-e USER_ID=1026 \
-e GROUP_ID=100 \
-e LANG=de_DE.UTF-8 \
-e TZ=Europe/Berlin \
-e AMC_ACTION=move \
-e AMC_CONFLICT=skip \
-e AMC_LANG=German \
-e AMC_MOVIE_FORMAT="Filme/{n}/{n} ({y})" \
-e AMC_SERIES_FORMAT="Serien/{n ...
by updatefreak
05 Aug 2023, 10:35
Forum: unRAID & docker
Topic: Combine FileBot and JDownloader (both as Docker-Container)
Replies: 8
Views: 58093

Re: Combine FileBot and JDownloader (both as Docker-Container)

Now I changed to filebot-watcher in a docker container (without trigger through JDownloader).

Here I got the following error message:

Waiting 300 seconds for changes to settle down...
Run script [fn:amc] at [Sat Aug 05 10:30:30 GMT 2023]
[PSA] Important Discussion of Changes effective as of 28 ...
by updatefreak
04 Aug 2023, 20:33
Forum: unRAID & docker
Topic: Combine FileBot and JDownloader (both as Docker-Container)
Replies: 8
Views: 58093

Re: Combine FileBot and JDownloader (both as Docker-Container)

thanks for the quick answer and the information. I will check.
Now I have Jdownloader (lesage/jdownloader-2) and FileBot (jlesage/filebot) installed, because I can not build my own docker container with both included.
The jdownloader-postprocess.sh I copied to /volume1/docker/jdownloader2/scripts ...
by updatefreak
03 Aug 2023, 21:27
Forum: unRAID & docker
Topic: Combine FileBot and JDownloader (both as Docker-Container)
Replies: 8
Views: 58093

Combine FileBot and JDownloader (both as Docker-Container)

Hello,

I have JDownloader as Docker-Container and would like to add also FileBot for automatism:
Download finished -> Extract archives (contain several parts) -> rename mkv-files and srt-files -> move to tv-shows or movie-folder or unsorted-Folder -> clean up and remove archives

Therefore I want ...