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

How-to use "duplicates" Plugin and filter by year with one task without input list

$
0
0

@tnielsen2 wrote:

Hello everyone. Novice Flexget user here, and am looking for some guidance and help on how to best accomplish what I am after.

I have a very basic configuration below, and an idea of how to put it together below that, but am struggling to understand the concept of how I can use multiple filters, or how to do what I need to do.

I am running on a freenas with the plugins configured, Flexget is running on a FreeBSD jail, and I have a seperate Transmission Jail running as a plugin with the NAS.

Right now, all torrents that match the criteria based upon quality below, are dumped into a folder that automatically are downloaded by my transmission plugin.

I am getting duplicate movie titles from different torrent groups. I am looking to:

  1. Download new torrents from the RSS feed of my torrent site of movies that have a specific year (newer than the year 2000), of a specific quality.
  2. Download torrents once, and reject the torrent download if a duplicate.
  3. Run on a schedule.

I haven't quite figured out a solution for #1, however #2 I was considering using the "duplicates" plugin.

What I have:

tasks:


  td_movies_blueray:
    rss:
      url: https://www.torrentday.com/t.rss?download;11;u=XXXXXX;tp=XXXXXXXXXXXXXXXXXXXXX
      all_entries: no
    accept_all: yes
    download: /media/torrents/
    quality: 1080p+ webrip+
    content_filter:
      reject:
        - '*.wmv'

What I have come up with (but am struggling to make work):

schedules:
  - tasks: td_movies_blueray
    interval:
      hours: 24

tasks:

  duplicate-movies:
    filesystem: /media/torrents/
    imdb_lookup: yes
      duplicates:
        field: imdb_id
        action: reject

  movie-year:
    imdb_lookup:yes
	  if:
	    imdb_year <= 2000: reject

  td_movies_blueray:
    rss:
      url: https://www.torrentday.com/t.rss?download;11;u=XXXXXX;tp=XXXXXXXXXXXXXXXXXXXXX
      all_entries: no
    accept_all: yes
    download: /media/torrents/
    quality: 1080p+ webrip+
    content_filter:
      reject:
        - '*.wmv'

Posts: 4

Participants: 2

Read full topic


Can subliminal get filename with the database name instead of filename?

$
0
0

@analca3 wrote:

Hello! I'm trying to download automatically the subs for the series I'm downloading with this tool. The problem is that I am renaming the files after I download them using content_filename option, so subliminal don't find any subs for these tv shows :(.

My question is, can I search with subliminal using the database names instead of filenames? I don't see any option to do that in docs...

Thank you!

Best regards!

Posts: 3

Participants: 3

Read full topic

Help with if statement to set download location

$
0
0

@gurgle wrote:

I'm struggling to get an if statement to set my download location.

config.yml:

templates:
  bt1:
    transmission:
      host: <address>
      port: <port>
      username: <username>
      password: <password>
  site1:
    rss: <address>
    regexp:
      accept:
        - <regex1>
        - <regex2>
        - <regex3>
tasks:
  download:
    template: [bt1, site1]
    if:
      - "'name1' in title":
        set:
          path: /mnt/downloads/Name 1/
      - "'name2' in title":
        set:
          path: /mnt/downloads/Name 2/

I based the if statement off the last example here, but when executing i get an error message

Must be one of the following: accept, reject, fail

Is this the wrong spot to try set the download location? I tried putting the if statement in the transmission section and got a different error message

The key `if` is not valid here.

Posts: 3

Participants: 2

Read full topic

How to ignore scene releases

$
0
0

@Mikkel_Petersen wrote:

Hey all. A major TV tracker, marks it's uploads as Scene / Internal / P2P etc.

Is there a way to tell flexget to ignore uploads with the tag "scene"?

Posts: 8

Participants: 3

Read full topic

Shrinking of two entries into one

$
0
0

@Mikkel_Petersen wrote:

Hey all. I currently have two separate entries, with the exact same RSS url. This is because I want two filters based on IMDB rating. Is it possible to combine my two entries, so it would be like:
These IMDB ratings
OR
These IMDB ratings?

