Quantcast
Channel: uncategorized - Forum - FlexGet
Viewing all 376 articles
Browse latest View live

Rename S01E10 to 10

$
0
0

@najmudin94 wrote:

how to rename identified_by: ep to sequence
example "One Piece S01E10 1080p" to "One Piece - 10 - 1080p"

Posts: 7

Participants: 3

Read full topic


{{series_name}} does NOT work for qBittorrent!

$
0
0

@chip wrote:

Variable in example doesn't work. Instead, it creates the folder literally called {{series_name}}
Quotation marks and apostrophes do not make a difference.
Forward or backward slashes do not make a different.
Windows machine. Python 2.7. Flexget 2.13.2

qbittorrent:
  path: P:/Pending/{{series_name}}/
  host: localhost
  port: 8888

Have also tried numerous other configurations with path. For example

series:
settings:
set:
path: P:/Pending/{{series_name}}/

Just simply does not want to use the variable whatsoever.
Worth nothing this works fine in uTorrent, however trying to switch to qBittorrent
Everything else working fine so appears to just not be supported / meant to be used in this manner

Please add the {{series_name}} ability to work with qBittorrent!

Posts: 2

Participants: 2

Read full topic

Strange behaviour with "target" plugin

$
0
0

@1337ingDisorder wrote:

I'm having a weird issue with my flexget config. I've specified a range of qualities to download, and have set a specific target quality.

I've set the target as 720p h265, and in general it behaves properly. But sometimes it will successfully download a file in 720p HEVC, then a day or two later someone will release it in 1080p h264, and flexget will download the torrent for that release even though it's already satisfied the target at 720p/h265.

Here's my config:

templates:

  tv:
    series_premiere: yes
    series:
      settings:
        720p-1080p:
          quality: 720p-1080p
          target: 720p h265
          timeframe: 3 hours
          tracking: no
          propers: no
      720p-1080p:
        - (show list snipped for brevity)

    download: /storage/media/torrents/.torrents/

tasks:
  TorrentDay:
    rss: (snipped to remove private API key)
    template: tv

Posts: 1

Participants: 1

Read full topic

About regex syntax

$
0
0

@newflexgetman wrote:

Hi,
According to this article, https://flexget.com/Plugins/regexp_parse, there is a syntax writing (?<=. What is this? I know ? its meaning on regex. But, in here, what is it? In line 8 and 11, there are same symbol ?= inside. Wish some help.

