coppit

Community Developer
  • Posts

    498
  • Joined

  • Last visited

Everything posted by coppit

  1. Look up higher in the output. There's probably an error with the no-ip domain registration. I've pushed a change that should help make that more clear. Also, keep your noip.conf separate from the generated one.
  2. Hey RXWatcher, Thanks for the detailed instructions. I'm working on getting a template going for it. I have the container running, but any time I click on the name of my server in the "connections" page, I get the error below. Any ideas? I restarted libvirt with "/etc/rc.d/rc.libvirt restart" instead of the UI, but I don't think that matters. I'm running unraid 6.3.2. Also, why did you give it your /mnt/user path? Oops! 500 Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete you request.
  3. Okay. I just pushed an update. I had to learn "expect" in order to interact with the client to write the new binary config file. I feel dirty. In other news, this is my most popular docker container with 100K pulls. I had no idea!
  4. Looks like they have a new client "noip2". Unfortunately it requires running it on the command line in order to configure it. I'll have to do a little work to get around that.
  5. I just pushed a new version that sets the locale to en_US.UTF-8. Please try it.
  6. I can't fix it without more info. It doesn't happen for me. When that happens, please go to unraid's docker tab, find the filebot container, click the log icon on the right side, copy the last part of the log, and send it to me.
  7. Is it possible to get a decent 2 socket ATX motherboard? Last time I looked it was mostly server form factor. I had trouble with crackling audio. I had to fiddle around with dedicating USB controllers and CPU threads to the VMs. I did a little more searching today, and "screen freezes but game continues" yields tons of results. So maybe it's not specific to my setup. I'm trying it without battle.net running in the background. Hopefully that fixes it.
  8. One data point on the CPU bottleneck. The E5 you mentioned has about the same perf as my E3-1245v2. http://cpuboss.com/cpus/Intel-Xeon-E5-2670-vs-Intel-Xeon-E3-1245-v2 We play overwatch on two GTX960's. It took some fiddling for me to get everything dialed in. 99% of the time things are fine, but 1% of the time I get a weird video "freeze" for 10 seconds. (Audio and controls still work.) Then it unfreezes and everything is fine.
  9. Okay, what I've done is dropped perl, and instead written a check for it. If it doesn't exist, then the plugin installation fails, and asks the user to install Nerd Pack.
  10. I bumped it to the latest version last night.
  11. I don't really use it much any more, so I can't say that's it's well-maintained. (As you can see from this delayed reply.) LMK if you have a particular question.
  12. In your config dir, after you start the container for the first time, will be a filebot.sh file. You can edit MUSIC_FORMAT, MOVIE_FORMAT, and SERIES_FORMAT there. It's a bash script, so be careful about your syntax. Unfortunately, the AMC plugin for filebot doesn't have the greatest documentation. But you should be able to get "Movienamehere" and whatever else you want.
  13. I've added the mediainfo one. It was preventing mp3s from being processed. What's libchromaprint-tools for?
  14. In case you haven't guessed, I'm not really supporting it too much. It was a short-lived experiment on my part. (It munged websites too much for my taste.) That said, if you find something that seems more robust, let me know and I'll take a look.
  15. Increase MAX_WAIT_TIME in the config file. Or unpack into a temp directory, then move into the directory that filebot is monitoring.
  16. Hm... I opened two shells on my server. I ran this in one: inotifywait -r -m -q --format 'EVENT=%e WATCHED=%w FILE=%f' /mnt/user/temp Then I ran this in the other: echo foo > /mnt/user/temp/a The inotifywait command saw the change: EVENT=CREATE WATCHED=/mnt/user/temp/ FILE=a EVENT=OPEN WATCHED=/mnt/user/temp/ FILE=a EVENT=MODIFY WATCHED=/mnt/user/temp/ FILE=a EVENT=CLOSE_WRITE,CLOSE WATCHED=/mnt/user/temp/ FILE=a I also tried subdirectories, and it worked fine. Maybe you could run my experiment yourself, using /mnt/user/Media/Downloads/completed/?
  17. You and I both suspect that your password has "special characters" in it that are causing problems. $ " \ are examples of characters that can cause you grief. Example of how you need to put a backslash before those characters: $ OPENSUBTITLES_PASSWORD="\$a'/\"\\" $ echo $OPENSUBTITLES_PASSWORD $a'/"\ If you're still having trouble, I could put a message in the log to show you what password the code sees.
  18. Can you PM me your log? Also mention when a move from /incomplete to /complete happens (timestamp). Edit: Also note that if there is other activity going on in the watched folder, the monitor will wait for MAX_WAIT_TIME for the changes to stop. (Default 1 minute.)
  19. Done. New release soon. Looks like a couple of other people tried "move", and it didn't work. Thanks for finding the issue.
  20. My ini has "serverpassword=foo". I wouldn't use the register stuff. Just tell your friends to click "add server", and enter your fqdn, and the right port number. When they connect, it will prompt them for the password. If it doesn't then something's wrong with your port forwarding. Make sure you have it set up properly for your container in addition to your router.
  21. Googling a bit, I see others complaining about the CPU usage too: https://www.filebot.net/forums/viewtopic.php?t=3438 You might explore whether there's a way to run the docker container "nice" so that even if there's 100% CPU, it will give it up to any other process that needs it.
  22. That's a filebot issue, I guess. If you updated your filebot.sh to have "--action move" and it's still not working, you could try deleting the "--action move" entirely. The default action is to move. You could also throw in an "echo 'blah'" to make sure your version of the script is being run.
  23. Oops. Sorry. I was referring to the CLI version. I've now bumped the UI version too. Thanks for this! I've updated the container so that you can map /config to /mnt/cache/applications/filebot/config/, which is hopefully easier for folks.