Search found 7 matches

by schossel
13 Jul 2019, 13:56
Forum: Feature Requests and Bug Reports
Topic: BUG: 4.8.5 on Linux CLI seems to send wrong argument when catching artwork
Replies: 4
Views: 3254

Re: BUG: 4.8.5 on Linux CLI seems to send wrong argument when catching artwork

If xattrb support is disabled, it wasn't intentionally. Even if that would be the cause, I wouldn't understand why it works with 4.8.2 but not 4.8.5.
What caught my eye is the fact that in 4.8.5, there's a movie part and series part when recognizing the movie name. If it's amovie, the series part is ...
by schossel
12 Jul 2019, 19:01
Forum: Feature Requests and Bug Reports
Topic: BUG: 4.8.5 on Linux CLI seems to send wrong argument when catching artwork
Replies: 4
Views: 3254

BUG: 4.8.5 on Linux CLI seems to send wrong argument when catching artwork

Hi,
I was running 4.8.2 on Linux CLI until yesterday and it was working fine. Here's the output from a movie running 4.8.2:


Input: /home/USER/Movies/Der.Tag.des.Falken.1985/Der.Tag.des.Falken.1985/Der.Tag.des.Falken.1985.mkv
Group: [mov:ladyhawke 1985] => [Der.Tag.des.Falken.1985.mkv]
Rename ...
by schossel
19 Nov 2017, 18:04
Forum: Scripting and Automation
Topic: [Linux] Command Line option to rename artwork with filename?
Replies: 7
Views: 5675

Re: [Linux] Command Line option to rename artwork with filename?

Quick 'n dirty...

Assuming a file structure like:

/home/mypc/movies/
|__ Star Wars (1978)
|__ Star Wars 720p AC3.avi
|__ folder.jpg
|__ movie.nfo
|__ logo.png

#!/bin/bash
for folder in /home/mypc/movies/*
do
cd "$folder";
filename_for_rename_with_extension=$(find . -name *.avi -o -name ...
by schossel
19 Nov 2017, 14:15
Forum: Scripting and Automation
Topic: [Linux] Command Line option to rename artwork with filename?
Replies: 7
Views: 5675

Re: [Linux] Command Line option to rename artwork with filename?

Yeah, I considered doing that but I wanted to aks before I do unnecessary work.
by schossel
19 Nov 2017, 13:57
Forum: Scripting and Automation
Topic: [Linux] Command Line option to rename artwork with filename?
Replies: 7
Views: 5675

[Linux] Command Line option to rename artwork with filename?

Hi,
I'm using the latest Linux version on the command line with the following code:
sudo filebot -script fn:amc --action move -non-strict "/home/computer/movies" --log-file amc.log --def skipExtract=y --def unsorted=y --lang German --def artwork=y --def minFileSize=150 --def movieFormat="/home ...