Quantcast
Channel: configuration - Forum - FlexGet
Viewing all 716 articles
Browse latest View live

Move file tasks reject entries due already being seen when first downloaded

$
0
0

@epsiblivion wrote:

the move task rejects entries since they saw them in the original download task. I would like to avoid using seen: local as a global option. if I set it only on the move task, will it only track seen status for current task and ignore if it's already been seen globally? Am I misunderstanding what disable: builtins does? does it disable marking entries as seen for the current task or does it ignore seen status of an entry? do I need metainfo_series? or accept_all?

Here is my simplified config:

tv:
  rss:
    url: '{? feeds.tv ?}'
    all_entries: no
  include: tv.yml
  deluge:
    <<: *deluge
    movedone: '{? local.downloads ?}/.showrss/'
  template: notify-series

sort-tv:
  filesystem:
    <<: *filesystem
    path: '{? local.downloads ?}/series/'
  include: tv.yml
  disable: builtins
  move:
    to: "{? local.videos ?}/TV/{{series_name|replace(':',' -')}}/Season {{series_season}}/"
  template: notify-sort

Posts: 2

Participants: 2

Read full topic


First time, simple deluge movedone script?

$
0
0

@thewho wrote:

Hi!!

I just found Flexget in unRAID yesterday and it seems so awesome but i really don't understand anything of it yet!

I don't even know howto install plugins!

I really would love 'movedone' script for Deluge

Is this complicated to make?

The only info i found so far is something telling me about

host 192.168.0.5 #ThinClient. Flexget runs in a Docker on my unRAID server.
username Deluge
password Deluge
label series
movedone: /storage/TV/{{series_name}}/S{{series_season|pad(2)}}/
ratio: 1.5
removeatratio: yes

Also if it helps i use TRAKT.tv if it's not possible to figure out the series name from the folder.

Posts: 2

Participants: 1

Read full topic

Anyone can share a working American Dad configuration with discover?

Comics - move, sort and rename files

$
0
0

@cmknoll3 wrote:

So I've been banging my head on this one for a couple days. I'm new to flexget but I have a config file working just fine to automatically download, move, organize and rename my TV shows, but I can't figure out how to do the same with my comic books. I've got it successfully downloading only my selected titles (I believe) from Nem43's uploads on Worldwidetorrents with Transmission and then moving said comic book files upon completion into my comics library directory on an external hard drive.

I'm having 2 problems though, both having to do with lack of metadata support with flexget (at least not easily found support) like there is for TV and movies. First, I would like to have these comics sorted into folders based on their titles. Something like what works with my tv show sorting:

move:
  to: /Path/to/comics/directory/{{ Series Title }}

And second, I would like all of my files renamed to get rid of extraneous info in the filenames (publication years, digital format, upload source, etc) and just make it all uniform and match the format 'SERIES TITLE - ISSUE NUMBER' (e.g. 'Action Comics - 998.cbz'). If at all possible, I would also like to have it format the issue number into 3 digits (e.g. 'Batman - 038.cbr') and keep the format ISSUE NUMBER of ISSUES (e.g. 'Cool Miniseries - 005 (of 006).cbz') for a mini series, but that's less of a concern.

With TV shows, I can get metadata like the series names or seasons and episodes with something like thetvdb_lookup, but there is no equivalient of that for comics that I'm aware of, so I cannot figure out how to dynamically rename comic files or how to sort them appropriately.