1 regexp_parse:
  2 source: http://username:password@ezrss.it/feed/
  3 sections:
    4 - {regexp: "(?<=<item>).*?(?=</item>)", flags: "DOTALL,IGNORECASE"}

  5 keys:
    6 title:
      7 regexps:
        8 - {regexp: '(?<=<title><!\[CDATA\[).*?(?=\](/).*?(?=\)\]></title>)'} #comment
    9 url:
      10 regexps:
        11 - {regexp: "magnet:.*?(?=])"}
    12 custom_field:
      13 regexps:
        14 - {regexp: "custom regexps", flags: "comma seperated list of flags (see python regex docs)"}
      15 required: False
    16 custom_field2:
      17 regexps:
        18 - {regexp: 'first custom regexps'}
        19 - {regexp: 'can't find first regexp so try this one'}

Posts: 3

Participants: 2

Read full topic

Unable to Create Process in "" when I try to launch flexget-headless.exe

$
0
0

@joneso87 wrote:

I have no idea what my issue is. There's nothing in the log and by all indications flexget-headless.exe is not launching in anyway. All I get is the windows error window "Fatal Error in Launcher" with the text "Unable to create process in "" " inside the box. Anyone have any ideas about how to solve this? Currently running the latest version 2.13.6.

Posts: 1

Participants: 1

Read full topic

Override timeframe?

$
0
0

@Loader23 wrote:

Hi,

is it possible to override a timeframe? I have this config:

series:
    settings:
      TV-Shows:
        timeframe: 48 hours
        target: 1080p
        quality: 720p-1080p
    TV-Shows:
        - Series

I want some series to download as soon 720p is available. I tried it with

TV-Shows:
            - Series:
              quality: 720p

But this setting does not change anything.

Posts: 4

Participants: 3

Read full topic

Using Deluge With Flexget

$
0
0

@Mike_Jones wrote:

I am trying to use deluge with my flexget set-up and everything runs as it should until it gets to the point of adding the torrents to deluge. Then I get this message

Connection lost to daemon at localhost:58846 reason: Connection was cleosed cleanly

Posts: 30

Participants: 4

Read full topic

Problem with torrentleech

$
0
0

@jraa wrote:

Hello,

Can someone help me with the configuration file to include the rss of torrentleech?

Thanks.
João

Posts: 1

Participants: 1

Read full topic


Tranmission plugin does not seem to work or being detected

$
0
0

@parisbyday wrote:

Hello,

I am trying to configure flexget with transmission.
Flexget: 2.13.15
API: 1.4.3
I have a docker environnement and i use https://github.com/cpoppema/docker-flexget.
in the logs i can see an error message below
2018-05-06 14:31 DEBUG task_queue task books aborted: TaskAbort(reason=BUG: Unhandled error in plugin torrent_files: u'files', silent=False)
2018-05-06 14:31 DEBUG scheduler all tasks in schedule finished executing

2018-05-06 14:31 CRITICAL task books BUG: Unhandled error in plugin torrent_files: u'files'
2018-05-06 14:31 CRITICAL manager books An unexpected crash has occurred. Writing crash report to /config/crash_report.2018.05.06.143138117474.log. Please verify you are running the latest version of flexget by using "flexget -V" from CLI or by using version_checker plugin at http://flexget.com/wiki/Plugins/version_checker. You are currently using version 2.13.15
2018-05-06 14:31 DEBUG manager books Traceback:
Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/flexget/task.py", line 486, in _runplugin
return method(*args, **kwargs)
File "/usr/lib/python2.7/site-packages/flexget/event.py", line 23, in call
return self.func(*args, **kwargs)
File "/usr/lib/python2.7/site-packages/flexget/plugins/metainfo/torrent_files.py", line 20, in on_task_modify
files = [posixpath.join(item['path'], item['name']) for item in entry['torrent'].get_filelist()]
File "/usr/lib/python2.7/site-packages/flexget/utils/bittorrent.py", line 236, in get_filelist
for item in self.content['info']['files']:
KeyError: u'files'
2018-05-06 14:31 WARNING task books Aborting task (plugin: torrent_files)

my configuration is maybe wrong but seems simple :slight_smile:

web_server: yes

schedules:
- tasks: '*'
interval:
minutes: 1

tasks:
books:
rss: 'https://yggxxxxxx.is/rss?type=1&parent_category=2140'
regexp:
accept:
- equipe
- Equipe
- Lucky
- Magazine
- Parisien
- Monde
- Provence
- Elle
- Midi
- Figaro
- Liberation
transmission:
enabled: yes
host: 192.168.1.100
port: 9091

Many Thanks in advance for your feedback,

Posts: 1

Participants: 1

Read full topic

Torrentleech - Search returns no results due to search format

$
0
0

@Fabrizio_Bottaro wrote:

Seems torrentleech plugin is only using one search format when using discover search plugin.

https://www.torrentleech.org/torrents/browse/list/query/The%20Blacklist%20%282013%29%20S05E20/categories/32

Which decodes to.

https://www.torrentleech.org/torrents/browse/list/query/The Blacklist (2013) S05E20/categories/32

is there a way for me to strip year? or use the same search method as say alpharatio which goes through and searches in 3-4 different formats. If I remove the year in brackets its working fine.

https://www.torrentleech.org/torrents/browse/list/query/The Blacklist S05E20/categories/32

I just get this error for all searches
Error searching with torrentleech: No JSON object could be decoded

Running version 2.13.15 on debian.

Posts: 7

Participants: 2

Read full topic

Coming soon imdb plugin

$
0
0

@chewy74 wrote:

Since imdb website doesn't offer rss for section for all movies coming out soon, is it possible to make a plugin that will parse and import it to the movie_list. Using imdb filters to accept, or reject.

It's not a user list so no login credentials are required to get to the list

I think it would be a great plugin for movies

Thanks

Posts: 1

Participants: 1

Read full topic

Remove "seen" entries via config and some trakt magic?

$
0
0

@jgrn307 wrote:

Given a situation where a "bad" copy of something downloads via my trakt list, I'd like to 1) delete the bad copy from my system (e.g. get it so "exists" doesn't see the file anymore) and 2) mark it as "uncollected" and "unwatched" in trakt to force a re-download. I'm not sure how to do this though -- how do I effectively forget a download given this situation? I can use forget manually, but I want to have this via the config.

