Search found 6 matches

by Paulamonopoly
02 Mar 2023, 23:12
Forum: Help and Support
Topic: "No Missing Subtitles"
Replies: 1
Views: 97

"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: 802

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: 802

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: 802

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: 802

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: 802

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...