Search found 8 matches

by Paulamonopoly
16 Jul 2023, 01:01
Forum: Help and Support
Topic: Specify renaming pattern for subtitles based on TV or Movie
Replies: 3
Views: 525

Re: Specify renaming pattern for subtitles based on TV or Movie

Firstly, thanks for your response, I hadn't realized you replied so quick... All my subtitles come in from the same folder, so while using -db TheMovieDB would be fantastic, it also tries to rename my TV Shows to unrelated Movies such as The Walking Dead Movie TMDb ID: 27115, so I thought I'd run TV...
by Paulamonopoly
15 Jul 2023, 20:41
Forum: Help and Support
Topic: Specify renaming pattern for subtitles based on TV or Movie
Replies: 3
Views: 525

Specify renaming pattern for subtitles based on TV or Movie

Hello, I'm currently renaming subtitles and moving them around etc, however I can only seem to set one pattern for subtitle renaming, is there a way to specify the pattern based on the information detected from the file. Ubuntu 20.04 server Using CLI / AMC This works, however uses this formatting fo...
by Paulamonopoly
02 Mar 2023, 23:12
Forum: Help and Support
Topic: "No Missing Subtitles"
Replies: 1
Views: 358

"No Missing Subtitles"

Hello, I'm currently trying to get subtitles for my library. My file format is .m3u8 with playlist chunks and the file structure for my movies and shows is as follows. Movies Format: /TMDB_ID/TMDB_ID.m3u8 Example: /616037/616037.m3u8 Shows Format: /TMDB_ID/Season/Episode/Episode.m3u8 Example: /1402/...
by Paulamonopoly
19 Sep 2022, 21:44
Forum: Scripting and Automation
Topic: sh: 1: Curl: not found
Replies: 7
Views: 2200

Re: sh: 1: Curl: not found

I have now resolved that, when using a curl exec with & you need to backslash it for example: filebot -script fn:amc --output "/home" --action move -non-strict "/home/test" --def movieDB=TheMovieDB seriesDB=TheMovieDB::TV movieFormat="/home/purgatory/Movies/{id}/{id}&quo...
by Paulamonopoly
19 Sep 2022, 21:00
Forum: Scripting and Automation
Topic: sh: 1: Curl: not found
Replies: 7
Views: 2200

Re: sh: 1: Curl: not found

I have since resolved it by going into the .sh file and trying step by step... The issue I'm having now is my curl command has "&" in it which means my URL needs to be surrounded by single quotes, this is now causing issues because filebot cannot understand exec="curl 'example.com...
by Paulamonopoly
19 Sep 2022, 19:30
Forum: Scripting and Automation
Topic: sh: 1: Curl: not found
Replies: 7
Views: 2200

Re: sh: 1: Curl: not found

That tutorial results in the error: E: Unable to locate package filebot I'm running ubuntu 20.04.4 LTS (Focal Fossa) server so I'm not sure if that has anything to do with it ? Full log from: curl -fsSL https://raw.githubusercontent.com/filebot/plugins/master/installer/deb.sh | sh -xu + uname -a Lin...
by Paulamonopoly
19 Sep 2022, 13:00
Forum: Scripting and Automation
Topic: sh: 1: Curl: not found
Replies: 7
Views: 2200

Re: sh: 1: Curl: not found

1) cURL is definately installed the return of curl --help returns available functions and the return of which curl is:

Code: Select all

/usr/bin/curl
2) I do believe this is a closer diagnostic of my problem though as FileBot is installed via snap, which filebot:

Code: Select all

/snap/bin/filebot
by Paulamonopoly
18 Sep 2022, 22:18
Forum: Scripting and Automation
Topic: sh: 1: Curl: not found
Replies: 7
Views: 2200

sh: 1: Curl: not found

Hello everyone, I've been running an amc script on my ubuntu machine for a few months now with zero hitches, however recently I've been trying to get it to do a curl command after every import of a movie using the following: filebot -script fn:amc --output "/home" --action move -non-strict...