It may be a cobbled together mess (mostly copied from other people's posted codes), but here's my config.yml file:

templates:
  global:
    # Make sure all filenames are Linux-safe:
    pathscrub: linux
    manipulate:
    - title:
        replace:
          regexp: 'annual (\d){1,4}'
          format: 'Special A\1'
    - title:
        replace:
          regexp: 'special (\d){1,3}'
          format: 'Special SP\1'
  comics:
    series:
      settings:
        default:
          identified_by: sequence
          sequence_regexp: (\d+)
      default:
        - action comics:
            begin: 998
        - aquaman:
            begin: 34
        - batman:
            begin: 42
        - blue beetle:
            begin: 18
        - detective comics:
            begin: 975
        - the flash:
            begin: 41
        - the flintstones:
            begin: 12
        - green lanterns:
            begin: 42
        - hal jordan and the green lantern corps:
            begin: 39
        - the jetsons:
            begin: 5
        - justice league:
            begin: 40
        - justice league of america:
            begin: 25
        - new super-man:
            begin: 21
        - nightwing:
            begin: 40
        - raven daughter of darkness:
            begin: 2
        - red hood and the outlaws:
            begin: 20
        - scooby apocalypse:
            begin: 23
        - sideways:
            begin: 2
        - supergirl:
            begin: 19
        - superman:
            begin: 42
        - super sons:
            begin: 14
        - superwoman:
            begin: 18
        - teen titans:
            begin: 17
        - titans:
            begin: 21
        - trinity:
            begin: 19
        - wonder woman:
            begin: 41
      # Image
        - Saga:
            begin: 49
        - Morning Glories:
            begin: 50
    content_filter:
      require:
        - '*.cbz'
        - '*.cbr'
        - '*.cbt'
        - '*.cb7'
    content_size:
      max: 800
      strict: no


schedules:
  - tasks: [tv-download-rss, comics-download-rss]
    interval:
      hours: 1
  - tasks: [tv-sort-files, comics-sort-files]
    interval:
      minutes: 15

tasks:
  tv-download-rss:
    rss: http://showrss.info/user/156329.rss?magnets=true&namespaces=true&name=null&quality=null&re=null
    all_series: yes
    transmission:
      host: localhost
      port: 9091
      username: ****************
      password: ****************
  tv-sort-files:
    filesystem:
      path: /home/vadersapp/Downloads/
      recursive: yes
      regexp: '.*\.(avi|mkv|mp4)$'
    accept_all: yes
    seen: local
    thetvdb_lookup: yes
    all_series:
      parse_only: yes
    move:
      to: /media/vadersapp/2TB/Videos/TV/RSS_Feed/{{ tvdb_series_name }}
      rename: '{{ tvdb_series_name }} - {{ series_id }} - {{ tvdb_ep_name }}{{ location | pathext }}'
      clean_source: 500

  comics-download-rss:
    rss:
      url: https://worldwidetorrents.unblocked.sh/rss.php?cat=132&dllink=1
    template: comics
    torrent_alive: yes
    transmission:
      host: localhost
      port: 9091
      username: vadersapp
      password: dbzrulez3
  comics-sort-files:
    filesystem:
      path: /home/vadersapp/Downloads/
      recursive: yes
      regexp: '.*\.(cbz|cbr|cbt|cb7)$'
    accept_all: yes
    seen: local
    all_series:
      parse_only: yes
    template: comics
    move:
      to: /media/vadersapp/2TB/Comics/RSS_Feed/
      clean_source: 30

Posts: 2

Participants: 1

Read full topic

Please help me with config file

$
0
0

@aintnogeek wrote:

Hello,

I wan't to get podcasts on libreelec with flexget

but I can't get it working

https://pray-as-you-go.org/podcast_en.xml

config.yml

chedules:
  - tasks: '*'
    interval:
      minutes: 30

tasks:
  PAYG:
    rss:
      url:https://pray-as-you-go.org/podcast_en.xml
  all_entries: yes
    accept_all: yes
    download: /media/Maxtor/Downloads
ads

what I am doing wrong? or maybe someone can reply with correct config file

Posts: 1

Participants: 1

Read full topic

Torrent_match / cross seeding setup

$
0
0

@zinefer wrote:

I want to get flex get to accept torrents for files I already have and add them for existing data. At first I didn't think it was possible but looking around git it looks like it might be doable already... Can anyone show me an example config or direct me towards some docs that will help? Thanks!

Posts: 1

Participants: 1

Read full topic

Path by Space issues

$
0
0

@t1ck3ts wrote:

Hi guys, wonder if you can help me.

I've been scratching my head with this one, so i've come here for help.

I've got 2x 3TB drives in my linux machine that i would like Flexget to use when one drive is fulling up.
Here is my config, so far, the flexget check is good but the path is not being sent to deluge
i think im getting confused with the whole "to_field"
The entry field where to save the selected path. Default is path

I've tried adding path: and path: "" even path: to the deluge plugin, with now success :confused:

schedules:
  - tasks: [xxxxx]
    interval:
      minutes: 5

tasks:
  xxxxxxx:
    rss: xxxxxxxxx
    series:
      settings:
        1080p webdl|webrip:
          quality: 1080p webdl|webrip
          set:
            path_by_space:
              select: most_free
              within: 5GiB
              paths:
                - /var/shares/hds2/TV Series/{{series_name}}/Season {{series_season}}/
                - /var/shares/hds3/TV Series/{{series_name}}/Season {{series_season}}/
              to_field:

      1080p webdl|webrip:
        - Marvels Agents of S.H.I.E.L.D.

    deluge:
      host: localhost
      port: 58846
      username: xxxxxx
      password: xxxxxx

Posts: 7

Participants: 2

Read full topic

Help configuring config.yml for deluge

$
0
0

@Reverence wrote:

Hello everyone

I am trying to configure my config.yml file to pass everything to deluge.

All I need from it is to load 1 RSS feed load everything from it and pass to deluge.

I will need it to load new feeds not existing once.

My question is how should my file look like.

Thanks for reply.

Posts: 2

Participants: 2

Read full topic


How to load feed without download it

$
0
0

@Reverence wrote:

Hello I created a simple config.yml file

tasks:
task1:
rss: feed url
accept_all: yes
deluge:
port: xxxxx

My question is how to load the feed without downloading it for the first time.

After no problem it to download everything that will come.

Thanks.

Posts: 1

Participants: 1

Read full topic

BUG: Unhandled error in plugin series: 'list' object has no attribute 'replace'

$
0
0

@Merwenus wrote:

Updated flexget a few days ago, and now I see it crashes nonstop.

This is the only replace I use, what broke my year old config in new version?

    set:
      content_filename: "{{ tvdb_series_name|default(series_name)|replace('/','-')|replace('~','-')|replace(':',' -')|replace('?','_') }} - {{series_id|lower}}{% if tvdb_ep_name %} - {{ tvdb_ep_name|default('')|replace('/','-')|replace('~','-')|replace(':',' -')|replace('?','_') }}{% endif %}"
      rename_like_files: yes
2018-03-13 11:40 CRITICAL manager       Ncore_HU        An unexpected crash has occurred. Writing crash report to /home/flexget/crash_report.2018.03.13.114030950129.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.4
2018-03-13 11:40 WARNING  task          Ncore_HU        Aborting task (plugin: series)
2018-03-13 11:41 CRITICAL task          Ncore_EN        BUG: Unhandled error in plugin series: 'list' object has no attribute 'replace'


Traceback (most recent call last):
  File "/home/pi/.local/lib/python2.7/site-packages/flexget/task.py", line 486, in __run_plugin
    return method(*args, **kwargs)
  File "/home/pi/.local/lib/python2.7/site-packages/flexget/event.py", line 23, in __call__
    return self.func(*args, **kwargs)
  File "/home/pi/.local/lib/python2.7/site-packages/flexget/plugins/filter/series.py", line 1611, in on_task_metainfo
    parsed = parser.parse_series(entry['title'])
  File "/home/pi/.local/lib/python2.7/site-packages/flexget/plugins/parsers/plugin_parsing.py", line 74, in parse_series
    return parser.parse_series(data, name=name, **kwargs)
  File "/home/pi/.local/lib/python2.7/site-packages/flexget/plugins/parsers/parser_guessit.py", line 226, in parse_series
    quality = self._quality(guess_result)
  File "/home/pi/.local/lib/python2.7/site-packages/flexget/plugins/parsers/parser_guessit.py", line 92, in _quality
    source = guessit_result.get('format', '').replace('-', '')
AttributeError: 'list' object has no attribute 'replace'

Posts: 2

Participants: 2

Read full topic

Help with custom configuration

$
0
0

@Reverence wrote:

Hello I need your help to configure a custom filter.

  1. First filter for release group.
  2. Filter if it is 1080p and if year is 2017-2018 then download.
  3. Filter if it is 2160p then download all no matter the year.

Thank you

Posts: 5

Participants: 2

Read full topic

Rlsbb not working for jdownloader to have a {{title}}.crawljob

$
0
0

@newflexgetman wrote:

Hi,
Here is my configuration. But, I cannot successfully get the {{title}}.crawljob. I post my config and the output. Here I just post the part of the output-it has an error message under below. Wish some help. Thanks.

templates:
  magazine:
  regexp:
    from: title
    accept:
    - '(wanted_collection).*'
tasks:
  rlsbb_task:
  priority: 1
  verify_ssl_certificates: no
  rss: http://rlsbb.ru/category/catalogy/ebooks-magazines/feed/
  template: magazine
  rlsbb:
    parse_comments: no
    filehosters_re:
      - rlsbb\.ru.*
    link_text_re:
      - UPLOADGiG
      - NiTROFLARE
      - RAPiDGATOR
    exec:
      - echo "text={{urls}}" >> "/media/file/jdfile/folderwatch/{{title}}.crawljob`

I got the error code which is within the part of output, when I executed the command flexget --text execute --tasks rlsbb_task.

Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/flexget/plugins/internal/urlrewriting.py", line 69, in url_rewrite
urlrewriter.instance.url_rewrite(task, entry)
File "/usr/local/lib/python2.7/dist-packages/flexget/plugin.py", line 118, in wrapped_func
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/flexget/plugins/sites/rlsbb.py", line 118, in url_rewrite
log.debug('Original urls: %s', str(entry['urls']))
File "/usr/local/lib/python2.7/dist-packages/flexget/utils/lazy_dict.py", line 71, in getitem
item = self.store[key]
KeyError: u'urls'

Posts: 4

Participants: 2

Read full topic

Convert timestamp to Date Object

$
0
0

@samy-pro wrote:

I have a task which gets entries from "from_rtorrent". In an if_statement i want to reject entries which are 7 days younger than "timestamp.finished". Problem is, that the field "timestamp.finished" from rtorrent contains a Unix Timestamp and the statement "now" and "timedelta()" are Date Objects. Is there a way to convert the field "timestamp.finished" to a Date Object?

Config:

Clean_WEB:
    manual: yes
    disable:
      - seen
      - seen_info_hash
      - retry_failed
    from_rtorrent:
      uri: '{? rtorrent.site ?}'
      username: '{? rtorrent.usr ?}'
      password: '{? rtorrent.pwd ?}'
    if:
      - "'path to Series' in path": accept
      - timestamp.finished > now - timedelta(days=7): reject
    rtorrent:
      uri: '{? rtorrent.site ?}'
      username: '{? rtorrent.usr ?}'
      password: '{? rtorrent.pwd ?}'
      action: update
      custom1: del_cue

Log:

Error occurred while evaluating statement `timestamp.finished > now - timedelta(days=7)`. (can't compare datetime.datetime to int)

Additional information:

  • FlexGet version: 2.13.4
  • Python version: 2.7
  • Installation method: Synology entware-ng pip
  • Using daemon (yes/no): yes
  • OS and version: Synology DSM 6

Posts: 2

Participants: 2

Read full topic

Timeframe and Priority not working together

$
0
0

@Loader23 wrote:

Hi,

I have this config:

schedules:
  - tasks: Series1
    interval:
      minutes: 30
  - tasks: Series2
    interval:
      minutes: 30

templates:
  tv:
    thetvdb_lookup:
      language: de
    accept_all: no
    exec:
      - echo text={{url}} >> "/input/{{title}}.crawljob"
      - echo packageName={{title}} >> "/input/{{title}}.crawljob"
      - echo deepAnalyseEnabled=true >> "/input/{{title}}.crawljob"
      - echo autoStart=TRUE >> "/input/{{title}}.crawljob"
      - echo enabled=TRUE >> "/input/{{title}}.crawljob"
      - echo autoConfirm=TRUE >> "/input/{{title}}.crawljob"

tasks:
  Series1:
    priority: 1
    rss: http://xx
    include: series.yml
    seen:
      local: yes
      fields: [title, url]
    serienjunkies:
      language: german
      hoster: so
    template: tv
  Series2:
    priority: 2
    rss: https://xx
    include: series.yml
    download: /input/
    thetvdb_lookup:
      language: de
    accept_all: no
    delay: 18 hours

In my Series.yml I have this:

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

Sometimes source 2 is faster than 1 and the timeframe sticks to source 2. Is there any other priority setting so he chooses source 1 over source 2?

Posts: 4

Participants: 2

Read full topic

Article replacements

$
0
0

@wondernode wrote:

Hello,

Apologies if this question has been answered before, I've had a search however couldn't find anything.

I've looked through the Jinja replace page however this seems to cover in place replacements instead of shifting text around.
I want to move common articles in titles (The, A, An, etc) to after my name:

For example:
The Killing of a Sacred Deer (2017) > Killing of a Sacred Deer, The (2017)

My relevant move tasks are:

  sort-movies:
    filesystem:
      path: /input/
      regexp: '.*\.(mkv|mp4)$'
      recursive: yes
    accept_all: yes
    pathscrub: windows
    tmdb_lookup: yes
    regexp:
      reject:
        - sample
    if:
      - tmdb_name == None: reject
    copy:
      to: "/output/videos/movies/{{tmdb_name|pathscrub}} ({{tmdb_year}})"
      rename: "{{tmdb_name|pathscrub}}"
#      clean_source: 10
      along:
        extensions:
          - srt
          - sub
          - nfo

  sort-shows:
    filesystem:
      path: /input/
      regexp: '.*\.(mkv|mp4|srt)$'
      recursive: yes
    accept_all: yes
    pathscrub: windows
    regexp:
      reject:
        - sample
    metainfo_series: yes
    thetvdb_lookup: yes
    if:
      - tvdb_series_name == None: reject
    copy:
      to: "/output/videos/television/{{tvdb_series_name|pathscrub}}"
      rename: "{{ tvdb_season }}x{{ tvdb_episode | pad(2) }} {{ tvdb_ep_name | pathscrub }}"
#      clean_source: 10
      along:
        extensions:
          - srt
          - sub

Posts: 2

Participants: 2

Read full topic


[Solved] Run a script on exit

$
0
0

@Joel_Santos_Rico wrote:

Hi,

I'm trying to run a script when the execution finishes. I'm trying with exec, but the syntax is wrong and I can't see why. Can somebody help me fix it?

EDIT: I'm using the wrong plugin. exec runs commands on entries, and I want to run a script at the end of the execution (just once, to do some cleanup). Is that possible FROM flexget?

My config file is:

schedules:
  # Run tasks at 6 and 18
  - tasks: '*'
    schedule:
      hour: 6, 18

tasks:
  SeriesTask:
    rss: http://showrss.info/user/12345.rss?magnets=true&namespaces=true&name=null&quality=anyhd&re=null
    all_series:
      path: /mnt/Router_Stuff/Torrent/Series/{{series_name}}
    transmission:
      host: localhost
      port: 9091
      username: myuser
      password: "mypassword"
    exec:
      auto_escape: yes
      on_output:
        for_accepted: echo "accepted {{title}} - {{url}}" | logger -t Flexget
      on_exit: start /mnt/Router_Stuff/scripts/FlexgetOnExit


web_server:
  run_v2: true

The error I'm getting when I run flexget execute is

(flexget) Joel@RT-AC56U:/tmp/home/root/.flexget# flexget execute
2018-04-04 17:48 CRITICAL manager                       [/tasks/SeriesTask/exec/on_exit] Got `start /mnt/Router_Stuff/scripts/FlexgetOnExit`, expected: dict
2018-04-04 17:48 CRITICAL manager                       Failed to load config file: Did not pass schema validation.
Could not start manager: Did not pass schema validation.

Posts: 6

Participants: 3

Read full topic

Series keeps rejecting the same file

$
0
0

@KiljoyAU wrote:

Hi folks,

Recently transitioned to a Trakt based flexget setup and I noticed a show on my list wasn't downloading. I checked my logs, and the file was being rejected for containing a *.rar (As intended), BUT every few hours the series plugin seems to be trying the same file again and rejecting it again, even though it is remembering it. Any suggestions on how I make it try a different file?

I've checked the rejected list, and the file is on there, so it does seem to be retaining it, but then just tries again... Very odd.

Thanks in advance!

Config excerpts and log excerpts below, private deets replaced with .

(Fairly sure I've butchered the code block formatting. Apologies)

Config excerpt:

templates:
  hdtv:
    regexp:
      reject:
        - subs
        - subtit
        - german
        - dutch
        - spanish
    content_filter:
      reject:
        - '*.rar'
        - '*.zip'

    configure_series:
      settings:
        timeframe: 2 hours
        target: 720p
        propers: 3 days
        identified_by: ep
      from:
        trakt_list:
          account: <account>
          list: <list>
          type: shows

tasks:
  # This task will look for episodes you have added to your `My TV Shows` list at trakt.
  # It will set the `begin` series option for that show, then remove the episode and re-add it to your `My TV Shows` list as a show.
  hq_get_shows:
    priority: 2
    # If this is your only task getting shows, you can just include the configure_series plugin here instead of using the template.
    template: hdtv
    discover:
      what:
        - next_series_episodes:
            from_start: yes
      from:
        - iptorrents: 
            rss_key: <rss_key>
            uid: <uid>
            password: <password>
            category: 
              - TV-all
    transmission:
      enabled: yes
      host: localhost
      port: 9091
      username: <user>
      password: <password>
      path: /localpath/

Log excerpt:

2018-04-06 23:32 INFO     remember_rej  hq_get_shows    Remembering rejection of `<A Show> S05E06 720p HDTV X264-UAV`
2018-04-06 23:32 VERBOSE  task          hq_get_shows    REJECTED: `<A Show> S05E06 720p HDTV X264-UAV` by content_filter plugin because has banned file *.rar
2018-04-07 04:31 VERBOSE  discover      hq_get_shows    Searching for `<A Show>  S05E06` with plugin `iptorrents` (14 of 18)
2018-04-07 04:31 VERBOSE  task          hq_get_shows    ACCEPTED: `<A Show> S05E06 720p HDTV X264-UAV` by series plugin because target quality
2018-04-07 04:31 INFO     download      hq_get_shows    Downloading: <A Show> S05E06 720p HDTV X264-UAV
2018-04-07 04:32 INFO     content_filter hq_get_shows    Entry <A Show> S05E06 720p HDTV X264-UAV has banned file *.rar, rejecting
2018-04-07 04:32 INFO     remember_rej  hq_get_shows    Remembering rejection of `<A Show> S05E06 720p HDTV X264-UAV`
2018-04-07 04:32 VERBOSE  task          hq_get_shows    REJECTED: `<A Show> S05E06 720p HDTV X264-UAV` by content_filter plugin because has banned file *.rar
2018-04-07 09:32 VERBOSE  discover      hq_get_shows    Searching for `<A Show> S05E06` with plugin `iptorrents` (14 of 18)
2018-04-07 09:33 VERBOSE  task          hq_get_shows    ACCEPTED: `<A Show> S05E06 720p HDTV X264-UAV` by series plugin because target quality
2018-04-07 09:33 INFO     download      hq_get_shows    Downloading: <A Show> S05E06 720p HDTV X264-UAV
2018-04-07 09:33 INFO     content_filter hq_get_shows    Entry <A Show> S05E06 720p HDTV X264-UAV has banned file *.rar, rejecting
2018-04-07 09:33 INFO     remember_rej  hq_get_shows    Remembering rejection of `<A Show> S05E06 720p HDTV X264-UAV`
2018-04-07 09:33 VERBOSE  task          hq_get_shows    REJECTED: `<A Show> S05E06 720p HDTV X264-UAV` by content_filter plugin because has banned file *.rar

Posts: 4

Participants: 2

Read full topic

Duplicate Downloads for same content

$
0
0

@Randy_Klein wrote:

I'm trying to setup a config to download formula 1 races. It's working, but it's downloading all 3 of the available versions that meet the criteria. How do I update it so that it only download one of the 3 versions? I'd think using a series would help, but I don't see anything in the filenames to configure a series with. Here is my config:

formula1:
rss:
url: https://RSS_URL
nzbget:
url: http://DOWNLOAD_URL
category: sports
regexp:
accept:
- Formula1
reject:
- qualifying
- notebook
- press
- practice
- paddock
- report
- buildup
- show
- post

And here is the resulting downloads from the log:
2018-04-07 17:15 INFO nzbget formula1 AddedFormula1.2018.Australian.Grand.Prix.Race.720pHDTV.DD5.1.50fps.x264-wAm-Obfuscatedto nzbget
2018-04-07 17:15 INFO nzbget formula1 Added
Formula1.2018.Australian.Grand.Prix.UNCUT.PDTV.x264-GRiP-Obfuscatedto nzbget
2018-04-07 17:15 INFO nzbget formula1 Added
Formula1.2018.Australian.Grand.Prix.HDTV.x264-VERUM-Obfuscatedto nzbget

Posts: 1

Participants: 1

Read full topic

How to override season number for specific series with sequence numbering?

$
0
0

@FartyMcgee wrote:

I'm having trouble trying to override the season number for a couple of series that mismatch with what tvdb thinks it should be.

The RSS feed I'm using identifies the shows by sequence, and considers it a 'new' show with a longer subtitled name. However, tvdb considers it a new season of an ongoing show.

So for example:
the RSS feed has the show entry as:
Lupin III Part V - 02 [1080p].mkv

However, as far as tvdb is concerned, this isn't the 2nd episode of "Lupin III Part V", it's S05E02 of "Lupin III":
https://www.thetvdb.com/?tab=season&seriesid=71863&seasonid=755146&lid=7

How do I set a configuration properly to consider the "02" to be an episode number and manually specify this is season 5? with an end result:
Lupin III - S05E02

There's a similar show that has the same Show Title: Subtitle numbering problem, so it's not just this specific example.

I've tried a few things that don't work.

thetvdb_lookup: yes
series:
  settings:
    identified_by: sequence
  all:
    - Some Well Behaved Show
    - Some Other Show
    - Lupin III:
      alternate_name:
        - Lupin III Part V
      set:
        series_season: 5
        tvdb_season: 5
if:
  - "series_name == 'Lupin III'":
    set:
      series_season: 5
      tvdb_season: 5

(forgive any typos, manually typed that out as config is on another device)

No matter what I try I still end up with this as the end result:
Lupin III - S01E02.mkv

set just doesn't seem to work. Neither does if.

I tried manipulate but that isn't allowed within the series plugin

I tried setting identified_by: ep thinking the sequence identifier was throwing things, but then the parser can't find an identifier because the series isn't there.

I considered using ep_regexp but it needs two regexp groups returned, and i'm not sure how to 'inject' a value that's not in the original string.

(as a side note: i'm trying to match what tvdb says because this ends up in Kodi, which will also identify the show in the same way)

Any ideas how to solve this problem?

Posts: 1

Participants: 1

Read full topic

RTorrent move torrents when done not working correctly

$
0
0

@Kwb wrote:

I have followed the example "Move completed 1" available at rtorrent pluging page and it kinda works. As far as I can see from the ruTorrent web UI, issue is that once the move is completed, the torrent remains in pause state because the metadata information is not updated in rtorrent (it still points to the old location). How can I updated the metadata as well so that the torrent keeps seeding and is moved to the new location?

Posts: 2

Participants: 2

Read full topic

Viewing all 716 articles
Browse latest View live