Currently it looks like this, which I were hoping to shrink into 1 entry.

 tasks:
  Movies:
    rss:
      url: XXXXXXXXXXXX
      all_entries: no
    imdb:
      min_score: 6
      min_votes: 6000
      min_year: 2015
    quality: 1080p
    regexp:
      reject:
        - 'half-sbs|hybrid|3d|hi10p': {from: title}
    download: /media/sdn1/zeroz/private/deluge/watch/

  Movies_2:
    rss:
      url: XXXXXXXXXXXXXX
      all_entries: no
    imdb:
      min_score: 3
      min_votes: 30000
      min_year: 2015
    quality: 1080p
    regexp:
      reject:
        - 'half-sbs|hybrid|3d|hi10p': {from: title}
    download: /media/sdn1/zeroz/private/deluge/watch/

Posts: 7

Participants: 2

Read full topic

Specifying different paths for episodes and seasons

$
0
0

@Cinder wrote:

How can I define different paths for seasons and episodes? My config has only one task for TV shows, some of them are set to download as season packs, and some as episodes. The problem I just had was that I got an error message for tvdb lookup for seasons: "VERBOSE thetvdb_lookup tvseries TheTVDB API does not support season lookup at this time, skipping", resulting in the season pack being downloaded to the default Transmission download folder.

My download path normally is set to:
'/volume1/TV Series/{{ tvdb_series_name }}/{{ tvdb_series_name }} S{{ tvdb_season|pad(2) }}/'

How can I set it up so that if flexget finds and downloads an episode it uses the above, but if it finds and downloads a season pack it instead uses:
'/volume1/TV Series/{{ tvdb_series_name }}/'

Posts: 1

Participants: 1

Read full topic

clean_transmission orphaned shows

$
0
0

@mpadilla2 wrote:

I'm using jonybat's config from here I had several shows in custom lists in trakt. I removed a show as it is just aweful. Anyway, all the while flexget is running, transmission is downloading. But now there are two episodes in transmission that are orphaned so to speak as I do not have that show anymore. I understand that I can manually delete the shows. However, I would prefer to automate it in case I run across the scenario in the future.

I was thinking I could combine clean_transmission with the directories option. Then crossmatch to check if the show is in trakt list. If not then delete the show from transmission.

I cannot for the life of me determine the yaml for this. If this is possible and you have suggestions...it is very welcome! Thank you!

Posts: 3

Participants: 2

Read full topic

How to store movie translation names (from Trakt) in a local list

$
0
0

@S3cret wrote:

I use the following Task to store movie names in a list:

  update_trakt_list:
    trakt_list:
      account: myaccountname
      list: Movies
      type: movies
    trakt_lookup: yes
    accept_all: yes
    list_clear:
      what:
        - movie_list: movies
      phase: modify
    list_add:
      - movie_list: movies
    disable: seen

What modification Do I need now to store them in a different language? trakt_lookup creates the trakt_translations field and I was able to prove that the data is there via exec:

    exec:
      on_exit:
        for_accepted: echo "{{trakt_translations['de']['title']}}"

Executing: echo "Star Wars: Die letzten Jedi"

Now I want to rename the movie_name field so the translated version is stored in the list. I tried it with manipulate but no chance:
Field movie_name is now None

    manipulate:
      - movie_name:
          phase: modify
          from: trakt_translations['de']['title']

How to do this?

Posts: 1

Participants: 1

Read full topic


Accepting movie if new quality if higher than the one already downloaded

$
0
0

@MeRoL wrote:

Hi guys,

I'm trying to setup Flexget to download all new movies in 1080p quality from different RSS feeds. Each feed have 30 entries of the newest movies in the categories I want to download in. If flexget dosen't detect a 1080p version it waits a few minutes and searches for a 720p version. The reason for this is some HDRips etc. of new movies are not out in 1080p yet but only in 720p.

The thing I want flexget to do is to update the quality if a higher quality version is uploaded to the tracker. Lets say I grab IT 2017 in korean HDRip. And one month later the 1080p web-dl comes out. I want Flexget to automatically grab the higher quality version until a BluRay rip is downloaded.

This is my config so far, it works great for searching for 1080p first and then 720p afterwards if no 1080p was found. But i still miss the last about quality updates:

web_server: yes

schedules:
  - tasks: [1080p, 720p]
    interval:
      minutes: 20

