Quantcast
Channel: help - Forum - FlexGet
Viewing all 837 articles
Browse latest View live

Help Please, Flexget, JDownloader2, Folder Watcher and Config.yml file

$
0
0

@chest069 wrote:

Ok, so I have been trying to get a basic start on a working config.yml file for Flexget that sends everything to my local install of JDownloader2 so it can download the files and I have Folder Watcher setup for this as (I think it is required for me to do this).

I copied what was listed here on the site and changed it to the following for my config file.

tasks:
task_name:
rss: http://showrss.info/user/139389.rss?magnets=true&namespaces=true&name=null&quality=null&re=null
series:
- Supergirl
- Charmed
exec:
- echo text={{url}} >> "C:/Torrent-Files/{{title}}.crawljob"
- echo downloadFolder=/Torrent-Completed/{{title}} >> "C:/Torrent-Files/{{title}}.crawljob"

The site is ShowRss and the Rss link is where it lists all of myshows. When I run flexget --test execute config.yml in the cmd window it returns "flexget: error: unrecognized arguments: config.yml".

Right now I just want to get the config right so I can see it does what I am wanting it to do i.e. Grab the links then send to my local JDownloader2 then JDownloader2 downloads the files.

I have seen through other posts that I can do a lot more but right now this is stopping me.

Thanks for any help on this.

Posts: 2

Participants: 1

Read full topic


Having Problem with trakt plugin

$
0
0

@feign wrote:

I have configuration that returns CRITICAL when trying to access trakt API. Auth went fine but executing the command returns this:

CRITICAL plugin get-series-nextep An error has occurred looking up: Trakt_id: 77199 Error: 500 Server Error: Internal Server Error for url: https://api.trakt.tv/shows/77199/progress/watched

Does anyone know what might be the problem?

Posts: 1

Participants: 1

Read full topic

Same movies get accepted over and over by list_match plugin

$
0
0

@Karmalakas wrote:

I ran into problem, when same files are accepted over and over. Shouldn't seen plugin reject them if particular movie was already accepted? Lets say I download a movie one time, then delete file (so exists_movie plugin can't find it anymore) and it gets accepted on other search. Here's my config part for movies:

    imdb_lookup: yes
    trakt_lookup: yes
    exists_movie:
      path: '{? files_watch.movies ?}'
      type: files
      allow_different_qualities: better
    discover:
      what:
        - trakt_list:
            <<: *block-trakt-list-movies
      from: *block-rss-search-movies
      release_estimations:
        optimistic: 6 weeks
      interval: 90 minutes
    sort_by:
      - field: quality.resolution
        reverse: yes
    set:
      size: '{{size|int//1048576}}'
    if:
      - "size|int < 5000": reject
      - "size|int > 20000": reject
    list_match:
      from:
        - trakt_list:
            <<: *block-trakt-list-movies
      remove_on_match: no
    quality: 1080p+ hdtv+ h264+ dd5.1+
    assume_quality:
      720+ bluray h264: dts
      720+ bluray: h264 dts
    upgrade:
      tracking: yes
      timeframe: 6 weeks
      propers: yes
      on_lower: reject

Posts: 5

Participants: 2

Read full topic

Series are parsed wrong for some titles

$
0
0

@Karmalakas wrote:

I noticed I can't get some episodes to download. Started debugging particularly with Miracle Workers S01E02 and found out something interesting. At first it looked like none of the files, which contained an episode title in a name (maybe it matters if a name starts with a digit), where parsed (see 1st screenshot), but then I noticed something more interesting. Out of 45 search results most were rejected by IF, but 5 were left always undecided even with list_match plugin. So here's what I found - all these five files where searched on Trakt with type movie and naturally no results were found (see 2nd screenshot).

Any advice? Config works well for other shows I have in list.

1.

2.

Posts: 8

Participants: 3

Read full topic

Need some help about IRC

$
0
0

@NigaiRemonNoNioi wrote:

hi, i'm setting IRC on flexget today, but got some problem, here is my config:

templates:
  atdl:
    deluge: 
     password: '**********'
     path: '/home/user/downloads'
irc:
  irc_cool_tracker:
    tracker_file: '/home/user/tracker/PassThePopcorn.tracker'
    nickname: '*********' 
    nickserv_password: '******************'
    port: 7000
    rsskey: '*************************'
    task_re:
      - task: getatdl
        patterns:
          - regexp: 'true'
            field: irc_freeleech
          - regexp: 1080p|BDRip|WEB\-DL|WEB|BluRay|Blu\-Ray|x265|x264|MKV
            field: irc_releaseTags
    channels: ["#ptp-announce"]
