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

How to accept only last X entry

$
0
0

@Chryses wrote:

Hi, I want to pass to download client only X accepted.

So I tried with:

tasks:
  mytask:
    limit:
      amount: 3
      from:
        rss:
          url: file:///tmp/rss/ZTJjZGM4.xml

But this parse only 3 items on the xml.
I want to parse all file, so e.g. there’s 20 accepted, then pass only 3 (first, last, random is not important) to download client.

Do you think is possible to do that?

Posts: 1

Participants: 1

Read full topic


Flexget.com is offline

Flexget task error when daemon is started, works manually though

$
0
0

OS: Debian (in a Docker)
Flexget version: 3.5.1

If i dont enable the daemon and simply call flexget via cronjob, everything works fine.
however when i enable the daemon to enable the web ui. While the web UI works fine, My flexget cron doesnt execute normally. I see the following in flexget log

2020-04-20 21:52:02 ERROR manager Task queue has died unexpectedly. Restarting it. Please open an issue on Github and include any previous error logs

I have tried setting a schedule in flexget config but that doesn work either. The only way for me to get it work is to stop the flexget daemon/web ui and just let regular linux cron do its thing.

here is my flexget config

web_server:
  bind: 0.0.0.0
  port: 3539
  web_ui: yes
  base_url: /

schedules: no

templates:
  global:
    notify:
      entries:
        via:
           - pushbullet:
               api_key: ddddddddddddddd
               device: dddddddddddddddd

  tv:

    private_torrents: no
    magnets: yes
    content_filter:
      require_mainfile: yes
      reject: '*.rar'


    series:
      settings:
        tv:
          propers: 1 days
          set:
            path: /volume1/data/Shows/{{series_name}}/S{{ series_season }}
            magnetization_timeout: 60
            main_file_only: yes
            content_filename: "{{ series_name|replace(' ','.') }}.{{ series_id }}"
            exists_series:
              - /volume1/data/Downloads/
              - /volume1/data/Shows/

      tv:
       - Top Gear

    transmission:
      enabled: yes
      host: 10.0.0.4
      port: xxxx
      username: xxxx
      password: xxxx


tasks:

  showsrss_torrent:
    priority: 1
    rss: https://showrss.info/user/xxxxxx
    template: tv
    verify_ssl_certificates: no

  showsrss_magnet:
    priority: 2
    rss: http://xxxxxxxxxxxxxxxxxx
    template: tv
    verify_ssl_certificates: no

3 posts - 2 participants

Read full topic

RSS item title doesn't contain codec field

$
0
0

Hi, guys. I’ve sucessfuly setup flexget on my server, but since my rss feed doesn’t show the codec field I can’t use the quality plugin. Only the filename shows the codec. The RSS feed looks like this:

title            : Movie name in PT-BR [Original movie name] - MKV / Legendado / 720p / Blu-ray
url              : https://(private torrent url)/torrents.php?action=download&id=280341&authkey=rss&torrent_pass=******
original_url     : https://(private torrent url)/torrents.php?action=download&id=280341&authkey=rss&torrent_pass=*******
description      : 6.59 GB
original_title   : Movie name in PT-BR [Original movie name] - MKV / Legendado / 720p / Blu-ray
quality          : 720p bluray
rss_pubdate      : 2020-04-22 10:00:06
task             : movies

Is there any way of using the quality plugin with this rss feed?

2 posts - 2 participants

Read full topic

2 problems with simple ShowRSS config

$
0
0

I’m pretty new to this I need some help.
Without the deluge configuration information, I got this to work. It was matching all the items on the RSS feed.

I added the deluge connection information and no matter what I do it says my syntax is wrong. Can you look at the configuration and help me fix it?

The second problem is that it looks that during my testing it marked everything on the list as seen and is back to rejecting everything.
Example
REJECTED: Last Week Tonight with John Oliver S07E22 720p WEB H264 BTX by seen plugin because entry with title Last Week Tonight with John Oliver S07E22 720p WEB H264 BTX is already marked seen in the task series at 2020-08-24 18:19

Once I get the configuration working how do I return flexget to a clean slate so it will download these items marked seen?

Thank you very much

1 post - 1 participant

Read full topic

Configuration File Help

$
0
0

Hello. Very much a newbie here. Trying to automate a task of downloading some cue files from a site that are one level down. I’ve started but not sure what next to do get it working.

https://cuegenerator.net/?page=cues&folder=magicisland

I basically want to go down the list and download the cue file found at each link. In this case I don’t want all of them, so I tried to filter by year. Clearly I’m missing an important step in the algo.

tasks:
  cue dl:
    html: https://cuegenerator.net/?page=cues&folder=magicisland
    regexp:
      accept:
        - 2008.*\.cue
      rest: reject
    download: ~/cue/

1 post - 1 participant

Read full topic

List_match, accept from one list, reject from other

$
0
0