templates:
  movies:
    imdb_lookup: yes
    seen_movies: strict

  1080p:
    template: movies
    priority: 2
    inputs:
      - rss:
          url: _rss feed url_
      - rss:
          url: _rss feed url_
    accept_all: yes
    quality: 1080p bluray|webdl|hdrip|webrip h264
    regexp:
      from: title
      reject:
        - PENTALOGY
        - H-SBS
        - REMUX
        - MA.5.1
        - DTS-HD
        - AVC
        - TRiOLOGY
        - DUOLOGY
        - UHD
        - COMPLETE
    download: /downloads/movies/
    notify:
      entries:
        title: "Flexget"
        message: "Download started:\n{{imdb_name}} ({{imdb_year}})"
        via:
          - pushover:
              user_key: _userkey for pushover_

  720p:
    template: movies
    priority: 3
    inputs:
      - rss:
          url: _rss feed url_
      - rss:
          url: _rss feed url_
    accept_all: yes
    quality: 720p bluray|webdl|hdrip|webrip h264
    delay: 10 minutes
    regexp:
      from: title
      reject:
        - PENTALOGY
        - H-SBS
        - REMUX
        - MA.5.1
        - DTS-HD
        - AVC
        - TRiOLOGY
        - DUOLOGY
        - UHD
        - COMPLETE
    download: /downloads/movies/
    notify:
      entries:
        title: "Flexget"
        message: "Download started:\n{{imdb_name}} ({{imdb_year}})"
        via:
          - pushover:
              user_key: _userkey for pushover_

Posts: 1

Participants: 1

Read full topic

Noob please help using search_rss & ezrss.xml

$
0
0

@plugitin wrote:

I am sure this is a simple question but I would really appreciate some help. I am trying to learn YAML . I have looked at lots of examples and I am hung up on how to use search_rss . My objective is to use discover , what being my trakt TV Series list, from search_rss. This is a test config (having tried all sorts of different ways). Seems the indenting is not preserved here with copy and paste, but this does pass flexget check.

tasks:
EZTV:
discover:
what:
- trakt_list:
account: plug_it_in
list: TV Series
type: shows
from:
- search_rss:
url: http://eztv.ag/ezrss.xml
all_entries: no
link:
- link
- magneturi
accept_all : yes
list_add:
- movie_list: fromeztv

I am using the movie_list at the end so I can see if I get output. This will link to transmission once proven

The problem I think I am having is not knowing how to specify the "search" in search_rss. I dont really understand this. In general I am finding it hard to understand how you reference the output of one plugin in another. It seems all the examples show how to configure a plugin but I am unsure of how to use or find the output from each successive plugin. Any clarity on this stumbling block would be greatly appreciated.

Posts: 4

Participants: 2

Read full topic

Subliminal, subtitles_list and multiple languages

$
0
0

@elbryan wrote:

Hello!
I have a simple yet complicated question to pose. Suppose that you speak two languages (e.g., ita and eng) and you would like to download subtitles in both languages, but ita is your preferred one.

Now, according to my configuration, I add the files (after moving to the right place) using this:

    list_add:
      - subtitle_list:
          list: subtitles
          path: "{{location}}"
          remove_after: 7 days

Then I read stuff from the queue and look for subtitles using:

  download-subtitles:
    priority: 45
    template:
      - disable-seen-retry
    subtitle_list:
      list: subtitles
    list_match:
      from:
        - subtitle_list:
            list: subtitles
    subliminal:
      exact_match: yes
      languages:
        - ita
      alternatives:
        - eng
      single: no

The problem I am facing is that, in the moment that the subtitles for one of the two languages is found, the entry is removed from this "subtitle_list" and flexget will stop looking for subtitles in the remaining language. This is very likely to happen as English subtitles tend to be released earlier than Italian's and thus I end up with fetching only English subtitles, de facto ignoring my fav language.