tasks:
  getatdl:
    manual: yes
    if:
      - irc_releaseTags in ['drama', 'documentary', 'war', 'history']: accept
    template: atdl

and when i run "flexget execute --tasks getatdl" command, it give me this:

2019-02-28 19:19 VERBOSE task_queue There are 1 tasks to execute. Shutdown will commence when they have completed.
2019-02-28 19:19 WARNING task getatdl Task doesn't have any input plugins, you should add (at least) one!
2019-02-28 19:19 WARNING details getatdl Task didn't produce any entries. This is likely due to a mis-configured or non-functional input.
2019-02-28 19:19 VERBOSE details getatdl Summary - Accepted: 0 (Rejected: 0 Undecided: 0 Failed: 0)

what's wrong about my config? any help would appreciate it, thanks!

EDIT: i changed config to this, and get same warning just like before:

irc:
  PassThePopcorn:
    server: 'irc.passthepopcorn.me'
    port: 7000
    use_ssl: yes
    nickname: '*******************'
    nickserv_password: '***********************'
    channels: '#ptp-announce'
    invite_message: '/msg Hummingbird ENTER ******** **********************'
    tracker_file: '/home/*************/tracker/PassThePopcorn.tracker'
    authkey: '**************************************'
    torrent_pass: '*******************************'
    task_re:
      - task: PassThePopcorn
        patterns:
          - regexp: 'true'
            field: irc_freeleech
          - regexp: 1080p|BDRip|WEB\-DL|WEB|BluRay|Blu\-Ray|x265|x264|MKV
            field: irc_category
tasks:
  PassThePopcorn:
    manual: yes
    if:
      - irc_releaseTags in ['drama', 'documentary', 'war', 'history']: accept
    deluge: 
     password: '********************'
     path: '/home/**********/downloads'
schedules:
  - tasks: PassThePopcorn
    interval:
      minutes: 1

Posts: 1

Participants: 1

Read full topic

IMDb watchlist plugin

$
0
0

@zstump wrote:

Hello,
Does anybody know if IMDb changed something recently? IMDb watchlist plugin was working fine a few days ago now I'm getting "ValueError: unknown url type:" error. Haven't made any changes to config.yml.

Posts: 1

Participants: 1

Read full topic

Downloading series

$
0
0

@dan wrote:

Hello everyone,

