[amc] Skipping AMC script invocation: input folder not stable.

Support for Ubuntu and other Desktop Linux distributions
Post Reply
dyer
Posts: 2
Joined: 27 Oct 2019, 20:46

[amc] Skipping AMC script invocation: input folder not stable.

Post by dyer »

Hi Guys,

Stumbled across this tool which my initial testing worked perfectly.

Current setup is im running docker in a docker-compose file.

Code: Select all

version: '3.3'
services:
    filebot:
        container_name: filebot
        environment:
            - AMC_INTERVAL=180
            - AMC_INPUT_STABLE_TIME=10
            - AMC_ACTION=TEST
        ports:
            - '5800:5800'
        volumes:
            - '/app/filebot/config:/config:rw'
            - '/app/filebot/temp:/storage:rw'
            - '/data2/sync/landing:/watch:rw'
            - '/app/filebot/output:/output:rw'
        image: jlesage/filebot

Starts up fine, can access web interface if required and have tested it fine putting a single video file in the script and run a test, log below:

Code: Select all

Run script [fn:amc] at [Sun Oct 27 05:37:24 GMT 2019]
Parameter: music = y
Parameter: clean = y
Parameter: excludeList = /config/amc-exlude-list.txt
Parameter: movieFormat = {plex}
Parameter: musicFormat = {plex}
Parameter: seriesFormat = {plex}
Parameter: animeFormat = {plex}
Argument[0]: /watch
LicenseError: UNREGISTERED
Use excludes: /config/amc-exlude-list.txt (1)
Input: /watch/The.Blacklist.S07E04.Kuwait.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Blacklist.S07E04.Kuwait.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv
Group: [Series:the blacklist] => [The.Blacklist.S07E04.Kuwait.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv]
Rename episodes using [TheTVDB]
Auto-detected query: [The Blacklist]
Fetching episode data for [The Blacklist]
Fetching episode data for [Blacklist]
Fetching episode data for [The Blacklist: Redemption]
Fetching episode data for [Black Box]
[TEST] from [/watch/The.Blacklist.S07E04.Kuwait.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Blacklist.S07E04.Kuwait.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv] to [/output/TV Shows/The Blacklist/Season 07/The Blacklist - S07E04 - Kuwait.mkv]
Processed 1 files
Done ヾ(@⌒ー⌒@)ノ
Once testing that i aligned it up with what i call the landing directory which is full of the folders as they get copied, however at this point AMC simply does not want to pick anything up and throws this error in stdout:

Code: Select all

[amc] Skipping AMC script invocation: input folder not stable.
Then stops/loops.

Any suggestions?
User avatar
rednoah
The Source
Posts: 22995
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: [amc] Skipping AMC script invocation: input folder not stable.

Post by rednoah »

1.
Note that this message is generated by your 3rd party docker container, and not filebot or the amc script itself:

Code: Select all

[amc] Skipping AMC script invocation: input folder not stable.
:arrow: You'll want to ask the author of jlesage/filebot for support.


2.
You can compare and contrast your docker container with the official docker container, to see how they're different, and why your 3rd party jlesage/filebot container isn't working:
https://hub.docker.com/r/rednoah/filebot/


:idea: TL;DR You'll want to look at the code for jlesage/filebot to see what it's doing and how it's supposed to work.
:idea: Please read the FAQ and How to Request Help.
dyer
Posts: 2
Joined: 27 Oct 2019, 20:46

Re: [amc] Skipping AMC script invocation: input folder not stable.

Post by dyer »

Thanks for your quick reply! I was not aware there was an official docker, i simply grabbed the top result!

Will go have a look at the differences. I believe i have worked out the issue with the jlesage one, seems if there is any disk operations in that directory at all, it just wont run across the board.
Post Reply