Is there a way to setup flexget to try to download subtitles in all the specified languages (let's say for maximum 7 days as I tried to specify in the remove_after parameter)?

Posts: 5

Participants: 2

Read full topic

Configuring uTorrent webui allowed download directories for Flexget

$
0
0

@antonioribeiro wrote:

I'm receiving this message:

path z:\videos\tv\ShowName\Season 3 (or one of its parents)is not added to utorrent webui allowed download directories. You must add it there before you can use it from flexget. Adding to default download directory instead.

The path (z:\tv) is added, it should now be able to add downloads inside it:

And this is something which works fine using the webUI itself to download, as you can see above.

But looks like Flexget wants me to add all possible paths (show & season) to the download directories list, which is impossible since I have a list of at least 60 different shows, times seasons, it's a nightmare. Is there something we can do about this?

Thanks!

Posts: 3

Participants: 2

Read full topic

SOLVED: Pushover sound based on task

$
0
0

@mpadilla2 wrote:

So I'm trying to have two different Pushover notification sounds based on what task has occurred. So far, all that happens is the default sound. The two sounds I'm trying to use are "bike" and "incoming". I've tried putting single quotes, double quotes, no quotes around "bike" and "incoming" and it still doesn't work. Any suggestions/corrections are greatly appreciated! Here's the relevant portion of the config:

pushover:
  user_key: '{? pushover.user_key ?}'
  api_key: '{? pushover.api_key ?}'
  sound: >
    {% if task in ['move-torrent-series','move-nzbget-series','move-torrent-movies'] %}'bike'
    {% else %}'incoming'
    {% endif %}

Posts: 4

Participants: 2

Read full topic

Jinja Template - Works with No Entries, errors with Entries

$
0
0

@4oo4 wrote:

I'm a newb to jinja, can someone point out what's wrong with my template syntax? It works correctly when there aren't any entries but complains that it's not JSON serializable when there are entries. I'll post the log file after this latest run.

{% if task.accepted -%}
{% if task == 'sort-movies' or task == 'sort-tv' or task == 'sort-music' %}
{%-   for group in task.accepted|groupby('task') %}
FlexGet has just sorted {{group.list|length}} new entries for task {{group.grouper}}:
  {%- for entry in group.list %}
- {{entry.title}} ({{entry.url}}){% if entry.output|d(false) %} => {{entry.output}}{% endif %}
  {% endfor %}
{% endfor %}
{% endif %}
{% else %} Task did not produce any entries.
{% endif -%}
{% if task.accepted -%}
{% if task == 'movie-dl' or task == 'tv-dl' or task == 'music-dl' %}
{%- for group in task.accepted|groupby('task') %}
FlexGet has just downloaded {{group.list|length}} new entries for task {{group.grouper}}:
  {%- for entry in group.list %}
- {{entry.title}} ({{entry.url}}){% if entry.output|d(false) %} => {{entry.output}}{% endif %}
  {% endfor %}
{% endfor %}
{% else %} Task did not produce any entries.
{% endif %}
{% endif %}

Posts: 1

Participants: 1

Read full topic

Clean stalled torrents

$
0
0

@mpadilla2 wrote:

Sometimes I get torrents that stall. I would like to clean these torrents based on Transmisson's Latest Activity date. I will use this config solution as the starting point as it is a little similar. I'm trying to locate more information regarding from_transmission plugin but can't seem to locate any (not even the code). In the post mentioned above I didn't even realize that from_transmission would return the torrent_info_hash. If anyone could point me in the direction where I could more information, it would be much appreciated.

Posts: 2

Participants: 2

Read full topic


Set up on Raspberry Pi with Trakt, Transmission and NAS Drive

$
0
0

@greenow wrote:

Hi all,

I've been researching how to do this and followed many different tutorials but none of them seem to work for myself. Every time I seem to get a load of errors. I believe most of them are out of date due to FlexGet updates.

My aim is to have a raspberry pi use Flexget and Trakt (along with ShowRSS) to initiate downloads from a list called 'Following' for TV Shows and my 'Watchlist' for movies. My aim then is for Transmission to download these to a USB drive plugged in, which will then automatically sync this to a mounted NAS drive.

My Plex Server which is on a Mac Mini will then watch out for these files on the NAS drive and automatically add to my server. This bit I have set up already. I have Trakt linked with my Plex so Trakt already knows about what I own and what I don't.

My difficulty is setting everything up on the Raspberry Pi and always run into trouble with the Config file.

The one source I've really used the most is this link here: http://www.virtualfrontiers.co.uk/AutoDownload.html

Any help will be greatly appreciated! I know very basic coding so as much help possible would be great!

Posts: 2

Participants: 2

Read full topic

Apply torrent name or folder name to filename for series

$
0
0

@ZileXa wrote:

When Discover searches for a torrent, it might find and accept something like this:
the.tvshow.name.S04E22.hdtv.x264.lol

But the actual contents could be a folder containing a file with a different name:
the.tvshow.name.S04E22.hdtv.x264.lol/the.tvshow.name.422.hdtv.x264.lol.mkv

Normally, I would use rename immediately when adding to Transmission. In my experience however, Subliminal has trouble finding matching/synced (English) subs since the name looses elements that make it unique (releaser name). When Subliminal finds no match, I cannot manually find the correct subtitle because I am missing release group name.
Therefore, I am no longer renaming files immediately (I do it after searching for subs). But that introduced the issue of filenames without proper SxxEyy identification, like the example above.

I would like to get rid of that solution now, because it is very inefficient if Flexget first finds and gets the right file, but afterwards can not recognise it correctly anymore and needs to perform 3 tasks to rename everything correctly (one for SxxEyy, one for SEE and one for SSEE). What I am looking for now is the following:

When adding something to Transmission (could be magnet or torrent), if it is a folder, apply this foldername to the filename. Is this somehow possible?

So Flexget should, after accepting and when adding to Transmission, change this:
Downloads\tempseries\the.tvshow.name.S04E22.hdtv.x264.lol/the.tvshow.name.422.hdtv.x264.lol.mkv
to this:
Downloads\tempseries\the.tvshow.name.S04E22.hdtv.x264.lol/the.tvshow.name.S04E22.hdtv.x264.lol.mkv

By applying folder name to filename, instead of fixing the epid (like described here).

Posts: 1

Participants: 1

Read full topic

[noob] Can I use this to copy my IMDB watchlist to Trakt?

$
0
0

@dzg wrote:

My first time using FG ... here's what I tried:

tasks:
  populate_movie_list:
    imdb_watchlist:
      user_id: ur19811510
      list: watchlist
      force_language: en-us
    accept_all: yes
  trakt_list:
    username: d0g0
    list: watchlist
    type: movies
  accept_all: yes
  list_add:
    - movie_list: imdb_watchlist

But:

$ flexget -L debug execute
2017-12-08 18:20 DEBUG manager Figuring out config load paths
2017-12-08 18:20 DEBUG manager Found config: ~/config.yml
2017-12-08 18:20 DEBUG manager Config file ~/config.yml selected
2017-12-08 18:20 DEBUG manager sys.defaultencoding: ascii
2017-12-08 18:20 DEBUG manager sys.getfilesystemencoding: utf-8
2017-12-08 18:20 DEBUG manager flexget detected io encoding: utf-8
2017-12-08 18:20 DEBUG manager os.path.supports_unicode_filenames: True
2017-12-08 18:20 DEBUG plugin Trying to load plugins from: [u'~/plugins', '/usr/local/lib/python2.7/site-packages/flexget/plugins']
2017-12-08 18:20 DEBUG plugin (u'Plugin %s requires %s to load.', u'memusage', u'ext lib guppy')
2017-12-08 18:21 DEBUG plugin Plugins took 1.10 seconds to load. 291 plugins in registry.
2017-12-08 18:21 DEBUG manager Connecting to: sqlite:////~/db-config.sqlite
2017-12-08 18:21 DEBUG manager config_name: config
2017-12-08 18:21 DEBUG manager config_base: ~
2017-12-08 18:21 DEBUG manager New config data loaded.
2017-12-08 18:21 DEBUG schema current flexget version already exist in db 2.11.8
2017-12-08 18:21 DEBUG parsing setting default movie parser to internal. (options: {u'internal': , u'guessit': })
2017-12-08 18:21 DEBUG parsing setting default series parser to internal. (options: {u'internal': , u'guessit': })
2017-12-08 18:21 DEBUG cron_env Encoding utf-8 stored
2017-12-08 18:21 DEBUG util.simple_persistence setting key terminal_encoding value 'utf-8'
2017-12-08 18:21 DEBUG task_queue task queue shutdown requested
2017-12-08 18:21 INFO ipc.rpyc server started on [127.0.0.1]:56175
2017-12-08 18:21 DEBUG task populate_movie_list executing populate_movie_list
2017-12-08 18:21 DEBUG input_cache populate_movie_list cache name: imdb_watchlist_1cd5cf0fce6ede9eaad1d1db788fdf6f (has: )
2017-12-08 18:21 VERBOSE imdb_watchlist populate_movie_list Retrieving imdb list: watchlist
2017-12-08 18:21 DEBUG imdb_watchlist populate_movie_list Requesting: http://www.imdb.com/user/ur19811510/watchlist {u'Accept-Language': u'en-us'}
2017-12-08 18:21 DEBUG utils.requests populate_movie_list Fetching URL http://www.imdb.com/user/ur19811510/watchlist with args () and kwargs {'headers': {u'Accept-Language': u'en-us'}, 'allow_redirects': True, 'params': {u'start': 1, u'view': u'compact'}, u'timeout': 30}
2017-12-08 18:21 VERBOSE imdb_watchlist populate_movie_list No movies were found in imdb list: watchlist
2017-12-08 18:21 WARNING input_cache populate_movie_list Input imdb_watchlist did not return a list, cannot cache.
2017-12-08 18:21 DEBUG backlog populate_movie_list 0 entries purged from backlog
2017-12-08 18:21 WARNING details populate_movie_list Task didn't produce any entries. This is likely due to a mis-configured or non-functional input.
2017-12-08 18:21 DEBUG urlrewriter populate_movie_list Checking 0 entries
2017-12-08 18:21 VERBOSE details populate_movie_list Summary - Accepted: 0 (Rejected: 0 Undecided: 0 Failed: 0)
2017-12-08 18:21 DEBUG list_add populate_movie_list no accepted entries, nothing to add
2017-12-08 18:21 DEBUG util.simple_persistence populate_movie_list Flushing simple persistence for task populate_movie_list to db.

There are 309 titles in my IMDB watchlist.

Posts: 1

Participants: 1

Read full topic

Config uTorrent file path vs uTorrent default directory help

$
0
0

@SQUiD wrote:

Hi all

End Goal:
Download movies to specific directory which will be used for seeding, then making a copy (+ unrar'in if required) and rename to another directory.*
*Currently I haven't added the copy/unrar/rename lines in yet as I'd like to fix this issue.

Current Issue:
I believe I have set my config correctly to download movies to a specific directory, however the uTorrent default directory is being used instead, i.e. its overwriting my desired settings.
I am using a Mac uT v1.8.7

Config Snippet:
movie:
quality: 1080p h264
imdb_lookup: yes
list_match:
from:
- movie_list: mymovies
regexp:
from: title
reject:
- msd
- afg
- line
- hc
- korsub
- cam
- bdscr
- dvdscr
- preair
- r5
- tc
- ts
- ecc
- avc
- avi
- qebs
- hdtc
- hdcam
- telesync
- webhd
- webrip
- ac3d
- 3d
- german
- dutch
- french
- truefrench
- danish
- swedish
- spanish
- italian
- korean
- dubbed
- swesub
content_size:
min: 6000
max: 14000
strict: no
inputs:
- rss:
url: https://xx
all_entries: no
- rss:
url: https://xx
- rss:
url: https://xx
- rss:
url: https://xx
- rss:
url: https://xx
- rss:
url: https://xx
- rss:
url: https://xx
all_entries: no
utorrent:
url: http://localhost:65502/gui/
username: xxx
password: xxx
path: /Users/xxx/Downloads/Torrent Downloads/Seeding/Movies

uTorrent Snippet:
http://tinypic.com/r/2isy2j6/9

Posts: 1

Participants: 1

Read full topic

main_file_only not working with Deluge

$
0
0

@thor wrote:

I am using Deluge 1.3.15 on Ubuntu 14.04 and I cannot get it to extract and rename only the main file.

I get the following error in the log file:
2017-12-09 03:25 WARNING deluge ShowRSS No files in "MacGyver 2x10 War Room + Ship 720p" are > 90% of content size, no files renamed.
2017-12-09 03:25 WARNING deluge ShowRSS No files in "Blue Bloods 8x10 Heavy Is The Head 720p" are > 90% of content size, no files renamed.
2017-12-09 03:25 WARNING deluge ShowRSS No files in "S.W.A.T. 1x06 Octane 720p" are > 90% of content size, no files renamed.
2017-12-09 03:25 WARNING deluge ShowRSS No files in "The Orville 1x12 Mad Idolatry 720p" are > 90% of content size, no files renamed.
2017-12-09 03:25 WARNING deluge ShowRSS No files in "Arrow 6x09 Irreconcilable Differences 720p" are > 90% of content size, no files renamed.

Here is an excerpt from my .yml file.
tv:
configure_series:
from:
thetvdb_list:
username: dalewis62
account_id: 9B877C9601BABAD9
thetvdb_lookup: yes
set:
path: /home/owner/incomplete
content_filename: "{{ series_name |replace(':',' ')|replace('.',' ') }}-{{ series_id }}-{{ tvdb_ep_name |replace(':',' ')|replace('.',' ') |replace('?','') }}"
movedone: "/home/owner/TV/{{ series_name |replace(':',' ')|replace('.',' ') }}/Season {{ series_season }}"

deluge:
  main_file_only: yes

Any ideas on what I need to add or change?

Posts: 2

Participants: 1

Read full topic

Viewing all 716 articles
Browse latest View live