I have a hard time figuring out how to use configure_series and discover with Trakt. The console shows up a bunch of Set begin option, or use CLI \`series begin\` subcommand to set first episode to emit messages.

I have the following configuration:

variables: variables.yml

# -----------------------------------------------------------------------------
# Configuration templates
# -----------------------------------------------------------------------------

templates:
  anchors:
    _transmission: &transmission
      host: localhost
      port: 9091
      username: '{? transmission.username ?}'
      password: '{? transmission.password ?}'

  torrents:
    transmission:
      <<: *transmission
    torrent_alive:
      reject_for: 5 minutes

  accept-all-force:
    accept_all: true
    disable: # disable any plugin that may reject
      - seen
      - seen_info_hash
      - retry_failed

  # ---------------------------------------------------------------------------
  # Series settings
  # ---------------------------------------------------------------------------

  series-metadata:
    metainfo_series: yes
    thetvdb_lookup: yes

  # ---------------------------------------------------------------------------
  # Movies settings
  # ---------------------------------------------------------------------------

  movies-metadata:
    imdb_lookup: yes

# -----------------------------------------------------------------------------
# Tasks
# -----------------------------------------------------------------------------

tasks:

  # ---------------------------------------------------------------------------
  # Find series from Trakt's watching list and watchlist
  # ---------------------------------------------------------------------------

  find-trakt-series-watching:
    priority: 1
    template:
      - series-metadata
      - accept-all-force
    next_trakt_episodes:
      account: "{? trakt.account ?}"
      list: Watching List
      context: watched
      position: next
    list_add:
      - entry_list: trakt-series

  find-trakt-series-watchlist:
    priority: 1
    template:
      - series-metadata
      - accept-all-force
    next_trakt_episodes:
      account: '{? trakt.account ?}'
      list: watchlist
      context: watched
      position: next
    list_add:
      - entry_list: trakt-series

  set-series-begin:
    priority: 2
    template:
      - series-metadata
      - accept-all-force
    entry_list: trakt-series
    set_series_begin: yes

  # ---------------------------------------------------------------------------
  # Find movies from Trakt's watchlist
  # ---------------------------------------------------------------------------

  find-trakt-movies-watchlist:
    priority: 1
    template:
      - movies-metadata
      - accept-all-force
    trakt_list:
      account: "{? trakt.account ?}"
      list: watchlist
      type: movies
    accept_all: yes
    list_add:
      - movie_list: trakt-movies

  # ---------------------------------------------------------------------------
  # Download series
  # ---------------------------------------------------------------------------

  download-series:
    priority: 3
    template:
      - series-metadata
      - torrents
    content_size:
      min: 100
      max: 10000
    configure_series:
      from:
        entry_list: trakt-series
      settings:
        exact: no
        target: 1080p hdtv+
        quality: 720p-1080p webrip+
        timeframe: 12 hours
        propers: yes
        identified_by: ep
    discover:
      release_estimations: loose
      interval: 1 hour
      what:
        - next_series_episodes: yes
      from:
        - piratebay:
            category: highres tv
        - limetorrents:
            category: tv
        - rarbg:
            category: [2, 18, 41, 49]
    transmission:
      content_filename: "{{ tvdb_series_name }} - {{ tvdb_ep_id }} - {{ tvdb_ep_name|default('Unknown') }}"

  # ---------------------------------------------------------------------------
  # Download movies
  # ---------------------------------------------------------------------------

  download-movies:
    priority: 3
    template:
      - torrents
    discover:
      release_estimations: loose
      interval: 30 minutes
      what:
        - movie_list: trakt-movies
      from:
        # - piratebay:
        #     category: highres movies
        - limetorrents:
            category: movies
        - rarbg:
            category: [17, 44, 45]
    quality: 720p-1080p webdl+
    proper_movies: no
    content_size:
      min: 1000
      max: 20000
      strict: no
    list_match:
      from:
        - movie_list: trakt-movies
    transmission:
      content_filename: "{{ imdb_name }} ({{ imdb_year }})"

  # ---------------------------------------------------------------------------
  # Download subtitles
  # ---------------------------------------------------------------------------

  download-subtitles:
    priority: 4
    filesystem:
      path:
        - /downloads/complete
      regexp: '.*\.(avi|mkv|mp4)$'
      recursive: yes
    subliminal:
      languages:
        - en
        - ro
      providers: [addic7ed, opensubtitles, tvsubtitles]
      single: no
      hearing_impaired: yes
      authentication:
        opensubtitles:
          username: '{? opensubtitles.username ?}'
          password: '{? opensubtitles.password ?}'

web_server: yes

Running the following command:

flexget execute --tasks find-trakt-series-watching find-trakt-series-watchlist set-series-begin download-series

prints the following:

2019-03-04 22:24 VERBOSE  details       find-trakt-series-watching Produced 4 entries.
2019-03-04 22:24 VERBOSE  task          find-trakt-series-watching ACCEPTED: `Suits (2011) S08E16` by accept_all plugin
2019-03-04 22:24 VERBOSE  task          find-trakt-series-watching ACCEPTED: `The Good Doctor (2017) S02E16` by accept_all plugin
2019-03-04 22:24 VERBOSE  task          find-trakt-series-watching ACCEPTED: `Young Sheldon (2017) S02E16` by accept_all plugin
2019-03-04 22:24 VERBOSE  task          find-trakt-series-watching ACCEPTED: `Modern Family (2009) S10E15` by accept_all plugin
2019-03-04 22:24 VERBOSE  details       find-trakt-series-watching Summary - Accepted: 4 (Rejected: 0 Undecided: 0 Failed: 0)
2019-03-04 22:24 VERBOSE  list_add      find-trakt-series-watching adding accepted entries into entry_list - trakt-series
2019-03-04 22:24 VERBOSE  details       find-trakt-series-watchlist Produced 7 entries.
2019-03-04 22:24 VERBOSE  task          find-trakt-series-watchlist ACCEPTED: `Ozark (2017) S01E01` by accept_all plugin
2019-03-04 22:24 VERBOSE  task          find-trakt-series-watchlist ACCEPTED: `Twin Peaks (1990) S01E01` by accept_all plugin
2019-03-04 22:24 VERBOSE  task          find-trakt-series-watchlist ACCEPTED: `The Sopranos (1999) S01E01` by accept_all plugin
2019-03-04 22:24 VERBOSE  task          find-trakt-series-watchlist ACCEPTED: `Homeland (2011) S01E01` by accept_all plugin
2019-03-04 22:24 VERBOSE  task          find-trakt-series-watchlist ACCEPTED: `Dirk Gently's Holistic Detective Agency (2016) S01E01` by accept_all plugin
2019-03-04 22:24 VERBOSE  task          find-trakt-series-watchlist ACCEPTED: `Baby Daddy (2012) S01E01` by accept_all plugin
2019-03-04 22:24 VERBOSE  task          find-trakt-series-watchlist ACCEPTED: `The Good Doctor (2017) S02E16` by accept_all plugin
2019-03-04 22:24 VERBOSE  details       find-trakt-series-watchlist Summary - Accepted: 7 (Rejected: 0 Undecided: 0 Failed: 0)
2019-03-04 22:24 VERBOSE  list_add      find-trakt-series-watchlist adding accepted entries into entry_list - trakt-series
2019-03-04 22:24 VERBOSE  next_series_episodes download-series Series `Young Sheldon (2017) S02E16` has no history. Set begin option, or use CLI `series begin` subcommand to set first episode to emit
2019-03-04 22:24 VERBOSE  next_series_episodes download-series Series `Twin Peaks (1990) S01E01` has no history. Set begin option, or use CLI `series begin` subcommand to set first episode to emit
2019-03-04 22:24 VERBOSE  next_series_episodes download-series Series `The Sopranos (1999) S01E01` has no history. Set begin option, or use CLI `series begin` subcommand to set first episode to emit
2019-03-04 22:24 VERBOSE  next_series_episodes download-series Series `The Good Doctor (2017) S02E16` has no history. Set begin option, or use CLI `series begin` subcommand to set first episode to emit
2019-03-04 22:24 VERBOSE  next_series_episodes download-series Series `Suits (2011) S08E16` has no history. Set begin option, or use CLI `series begin` subcommand to set first episode to emit
2019-03-04 22:24 VERBOSE  next_series_episodes download-series Series `Ozark (2017) S01E01` has no history. Set begin option, or use CLI `series begin` subcommand to set first episode to emit
2019-03-04 22:24 VERBOSE  next_series_episodes download-series Series `Modern Family (2009) S10E15` has no history. Set begin option, or use CLI `series begin` subcommand to set first episode to emit
2019-03-04 22:24 VERBOSE  next_series_episodes download-series Series `Homeland (2011) S01E01` has no history. Set begin option, or use CLI `series begin` subcommand to set first episode to emit
2019-03-04 22:24 VERBOSE  next_series_episodes download-series Series `Dirk Gently's Holistic Detective Agency (2016) S01E01` has no history. Set begin option, or use CLI `series begin` subcommand to set first episode to emit
2019-03-04 22:24 VERBOSE  next_series_episodes download-series Series `Baby Daddy (2012) S01E01` has no history. Set begin option, or use CLI `series begin` subcommand to set first episode to emit
2019-03-04 22:24 VERBOSE  discover      download-series Discovering 0 titles ...
2019-03-04 22:24 VERBOSE  details       download-series Task didn't produce any entries.
2019-03-04 22:24 VERBOSE  details       download-series Summary - Accepted: 0 (Rejected: 0 Undecided: 0 Failed: 0)