I have this configuration, it deletes watched episodes based on the trakt, but sometimes I want to block without having to go to the trakt and remove it from the ‘watched’ list, there is a way to add a second list, example: toreject e com to accept/reject based on the two lists?

  DELETAR-EPS:
    priority: 16
    disable:
      - seen
      - retry_failed
      - list_remove
    imdb_lookup: no
    trakt_lookup: yes
    thetvdb_lookup: yes
    metainfo_series: yes
    require_field: 
      - series_id
      - trakt_ep_id
      - trakt_series_name
      # - tvdb_ep_id
      # - tvdb_series_name
    filesystem: 
      path: '{? paths.seriesDir ?}'
      regexp: '.*\.(avi|mkv|mp4|m4v|iso|srt|ass|ssa|png|jpg|idx|sub|nfo)$'
      recursive: yes
    list_match:
      from:
        - trakt_list:
            account: '{? common.user ?}' # required if list is not public
            username: '{? common.user ?}'
            list: watched
            type: episodes
      remove_on_match: no
      action: accept
    regexp:
      reject:
        - poster
        - tvshow
        - fanart
        - logo
        - thumb
        - clearlogo
        # não deletar
        - ducktales
        - Mob Psycho 100
    if:
      - "'Mobile Suit Gundam The Origin' in title":
          set:
            tvdb_id: 319976
    delete:
      clean_source: 1
      along:
        extensions:
          - nfo
          - jpg
          - srt
          - ass
          - ssa
          - png
          - idx
          - sub
    template:
      - DELETADOS-telegram

1 post - 1 participant

Read full topic

Help the Noob!

$
0
0

Hi there,

Recently set up Flexget and having a hard time getting it to function. Here is the config file I am using which I cobbled together from several examples.

templates:
  transmissionrpc:
    transmission:
      host: 172.16.0.9
      port: 9999
      #username: TMUSERNAME
      #password: TMPASSWORD

  hdseries:
    template: transmissionrpc
    series:
      settings:
        hd:
          quality: 720p+
          upgrade: yes
          set:
            path: \\ds1513\Media\{{complete_folder}}\{{series_name}}

  gmb:
    set:
      complete_folder: Series
    template: hdseries
    thetvdb_lookup: yes
    series:
      hd:
        - Good Morning Britain

  tm:
    set:
      complete_folder: Series
    template: hdseries
    thetvdb_lookup: yes
    series:
      hd:
        - This Morning

schedules:
  - tasks: [TVChaosTM, TVChaosGMB]
    interval:
      minutes: 5

tasks:
  TVChaosTM:
    priority: 1
    rss: http://127.0.0.1:9117/api/v2.0/indexers/tvchaosuk/results/torznab/api?apikey=****************=search&cat=&q=
    template: 
      - tm
    set:
      path: \\BJ-DL01\Downloads\Complete_This_Morning
    notify:
      task:
        template: html-downloaded
        via:
          - email:
              from: ****************
              to: ****************
              smtp_host: smtp.gmail.com
              smtp_port: 587
              smtp_username: ****************
              smtp_password: ****************
              smtp_tls: yes
              html: yes

  TVChaosGMB:
    priority: 3
    rss: http://127.0.0.1:9117/api/v2.0/indexers/tvchaosuk/results/torznab/api?apikey=****************=search&cat=&q=
    template: gmb
    set:
      path: \\BJ-DL01\Downloads\Complete_Good_Morning_Britain
    notify:
      task:
        template: html-downloaded
        via:
          - email:
              from: ****************
              to: ****************
              smtp_host: smtp.gmail.com
              smtp_port: 587
              smtp_username: ****************
              smtp_password: ****************
              smtp_tls: yes
              html: yes

The command output looks like:

2020-09-10 09:56:55 ERROR    manager                       Cannot daemonize on windows
2020-09-10 09:56:58 INFO     scheduler                     Starting scheduler
2020-09-10 10:01:59 INFO     manager       TVChaosTM       Running database cleanup.
2020-09-10 10:01:59 INFO     db_analyze    TVChaosTM       Running ANALYZE on database to improve performance.
2020-09-10 10:01:59 INFO     db_vacuum     TVChaosTM       Running VACUUM on database to improve performance and decrease db size.

If anyone could please help me as to why this doesnt seem to do anything I would be most appreciative!

Ben

1 post - 1 participant

Read full topic


Download only the ongoing season from shows in trakt list

$
0
0

Ok a big noob here. Trying to make a flexget config and wanted to know if this is possible since I only want to use the automation for currently releasing series. Is this possible? I dont want to download finished seasons, only the ongoing ones and when the next episode releases

2 posts - 2 participants

Read full topic

Error processing request on tvdb: {'invalidQueryParams': ['lang']}

$
0
0

Kept getting issues when filling in series info from tvdb. After activating debug mode the following is shown:

2020-10-15 10:04 DEBUG    entry_list.db fill-series-list adding entry <Entry(title=Samurai Jack (2001),state=accepted)> to list trakt-series
2020-10-15 10:04 DEBUG    api_tvdb      fill-series-list Looking up tvdb information for 'Samurai Jack (2001)'. TVDB ID: 75164
2020-10-15 10:04 DEBUG    api_tvdb      fill-series-list Series <name=Samurai Jack (2001),tvdb_id=75164> information restored from cache.
2020-10-15 10:04 DEBUG    api_tvdb      fill-series-list Looking up tvdb information for 'Samurai Jack (2001)'. TVDB ID: 75164
2020-10-15 10:04 DEBUG    api_tvdb      fill-series-list Series <name=Samurai Jack (2001),tvdb_id=75164> information restored from cache.
2020-10-15 10:04 DEBUG    api_tvdb      fill-series-list Looking up tvdb information for 'Samurai Jack (2001)'. TVDB ID: 75164
2020-10-15 10:04 DEBUG    api_tvdb      fill-series-list Series <name=Samurai Jack (2001),tvdb_id=75164> information restored from cache.
2020-10-15 10:04 DEBUG    api_tvdb      fill-series-list Getting top 5 posters for series Samurai Jack
2020-10-15 10:04 DEBUG    utils.requests fill-series-list GETing URL https://api.thetvdb.com/series/75164/images/query with args () and kwargs {'params': {'keyType': 'poster'}, 'headers': {'Accept-Language': 'en', 'Authorization': 'Bearer <redacted>'}, 'json': None, 'timeout': 30}
2020-10-15 10:04 DEBUG    api_tvdb      fill-series-list **Result contains errors: {'invalidQueryParams': ['lang']}**
2020-10-15 10:04 DEBUG    thetvdb_lookup fill-series-list Error looking up tvdb series information for Samurai Jack (2001): Error processing request on tvdb: {'invalidQueryParams': ['lang']}

My current Flexget version is: 2.20.27

Looking at the changelog i see the following:

2.21.8 (2019-06-11)

all commits

Added

  • thetvdb_list: Add ‘language’ option

Is it possible to upgrade from 2.20.7 to 2.21.8 only?

1 post - 1 participant

Read full topic

Ddp2.0 being interpreted as DD+5.1

$
0
0

I’m using flexget version

here’s an example from dump eval:
title : SAS: Who Dares Wins - Season 5 [ 2020 ] [ MKV | H.264 | WEB-DL | 1080p | FastTorrent ] [ Uploader: Cinefeel ] [ SAS.Who.Dares.Wins.S05.1080p.AMZN.WEB-DL.DDP2.0.H.264-Cinefeel ]
Episode Overview:
The remaining recruits are split into teams before taking on the intense close-combat murderball and surf i…
guid : https://broadcasthe.net/torrents.php?action=reqlink&id=1367484
original_title : SAS: Who Dares Wins - Season 5 [ 2020 ] [ MKV | H.264 | WEB-DL | 1080p | FastTorrent ] [ Uploader: Cinefeel ] [ SAS.Who.Dares.Wins.S05.1080p.AMZN.WEB-DL.DDP2.0.H.264-Cinefeel ]
quality : 1080p webdl h264 dd+5.1
rss_pubdate : 2020-10-15 19:43:20
task : Get tvshows

seems that DDP2.0 should not have the quality 5.1

1 post - 1 participant

Read full topic

Getting 'partial' is not defined error

$
0
0

I’m getting the following error:

2020-11-08 03:59:05 CRITICAL task          ShowRSS Personal Feed BUG: Unhandled error in plugin transmission:
name 'partial' is not defined

followed by a traceback.

Then at the end of everything:

2020-11-08 03:59:05 DEBUG    task_queue                    task ShowRSS Personal Feed aborted: TaskAbort(reason=BUG: Unhandled error in plugin transmission: name 'partial' is not defined, silent=False)
2020-11-08 03:59:05 DEBUG    scheduler                     all tasks in schedule finished executing
2020-11-08 03:59:05 INFO     apscheduler.executors.default                 Job "* (trigger: interval[1:00:00

The only odd thing I happened to notice is that the torrent started paused. It’ll take a day or so of running things to see if this persists or not. Suggestions on what I might do?

I’m using the cpoppema/docker-flexget container. Updated tonight.

Thanks!

4 posts - 3 participants

Read full topic

Input api - nzbhydra

$
0
0

Hi, I just installed flexget and my idea was to have flexget use nzbhydra to search for files/download nzb’s. Is it possible to use flexget to send an api request to nzbhydra for results ?

1 post - 1 participant

Read full topic

Logging Magnet links

$
0
0

Hello there.
I noticed that when a magnet link is “downloaded” it is not logged - only actual torrent file downloads are logged. Can this be changed?
Thank you

1 post - 1 participant

Read full topic

I update the webui password in Synology SSH,but I'm still not allowed to log in the webui

$
0
0

I update the webui password in Synology SSH,but I’m still not allowed to log in the webui.

The webui always told me the following massage:

If this is your first time running the WebUI you need to set a password via the command line by running flexget web passwd <new_password>

ssh

2 posts - 1 participant

Read full topic


If this is your first time running the WebUI

$
0
0

Hi,

Iam using Flexget on synology and for the first install i have on the webui the info - “If this is your first time running the WebUI”.
I tried on ssh but i cannot get the command flexget web passwd .
Where is it? usr/local/flexget/ and then???

1 post - 1 participant

Read full topic

Viewing all 376 articles
Browse latest View live