Posts: 1

Participants: 1

Read full topic

Crypto miner - unknown origin, flexget as a suspect

$
0
0

@dcabro wrote:

Hi guys, somehow I've got a cryptominer on my debian (osmc) box. At fist, I thought it came via 3rd party kodi streaming addon so after I was unable to remove it, I reinstalled the whole box (raspberry 3 with OSMC). This time, I installed only official packages and official kodi addons - except for flexget. And the damn thing came back. I have posted on osmc forums but so far no much help from that side - the instruction is reinstall everything and do not install flexget - since it is the only unofficial software installed.

Can you guys help please?

Posts: 4

Participants: 2

Read full topic

imdb_watchlist more than 250 items workaround

$
0
0

@snickers2k wrote:

just saw that imdb api for watchlist is now restricted to 250 entries.
i have around 2000 in my watchlist, so thats not gonna work.

here is my work around, if someone needs it

its based on csv download of the watchlist and load it with csv plugin

  ######################################## Get imdb watchlist
  ## imdb API (used by imdb_list-plugin) is now restricted to 250 entries - everything above results in error
  ## CSV workaround:
  Get_IMDb_Watchlist:
    interval: 1 hours
    template:
      - no_seen
      - no_global
    priority: 1
    no_entries_ok: yes
    exec:
      on_start:
        phase: 
          - "cd {? html.path ?}/ && rm WATCHLIST.csv; wget http://www.imdb.com/list/ls{? imdb.usrID ?}/export && chmod +x WATCHLIST.csv"
          
  ######################################## Sync Trakt/IMDb Movie-Watchlist to Flexget-Queue
  ## imdb API (used by imdb_list-plugin) is now restricted to 250 entries - everything above results in error
  ## CSV workaround:
  Sync_Movies:
    interval: 24 hours
    template: no_global
    priority: 2
#    imdb_watchlist:
#      user_id: 'ur{? imdb.usrID ?}'
#      list: watchlist
#      force_language: de-de
    csv:
      url: http://localhost/WATCHLIST.csv
      values:
        title: 6
        imdb_id: 2
        imdb_url: 7
        url: 7
    accept_all: yes
    seen: local
    crossmatch:
      from:
        - trakt_list:
            account: '{? trakt.acc ?}'
            list: collection
            type: movies
      fields:
        - imdb_id
      action: reject
    list_add:
      - movie_list: Default
      - trakt_list:
          account: '{? trakt.acc ?}'
          list: watchlist
          type: movies

Posts: 1

Participants: 1

Read full topic

Subreddit RSS, E-mail notification of new posts?

$
0
0

@bmilcs wrote:

Hi,

Can someone help me write a script that notifies me via e-mail when an a custom RSS receives an update?

Posts: 1

Participants: 1

Read full topic


How to get rid of a show

$
0
0

@effemmeffe wrote:

I use a trakt custom list for my shows.
In the past I put the series Six in the custom list and I got it downoloaded.
Then I got bored and removed from my custom list, but I still getting episodes downloaded.

I see the show in my database:

flexget series list

Six │ - │ S02E09 │ 4d 2h │ 720p hdtv h264 │ ep

I tried to forget it:

fmf@kodi:~$ flexget series forget Six
There is a FlexGet process already running for this config, sending execution there.
Removed series `Six` from database.

I also deleted every folder with the name Six on my drive becuse my config scans it for series.
So I don't have the series in my trakt custom list, I told flexget to froget it and I don't have any folder named six on my HD, why am I still getting episodes?
What do I check?

Posts: 3

Participants: 2

Read full topic

Limit search_rss emits to just one

$
0
0

@viking wrote:

I am using discover and search_rss plugins. Torrent service that I am using for TV series doesn't have an option to generate RSS feed based on a query, so I made intermediate web page that redirects flexget search requests and returns RSS from scrapped html results.

I noticed in my logs that flexget sends at least 4 requests for every episode of any series:

search: Castle Rock (2018) S01E05 | Date: 08.08.2018 09:00:42
search: Castle Rock (2018) 1x05 | Date: 08.08.2018 09:00:42
search: Castle Rock S01E05 | Date: 08.08.2018 09:00:43
search: Castle Rock 1x05 | Date: 08.08.2018 09:00:44

Is there a way to limit those emits to just one, since I never liked the idea of hammering any web server without proper need?

I can immediately return empty RSS back to flexget for anything that doesn't match first regex and just make one request to search engine, but I am wandering if there is a option in felexget to limit those emits?

Posts: 2

Participants: 2

Read full topic

Looking for Advice to Cleanup Settings

$
0
0

@SumRndUsr wrote:

So I've been using flexget for a few years to download anime because things like Sonarr still have weird issues. Using transmission means no real flexible RSS support and I am totally fine with that.

One issue I've been having is that when I want new shows to come from certain groups, I find my cloning my tasks and changing the rss feed.

Is there any way to override the RSS url for a single show while keeping all the other settings?

I have been using nyaa's inbuilt queries to limit to a user and quality which has been working great.

Example: "https://nyaa.si/?page=rss&q=720p&c=0_0&f=0&u=HorribleSubs"

Posts: 1

Participants: 1

Read full topic

How can I move series to their season dirs EXCEPT one?

$
0
0

@keksznet wrote:

hi there,
is it possible to move all series to their season dirs, EXCEPT one? as that should NOT be moved to "/Season.{{ series_season|pad(2) }}", BUT in series_year or just hardcoded into Series/2018 folder.
I tried to "if XY in title", and then move
But after the general "move" is also executed...
Or I have to add 2 tasks, like the general one, with regexp and reject the one
For which I have to add a new task and only move that? /// maybe this is the best way, isn't it?
thanks! any idea is welcome

Posts: 2

Participants: 2

Read full topic

FlexGet on Docker, libtorrent python bindings installed

$
0
0

@Anthony wrote:

Hey,

I just want to share what I've been working on: minimal Docker image (Alpine) to setup FlexGet with libtorrent python bindings installed (this is what I found to be the hard part unless I want a "full OS").

The images are "useless" if you don't need the libtorrent python bindings, as they can be smaller without them.
libtorrent alone takes 50 to 60 MB of the ~120MB of the image.

Other than basic CLI interface capabilities these images have nothing but:
- Python
- Pip
- FlexGet
- libtorrent python bindings

I haven't dabbled much into FlexGet configuration so I am no big help there, I've been using Jonybat's configuration.

I built images with all combinations of:
- python 3.6.6 or python 2.7.15
- x86 or arm (to run on Raspberry Pi)
- FlexGet versions 2.17.6 (latest) and 2.11.21 (the one I currently use because of FlexGet issue 2071 on GitHub ("Sorry, new users can only put 2 links in a post."))

For anyone interested in the images or source all the information is in the repository along with my own example configuration how to build on top of these, including a docker-compose that sets up both FlexGet and Transmission containers.

Hopefully the READMEs in the repositories are good enough for anyone with minimal Docker knowledge (or even without, if possible!).

Posts: 3

Participants: 2

Read full topic

Viewing all 376 articles
Browse latest View live