Also, series list shows up weird results too:

┌───────────────────────────────────────────────────────┬───────┬──────────────────┬─────┬────────────┬───────────────┐
│ Name                                                  │ Begin │ Last Encountered │ Age │ Downloaded │ Identified By │
├───────────────────────────────────────────────────────┼───────┼──────────────────┼─────┼────────────┼───────────────┤
│ Baby Daddy (2012) S01E01                              │ -     │ -                │ -   │ -          │ ep            │
│ Dirk Gently's Holistic Detective Agency (2016) S01E01 │ -     │ -                │ -   │ -          │ ep            │
│ Homeland (2011) S01E01                                │ -     │ -                │ -   │ -          │ ep            │
│ Modern Family (2009) S10E15                           │ -     │ -                │ -   │ -          │ ep            │
│ Ozark (2017) S01E01                                   │ -     │ -                │ -   │ -          │ ep            │
│ Suits (2011) S08E16                                   │ -     │ -                │ -   │ -          │ ep            │
│ The Good Doctor (2017) S02E16                         │ -     │ -                │ -   │ -          │ ep            │
│ The Sopranos (1999) S01E01                            │ -     │ -                │ -   │ -          │ ep            │
│ Twin Peaks (1990) S01E01                              │ -     │ -                │ -   │ -          │ ep            │
│ Young Sheldon (2017) S02E16                           │ -     │ -                │ -   │ -          │ ep            │
└───────────────────────────────────────────────────────┴───────┴──────────────────┴─────┴────────────┴───────────────┘

Can you point me in the right direction?

Posts: 2

Participants: 2

Read full topic

Flexget start problem since updating yesterday

$
0
0

@Zzrod wrote:

Once I updated, the following error has started ... any help appreciated ...

flexget daemon start -d
2019-03-06 08:20 CRITICAL plugin Exception while loading plugin flexget.components.status.db
Traceback (most recent call last):
File "/home/pi/.local/lib/python2.7/site-packages/flexget/plugin.py", line 434, in importplugin
import_module(module_name)
File "/usr/lib/python2.7/importlib/__init__.py", line 37, in import_module
import(name)
File "/home/pi/.local/lib/python2.7/site-packages/flexget/components/status/db.py", line 29, in
class StatusTask(Base):
File "/home/pi/.local/lib/python2.7/site-packages/sqlalchemy/ext/declarative/api.py", line 65, in init
asdeclarative(cls, classname, cls.dict)
File "/home/pi/.local/lib/python2.7/site-packages/sqlalchemy/ext/declarative/base.py", line 88, in asdeclarative
MapperConfig.setupmapping(cls, classname, dict_)
File "/home/pi/.local/lib/python2.7/site-packages/sqlalchemy/ext/declarative/base.py", line 116, in setup_mapping
cfg_cls(cls_, classname, dict_)
File "/home/pi/.local/lib/python2.7/site-packages/sqlalchemy/ext/declarative/base.py", line 144, in init
self.setuptable()
File "/home/pi/.local/lib/python2.7/site-packages/sqlalchemy/ext/declarative/base.py", line 437, in setuptable
**table_kw)
File "/home/pi/.local/lib/python2.7/site-packages/sqlalchemy/sql/schema.py", line 438, in new
"existing Table object." % key)
InvalidRequestError: Table 'status_task' is already defined for this MetaData instance. Specify 'extend_existing=True' to redefine options and columns on an existing Table object.
Traceback (most recent call last):
File "/usr/local/bin/flexget", line 11, in
sys.exit(main())
File "/home/pi/.local/lib/python2.7/site-packages/flexget/__init__.py", line 47, in main
manager.start()
File "/home/pi/.local/lib/python2.7/site-packages/flexget/manager.py", line 399, in start
self.initialize()
File "/home/pi/.local/lib/python2.7/site-packages/flexget/manager.py", line 236, in initialize
extra_components=[os.path.join(self.config_base, 'components')],
File "/home/pi/.local/lib/python2.7/site-packages/flexget/plugin.py", line 562, in load_plugins
loadcomponents_from_dirs(extra_components)
File "/home/pi/.local/lib/python2.7/site-packages/flexget/plugin.py", line 503, in loadcomponents_from_dirs
importplugin(package_name, component_path)
File "/home/pi/.local/lib/python2.7/site-packages/flexget/plugin.py", line 434, in importplugin
import_module(module_name)
File "/usr/lib/python2.7/importlib/__init__.py", line 37, in import_module
import(name)
File "/home/pi/.local/lib/python2.7/site-packages/flexget/components/status/db.py", line 29, in
class StatusTask(Base):
File "/home/pi/.local/lib/python2.7/site-packages/sqlalchemy/ext/declarative/api.py", line 65, in init
asdeclarative(cls, classname, cls.dict)
File "/home/pi/.local/lib/python2.7/site-packages/sqlalchemy/ext/declarative/base.py", line 88, in asdeclarative
MapperConfig.setupmapping(cls, classname, dict_)
File "/home/pi/.local/lib/python2.7/site-packages/sqlalchemy/ext/declarative/base.py", line 116, in setup_mapping
cfg_cls(cls_, classname, dict_)
File "/home/pi/.local/lib/python2.7/site-packages/sqlalchemy/ext/declarative/base.py", line 144, in init
self.setuptable()
File "/home/pi/.local/lib/python2.7/site-packages/sqlalchemy/ext/declarative/base.py", line 437, in setuptable
**table_kw)
File "/home/pi/.local/lib/python2.7/site-packages/sqlalchemy/sql/schema.py", line 438, in new
"existing Table object." % key)
sqlalchemy.exc.InvalidRequestError: Table 'status_task' is already defined for this MetaData instance. Specify 'extend_existing=True' to redefine options and columns on an existing Table object.

Thank you.

Posts: 1

Participants: 1

Read full topic


Markdown syntax

$
0
0

@shotfirer wrote:

Could anyone tell me, please, where I could find Flexget's markdown syntax? It seems that it's somehow different from standard...

Posts: 1

Participants: 1

Read full topic

Almost picking the best quality ( x264 vs x265 )

$
0
0

@zosky wrote:

hi folks

after upgrading to 2.20.6 and missing the note in upgrade actions (quality>reverse) - it was catching the worst for a while. now it looks like im almost getting the best ...

still waiting 6hrs for target: 1080p h265, meanwhile these got put in backlog by IRC

│ Arrow S07E15 720p HDTV x264
│ Arrow S07E15 480p x264
│ Arrow S07E15 AAC MP4
│ Arrow S07E15 XviD
│ Arrow S07E15 720p HEVC x265

after reRunning the task i get best is 'Arrow S07E15 720p HDTV x264'

does the 1st trump the last because it contains a *source (not just rez & codec, like the last) ?

i'd like x265 over x264, regardless. can i fudge it, like "any x265 (without source) = webdl" ?

Posts: 3

Participants: 2

Read full topic

Move downloded files only when completely seeded

$
0
0

@effemmeffe wrote:

I use flexget with transmission.
I setup transmission to stop seeding after a desired ratio.
But sometimes the flexget daemon runs and one of the tasks is move the downloaded files to the final directory, so transmission will not find the file anymore and the seeding stops.
How can I instruct flexget to move the files only when transmission has finished the seed?

Posts: 1

Participants: 1

Read full topic

Another transmission migration problem

$
0
0

@effemmeffe wrote:

I just updated flexget and got the notification that I should migrate my clean_transmission plugin.
I followed the wiki and change my task to this:

  clean-transmission: # task
    priority: 150
    from_transmission: yes
    disable: [seen, seen_info_hash]
    if:
      - transmission_progress == 100: accept
      - not transmission_seed_ratio_ok: reject
      - not transmission_idle_limit_ok: reject
    transmission:
      <<: *transmission-settings
      action: remove

The transmission-settings anchor is defined in the config:

  transmission-anchors:
    _transmission-settings: &transmission-settings
      host: "{? transmission.host ?}"
      port: 9091
      username: "{? transmission.user ?}"
      password: "{? transmission.pass ?}"

The anchor is used in some of my tasks and it works fine there, but in the clean-transmission task I get this error:

fmf@kodi:~/.flexget$ flexget --test execute --task clean-transmission
2019-03-20 12:04 INFO     manager                       Test mode, creating a copy from database ...
2019-03-20 12:04 INFO     manager                       Test database created
2019-03-20 12:04 VERBOSE  task_queue                    There are 1 tasks to execute. Shutdown will commence when they have completed.
2019-03-20 12:04 INFO     transmission  clean-transmission Trying to connect to transmission...
2019-03-20 12:04 INFO     transmission  clean-transmission Successfully connected to transmission.
2019-03-20 12:04 INFO     transmission  clean-transmission Trying to connect to transmission...
2019-03-20 12:04 CRITICAL plugin        clean-transmission Username/password for transmission is incorrect. Cannot connect.
2019-03-20 12:04 WARNING  task          clean-transmission Aborting task (plugin: from_transmission)
2019-03-20 12:04 INFO     manager                       Removed test database

I double checked the transmission settings and I can connect to the daemon with my username and password, it seems that only in the clean task the connection doesn't work.
Any idea?

Posts: 2

Participants: 2

Read full topic

Feedback on config.yml - trying to optimize

$
0
0

@nuwonda wrote:

Hi there,

here's the config I currently use, no problem per se, just wondering if I can optimize it or if anything should be changed around or is a big no no.

https://pastebin.com/9VMQ92cA

I commented out the part for clean_source and mkdir since the remove-torrent task should cover that now. I used clean_transmission before but since it is deprecated I moved over to the new way.

I could do secrets for pw but then again, never bothered so far. Maybe add the option to move subtitles along with mainfile...

Any feedback appreciated!

Cheers!

Posts: 3

Participants: 2

Read full topic

Remember watched status if Trakt not available

$
0
0

@shotfirer wrote:

My config basically keeps downloading better qualities until I watch the episode. The latter relies on Trakt watched status. However, the connection to Trakt is not very reliable, errors 502 and 503 are not rare, and obviously when Flexget couldn't connect to Trakt it continues to download episodes which I already watched.
Hence the question: is there any way to remember watched status, so Flexget would knew it even when Trakt is not available? Could remember_rejected be used manually?
Or maybe there's a way to get a watched status directly from my Plex server?

Posts: 1

Participants: 1

Read full topic

Rename torrent folder in task

$
0
0

@Sam_Kisada wrote:

Hi
I have set task for download torrent with some filles inside, and i can't rename folder
here is task config:
rutracker:
template:
- global
- discord
rutracker_auth:
username: '***'
password: '****'
urlrewrite:
rutracker1:
regexp: '^(?P<id>\d+)$'
format: 'https://rutracker.org/forum/viewtopic.php?t=\g<id>'
csv:
url: file:///share/rutracker.csv
values:
title: 2
url: 1
series_name: 2
series_season: 3
series_id: 4
imdb_name: 2
thetvdb_lookup: yes
imdb_lookup: yes
tvmaze_lookup: yes
accept_all: yes
disable:
- seen_info_hash
- seen
set:
filename: 'Season {{series_season}}.torrent'
content-disposition: yes
overwrite: yes
tvmaze_episode_name: '{{title}}'
tvdb_ep_air_date: ' NOW '
path: '/share/nfsi/{{series_name}}/'
rename_like_files: yes
content_filename: 'Season {{series_season}}'

Here is dump output:

flexget execute --tasks rutracker --verbose --dump
There is a FlexGet process already running for this config, sending execution there.
2019-03-27 11:18 VERBOSE input_cache rutracker Restored 1 entries from cache
2019-03-27 11:18 VERBOSE details rutracker Produced 1 entries.
2019-03-27 11:18 VERBOSE task rutracker ACCEPTED: Brooklyn Nine-Nine by accept_all plugin
2019-03-27 11:18 INFO urlrewriter rutracker Entry 'Brooklyn Nine-Nine' URL rewritten to https://rutracker.org/forum/viewtopic.php?t=5677084 (with urlrewrite)
2019-03-27 11:18 INFO download rutracker Downloading: Brooklyn Nine-Nine
2019-03-27 11:18 VERBOSE details rutracker Summary - Accepted: 1 (Rejected: 0 Undecided: 0 Failed: 0)


-- Accepted: ---------------------------
title : Brooklyn Nine-Nine
url : https://rutracker.org/forum/viewtopic.php?t=5677084
original_url : 5677084
accepted_by : accept_all
content-disposition: True
content_filename : Season 6
content_files : [Brooklyn.Nine-Nine.s06e01.WEBDL.1080p.NewStudio.mkv, Brooklyn.Nine-Nine.s06e02.WEBDL.1080p.NewStudio.mkv, Brooklyn.Nine-Nine.s06e03.WEBDL.1080p.NewStudio.mkv, Brooklyn.Nine-Nine.s06e04.WEBDL.1080p.NewStudio.mkv, Brooklyn.Nine-Nine.s06e05.WEBDL.1080p.NewStudio.mkv, Brooklyn.Nine-Nine.s06e06.WEBDL.1080p.NewStudio.mkv, Brooklyn.Nine-Nine.s06e07.WEBDL.1080p.NewStudio.mkv, Brooklyn.Nine-Nine.s06e08.WEBDL.1080p.NewStudio.mkv, Brooklyn.Nine-Nine.s06e09.WEBDL.1080p.NewStudio.mkv, Brooklyn.Nine-Nine.s06e10.WEBDL.1080p.NewStudio.mkv]
content_size : 15509.6039906
download_auth :
filename : Season 6


imdb_year :
location : /share/nfsi/Brooklyn Nine-Nine/Season 6

BUT it still downloading with default folder name (Brooklyn.Nine.Nine.S06.WEBDL.1080p.NewStudio)
WTF?

Posts: 1

Participants: 1

Read full topic


Email notifier triggers error and asks to update notifiers to latest API

Need help getting a working config

$
0
0

@pgod wrote:

I have been trying to get a working config together for a while now and i am stuck. In the Config below I can see download links making there way from Series-From-RSS-2 -> Series-Process-Stage-1 -> Series-Process-Auto-Track but no matter what i try i never get anything out of Series-Process-Auto-Track. Can someone suggest the proper way to set that task up? I am looking to get it to accept new episodes in series from the template TV, and choose the best quality with a preference for 1080 WEB-DL.

templates:
  tv:
    configure_series:
      from:
        filesystem:
          path: 
            - /storage/tv/TV - Other
  jdownloader:
    exec:
    - echo "->{{series_name}}<-" >> "/data/{{title}}.crawljob"
    - echo "text={{url}}" >> "/data/{{title}}.crawljob"
    - echo "packageName={{title}}" >> "/data/{{title}}.crawljob"
    - echo autoConfirm=TRUE >> "/data/{{title}}.crawljob"
    - echo autoStart=TRUE >> "/data/{{title}}.crawljob"
  select_quality:
    upgrade:
      # We must add this so the upgrade plugin can track the downloaded qualities
      tracking: yes
    #timeframe:
    #  wait: 1 day
      # Let imdb handle the accept
    #  on_reached: do_nothing
    #  target: 1080p
    # If input has same movie twice, ensure only best get's through.
    best_quality:
      on_best: do_nothing
      on_lower: reject
    
tasks:
  Seed_Series_db:
    manual: yes
    template: tv
    filesystem:
        regexp: .*(avi|mkv|mp4)$
        path: 
         - /storage/tv/TV - Other
         - /storage/tv/TV - K
         - /storage/tv/TV - M
        recursive: yes
        retrieve: files

  Series-From-RSS-2:
    all_series: yes
    #accept_all: yes
    rss: https://invictus.ws/feed/
    list_add:
      - entry_list: rss-links-2

  Series-Process-Stage-1:
    template: tv
    seen: local
    invictus:
        dl_src_re:
         - "Zippyshare"
        from:
          entry_list: rss-links-2
    list_clear:
      what:
        - entry_list: rss-links-2
      phase: exit
    list_add:
      - entry_list: pending-tv-auto
    
  Series-Process-Auto-Track:
    entry_list: pending-tv-auto
    seen: local
#    list_clear:
#      what:
#        - entry_list: pending-tv-auto
#      phase: exit
    list_add:
      - entry_list: approved-tv
    template: tv
#    upgrade:
#      tracking: yes
#    timeframe:
#      wait: 3 day
#      on_reached: do_nothing
#      target: 1080p webdl 
#    best_quality:
#      on_best: do_nothing
#      on_lower: reject
    
  Download:
    manual: yes
    entry_list: approved-tv
    template: jdownloader
    list_clear:
      what:
        - entry_list: approved-tv
      phase: exit

Posts: 2

Participants: 1

Read full topic

How to prevent flexget download old torrents?

$
0
0

@goosebig wrote:

Hi guys, sometimes I have problem with flexget that when I initial a new tracker rss on flexget, I randomly download a bunch of old torrents ( a week old or even older) at one time, which makes me being the only one who's leeching on so many old torrents at once, and my ratio falls immediately.

Of course I run --test, and use pause state to delete all torrents downloaded during first few executes to make them seen. But I cannot make some torrents one week old being marked as seen, and when they pop up, I normally ended up leeching from 10 to 20+ old torrents.

Can anyone tell me how to prevent it from happening? Is there any filter I can use to set up a date that any torrent old than that date will not be downloaded?

many thanks!

Posts: 1

Participants: 1

Read full topic

Daemon status says not running while using systemd

$
0
0

@erebfaer wrote:

I have the daemon running as a systemd service. Everything seems to be working, executing tasks as specified in the schedule.
However, when I call 'flexget daemon status' it says the daemon isn't running.

I have tried having the unit run flexget with and without -d, and with user and group as both daemon and erebfaer (making sure everything in the working directory is owned by the correct user).

I'm not sure if this is something wrong or just a result of using systemd.
Not the end of the world if this can't be fixed, just want to be able to manually execute tasks with the daemon and I can always change my setup.

Current flexget.service:

[Unit]
Description=Flexget Daemon
After=network.target

[Service]
Type=simple
User=erebfaer
Group=erebfaer
UMask=000
WorkingDirectory=/etc/flexget
ExecStart=/usr/local/bin/flexget daemon start --autoreload-config
ExecStop=/usr/local/bin/flexget daemon stop
ExecReload=/usr/local/bin/flexget daemon reload
Restart=always
RestartSec=3

[Install]
WantedBy=multi-user.target

Posts: 1

Participants: 1

Read full topic

Limit import-trakt-to-sonarr

$
0
0

@4eh5xitv6787h645ebv wrote:

How would i set a limit for import-trakt-to-sonarr. Like as in i only want the top 50 searches for the list popular.
This is my config atm:
tasks:
import-trakt-to-sonarr:
trakt_list:
username: "REMOVED"
account: "REMOVED"
list: "popular"
type: shows
accept_all: yes

list_add:
   - sonarr_list:
      base_url: REMOVED
      port: REMOVED
      api_key: "REMOVED"
      ignore_episodes_with_files: true
      ignore_episodes_without_files: false
      search_missing_episodes: true

I have tired adding limit: 50 under accept_all but that doesn't work.
Anyone got any ideas?

Posts: 2

Participants: 1

Read full topic

Viewing all 837 articles
Browse latest View live