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

Flexget reporting BUG

$
0
0

@gazhay wrote:

As usual, flexget working fine for long periods, and suddenly, with no config change, hit a snag.
Debug log is 44000+ lines, so here are the important ones

`2017-07-17 11:49 DEBUG    series        download-shows  adding release <SeriesParser(data=The Amazing Race S20E04 HDTV XviD-2HD,name=The Amazing Race,id=None,season=20,season_pack=None,episode=4,quality=hdtv xvid,proper=0,status=OK)>
2017-07-17 11:49 DEBUG    series        download-shows  -> added <Release(id=None,quality=hdtv xvid,downloaded=None,proper_count=0,title=The Amazing Race S20E04 HDTV XviD-2HD)>
2017-07-17 11:49 DEBUG    series        download-shows  start with entities: ['The Amazing Race S20E04 HDTV XviD-2HD']
2017-07-17 11:49 ERROR    series        download-shows  cannot compare None with ep
2017-07-17 11:49 ERROR    series        download-shows  cannot compare ep with None
2017-07-17 11:49 CRITICAL task          download-shows  BUG: Unhandled error in plugin series: unorderable types: Episode() < Episode()
2017-07-17 11:49 CRITICAL manager       download-shows  An unexpected crash has occurred. Writing crash report to /home/gaz/.flexget/crash_report.2017.07.17.114955889603.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.10.43
2017-07-17 11:49 DEBUG    manager       download-shows  Traceback:
Traceback (most recent call last):
  File "/usr/local/lib/python3.5/dist-packages/flexget/task.py", line 483, in __run_plugin
    return method(*args, **kwargs)
File "/usr/local/lib/python3.5/dist-packages/flexget/event.py", line 23, in __call__
return self.func(*args, **kwargs)
File "/usr/local/lib/python3.5/dist-packages/flexget/plugins/filter/series.py", line 1544, in on_task_filter
self.process_series(task, series_entries, series_config)
File "/usr/local/lib/python3.5/dist-packages/flexget/plugins/filter/series.py", line 1652, in process_series
if entity < entity.series.begin:
TypeError: unorderable types: Episode() < Episode()
2017-07-17 11:49 WARNING  task          download-shows  Aborting task (plugin: series)
2017-07-17 11:49 DEBUG    backlog       download-shows  Remembering all entries to backlog because of task abort.

`

Posts: 9

Participants: 2

Read full topic


Tvdb information for series form filesystem

$
0
0

@schnyders wrote:

Hi there

I'm a flexget noob, but perhaps someone can help me, or point me in the right direction
I'm getting my series from filesystem. I see that for most of the series flexget finds the meta infomation without any problem on thetvdb. But it's not working for some. See the logs and config below. Is there anything I can do to get them working. Create a nfo file with the tvdb id or something. What I can't change is the file and folder name/structur. As this is already used in plex. And I can't use the plex plugin as I'm using plex home.

Thanks for help

Log

2017-07-22 10:15
DEBUG
series
no episodes found for series `Die Brücke` with parameters season: None, downloaded: True
2017-07-22 10:15
DEBUG
series
no season packs found for series `Die Brücke` with parameters season: None, downloaded: True
2017-07-22 10:15
DEBUG
api_tvdb
Looking up tvdb information for 'Die Brücke'. TVDB ID: None
2017-07-22 10:15
DEBUG
api_tvdb
Series <name=Die Brücke,tvdb_id=None> not found in cache, looking up from tvdb.
2017-07-22 10:15
DEBUG
utils.requests
Fetching URL https://api.thetvdb.com/search/series with args () and kwargs {'json': None, 'params': {'name': u'Die Br\xfccke'}, u'timeout': 30, 'headers': {u'Accept-Language': u'en', u'Authorization': u'Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1MDA3OTUzNDksImlkIjoiRmxleEdldCIsIm9yaWdfaWF0IjoxNTAwNzA4OTQ5fQ.Q58H7ui3hXBWVkeZtVTtJ13FKdVwAJn-Cbn_GAIkTfPFuwzQXtJ_dmypbo2H0yfcrSPPZPFyduVdaCZgo3OQKM1tW9DzMfiGOsBHVVZp6ToPnUVIFD4cXkfr0wGK7LmzmU67uGdF3r8X2EAht9UlnQbSDkYEUtnVHoh52P3JlznJ6yvh1ZdEu_dmUu-6y1Dxv1HWkTk14vlBXE8ppNUqEgYWFHx5Amg_p9U6AQ73-7FhpHAJn784m7dFQdgFS-Wl3hy3B4QQdFrPdHxyVx4lfm_McCDZ2kb7j8V4yV9RycD2HqmsIrRlrdPnpxrzozVk4NVQODAAbnm_wEdOz2jX6g'}}
2017-07-22 10:18
DEBUG
series
no episodes found for series `Die Brücke` with parameters season: None, downloaded: True
2017-07-22 10:18
DEBUG
series
no season packs found for series `Die Brücke` with parameters season: None, downloaded: True

My config:

web_server: yes

tasks:
    serienjunkies.org:
        redirect_url: yes
        rss: http://serienjunkies.org/xml/feeds/episoden.xml
        serienjunkies:
            language: german
            hoster: so
        quality: 720p+ hdtv+ !10bit !h265
        regexp:
            reject:
                - ENGLISCH
        configure_series:
            settings:
                quality: 720p+ hdtv+ !10bit !h265
            from:
                filesystem:
                    path: /video/TvShows/
                    retrieve:
                        - dirs
        exists_series:
            path: '/video/TvShows/{{series_name}}'
        exec:
            - echo text={{url}} >> "/watchfolder/{{title}}.crawljob"
            - echo downloadFolder=/root/Downloads/flexget/{{title}} >> "/watchfolder/{{title}}.crawljob"
        notify:
            entries:
                title: Downloading {{series_name}}
                message: Episode {{series_id}}
                via:
                    - pushover:
                        user_key: u5zg2omhq6257kxmy6ppmahr8e7erw

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

Posts: 3

Participants: 2

Read full topic

Podcast Renaming: If/then help!

$
0
0

@bmilcs wrote:

How can I code this properly?

I want to rename any podcast with "Thursday" in the title to Date TMP.
I want to rename any podcast with "Monday" in the title to Date MMP.

How do I successfully apply an if/then statement to execute this? I tried something like this, but of course it didn't work. I am not a programmer :stuck_out_tongue:

Thanks!

web_server:
  bind: 0.0.0.0
  port: 3539
  web_ui: yes

templates:

    podcast:
        accept_all: yes
        pathscrub: windows
        limit_new: 1

tasks:

  MMP:
    template: podcast
    rss: http://billburr.libsyn.com/rss/
    download: /mnt/user/podcasts/Monday_Morning_Podcast/
    if:
    - "'Monday' in {{ title }}"
        set:
        filename: "{{ rss_pubdate | formatdate('%Y-%m-%d') }} -  MMP.mp3"
    - "'Thursday' in {{ title }}"
        set:
        filename: "{{ rss_pubdate | formatdate('%Y-%m-%d') }} -  MMP.mp3"

Posts: 4

Participants: 2

Read full topic

How to restart RSS podcast feed; Re-download from latest entry

$
0
0

@bmilcs wrote:

How can I clear my podcast download feed history and start pulling from the top of the list again?

I've googled it and this isn't a series or related to TV. I'm not even sure how to access the command line with my current setup.

I'm running activ-flexget, a docker for Unraid OS.

Thanks :slight_smile:

Posts: 4

Participants: 2

Read full topic

Duplicate movie with different .torrent

$
0
0

@kdaye wrote:

problem
sample

Your.Name.2016.BluRay.1080p.DTS.x264-EPiC@
Your Name 2016 BluRay 1080p x264 DTS 2Audios
Your Name 2016 BluRay 720p x264 DTS 2Audios
Your Name 2016 BluRay 1080p DTS-HD MA 5.1 x264
Your Name 2016 BluRay iPad 1080p AAC x264
Their.Finest.2016.720p.BluRay.DD5.1.x264-BMDru
Wakefield.2016.BluRay.1080p.AVC.DTS-HD.MA5.1-M
Wakefield.2016.BluRay.1080p.DTS.x264-CHD

My config

templates:
  global:
    accept_all: yes
  bt:
    transmission:
      host: 172.21.0.20
      port: 9091

tasks:

  movie:
    rss: xxxxxxxxxxxxxxxxxxxxxx
    template:
      - bt
    set:
      path: /downloads/movie/normal

My target

if same name just download one of them
If exist 1080p (
     download 1080p
     ) else (
      download 720p
)


Your.Name.2016.BluRay.1080p.DTS.x264-EPiC@
Their.Finest.2016.720p.BluRay.DD5.1.x264-BMDru
Wakefield.2016.BluRay.1080p.AVC.DTS-HD.MA5.1-M

Plz help:0-
How to config it?

Posts: 1

Participants: 1

Read full topic

Not downloading movies available is 720 and SD quality

$
0
0

@marine88 wrote:

I there i have my config based on jonybat one very good and stable I use that for a while but i see that are many movies on torrents that my config doe´s not download can u guys please help me optimize it to download more movies? I want to improve the dowload of old movies in quality sd too. Here is my log´s.

Posts: 3

Participants: 2

Read full topic

Error While Installing pcapy

$
0
0

@PulkitSingh256 wrote:

i have python2.7 dev installed
this is what i am getting

root@kali:~# pip install pcapy

Collecting pcapy
  Using cached pcapy-0.11.1.tar.gz
Building wheels for collected packages: pcapy
  Running setup.py bdist_wheel for pcapy ... error
  Complete output from command /usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-EK3rAm/pcapy/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d /tmp/tmppsNyNspip-wheel- --python-tag cp27:
  running bdist_wheel
  running build
  running build_ext
  building 'pcapy' extension
  creating build
  creating build/temp.linux-armv7l-2.7
  arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -fdebug-prefix-map=/build/python2.7-sw1gMG/python2.7-2.7.13=. -fstack-protector-strong -Wformat -Werror=format-security -fPIC -I/usr/include/python2.7 -c pcapdumper.cc -o build/temp.linux-armv7l-2.7/pcapdumper.o
  cc1plus: warning: command line option ‘-Wstrict-prototypes’ is valid for C/ObjC but not for C++
  pcapdumper.cc:11:18: fatal error: pcap.h: No such file or directory
   #include <pcap.h>
                    ^
  compilation terminated.
  error: command 'arm-linux-gnueabihf-gcc' failed with exit status 1

  ----------------------------------------
  Failed building wheel for pcapy
  Running setup.py clean for pcapy
Failed to build pcapy
Installing collected packages: pcapy
  Running setup.py install for pcapy ... error
    Complete output from command /usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-EK3rAm/pcapy/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-OUIvzW-record/install-record.txt --single-version-externally-managed --compile:
    running install
    running build
    running build_ext
    building 'pcapy' extension
    creating build
    creating build/temp.linux-armv7l-2.7
    arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -fdebug-prefix-map=/build/python2.7-sw1gMG/python2.7-2.7.13=. -fstack-protector-strong -Wformat -Werror=format-security -fPIC -I/usr/include/python2.7 -c pcapdumper.cc -o build/temp.linux-armv7l-2.7/pcapdumper.o
    cc1plus: warning: command line option ‘-Wstrict-prototypes’ is valid for C/ObjC but not for C++
    pcapdumper.cc:11:18: fatal error: pcap.h: No such file or directory
     #include <pcap.h>
                      ^
    compilation terminated.
    error: command 'arm-linux-gnueabihf-gcc' failed with exit status 1

    ----------------------------------------
Command "/usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-EK3rAm/pcapy/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-OUIvzW-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-EK3rAm/pcapy/

Posts: 5

Participants: 2

Read full topic

Flexget istallation wih synocommunity package - Issue

$
0
0

@Slim1234slim wrote:

I recently installed the Flexget package on the my ds916+. After a few issues, I managed to run it from the package Center.
Then I used ssh to go modify the config.yml file. I also used the occasion to update it. I am no running version 2.10.75.
But when I run a check, is was saying that he couldn't find the file.
(the file is located in /usr/local/flexget/var/config.yml ) but apparently he never goes there to check. So I created an other file in /usr/local/flexget/var/bin/config.yml.

But now when I make a check (/usr/local/flexget/env/bin/python /usr/local/flexget/env/bin/flexget --check)
I get this error:
Could not instantiate manager: [Errno 13] Permission denied: u'/volume1/@appstore/flexget/env/bin/flexget.log'

Can someone tell me what I am doing wrong?

Posts: 1

Participants: 1

Read full topic


How to tell flexget to get both standard WEBRip and AMZN WEBRip

$
0
0

@Isaac_Christie wrote:

My current task gets several different qualities of tv shows, and I have been using a small script addon from the forums to put webrip quality above webdl and also to reject all webrips unless it has AMZN of NF in the title (cause as we know those webrips are really high quality). However now what I would like to do to get flexget to get both the standard WEBRip if it comes out and still ALSO get the AMZN or NF WEBRip if that ends up being released aswell. My task is as follows:

  tv:
    manual: yes
    download: ~/flexget/torrents/
    metainfo_series: yes
    trakt_lookup:
      account: '{? trakt.usr ?}'
    thetvdb_lookup: yes
    configure_series:
      from:
        trakt_list:
          account: '{? trakt.usr ?}'
          list: '{? trakt.tv ?}'
          type: shows
      settings:
        identified_by: ep
        qualities:
          - hdtv 1080p h264
          - hdtv 720p h264
          - hdtv <720p h264
          - webdl 1080p h264
          - webdl 720p h264
          - webrip 1080p h264
          - webrip 720p h264
    reorder_quality:
      webrip:
        above: webdl
    if:
      - '"webrip" == quality.source and not ("AMZN" in title or "Amazon" in title or "NF" in title)': reject

PS: my task is manual because I use flexget in daemon mode with the IRC plugin.

Posts: 1

Participants: 1

Read full topic

Imdb read timed out

$
0
0

@najmudin94 wrote:

Hi
how to fix
Requestexception: httpconnectionpool(host='www.imdb.com', port=80): read timed out
thanks

Posts: 4

Participants: 2

Read full topic

[Req] Support of Actors in Trakt_List

Cannot get daemon running on reboot

$
0
0

@mblissmer wrote:

Hi all. I've got flexget set up and working, its all working more or less fantastically, except I can't get the daemon to start on reboot.

If I manually type:

sudo flexget daemon start -d --autoreload-config

it works great. But I've added

@reboot /usr/local/bin/flexget daemon start -d

to my crontab, but after reboot, running

sudo flexget daemon status

reports that no daemon is running.

I've been searching around and cannot seem to find this issue, so I wanted to ask. Anyone have any ideas or troubleshooting steps I can try? I'm still relatively new to Linux.

Posts: 9

Participants: 4

Read full topic

Series are case sensitive

$
0
0

@bauruine wrote:

Hi

I have noticed that the series matching is now case sensitive.

Example:
series:
- some series

Does not match Some.Series.S2E10.720p.x264-FlexGet but

series:
- Some Series

Does.

Is this intended or is this a bug?

Posts: 1

Participants: 1

Read full topic

Force flexget to use ipv4?

$
0
0

@5imon wrote:

i am using flexget with the series plugin to download shows from showrss.info.
showrss.info has valid AAAA records and is reachable with ipv6, but it does not work that well: often i get a 502 http response. but with ipv4 it works well.
can i somehow force flexget to use ipv4 only for showrss?

Posts: 2

Participants: 1

Read full topic

Put multiple links in crawljob file

$
0
0

@Eric_Chan wrote:

Hi, I'm trying to create a crawljob file for jdownloader to do the downloading and I wanted to create the package name according to the title of the podcast so they can be file everything into a folder.

Here is an example title that I stripped off from the RSS feed:

PDF - Intermediate - (Podcast title)
Download Link 1 example
Dialogue MP3 - Intermediate - (Podcast title)
Download Link 2 example
Lesson Review MP3 - Intermediate - (Podcast title)
Download Link 3 example

As you can see, the RSS feed have PDF, Dialogue MP3 and much more follow by the level and podcast title.

Can I strip off the beginning and have Intermediate - (Podcast title) and put all the links into one crawljob file?

If so, how would I do it?

Posts: 1

Participants: 1

Read full topic


Decompress file same name as the folder?

$
0
0

@Calby1 wrote:

Hi,
When I sometimes Decompress files the .MKV file gets a random name like random-name.2017.mkv.
What I want is that the filename is the same as the main folder name.
For a example the main folder name use to bee like name.2017-random.

Well you get the point, how do I do that?

Posts: 4

Participants: 4

Read full topic

Accept all from given group

Help with jinja

Database error while running a task. Attempting to recover

$
0
0

@aSystemOverload wrote:

I'm getting database crashes with the following error:

2017-10-03 21:58 CRITICAL task_queue                    Database error while running a task. Attempting to recover.
2017-10-03 21:58 CRITICAL manager                       An unexpected crash has occurred. Writing crash report to /home/username/.flexget/crash_report.2017.10.03.215843930217.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\
.10.95

Last Trace is

Traceback (most recent call last):
  File "/usr/lib/python2.7/site-packages/flexget/task_queue.py", line 48, in run
    self.current_task.execute()
  File "/usr/lib/python2.7/site-packages/flexget/task.py", line 72, in wrapper
    return func(self, *args, **kw)
  File "/usr/lib/python2.7/site-packages/flexget/task.py", line 644, in execute
    self._execute()
  File "/usr/lib/python2.7/site-packages/flexget/task.py", line 610, in _execute
    self.__run_task_phase(phase)
  File "/usr/lib/python2.7/site-packages/flexget/task.py", line 464, in __run_task_phase
    self.check_config_hash()
  File "/usr/lib/python2.7/site-packages/flexget/task.py", line 566, in check_config_hash
    last_hash = session.query(TaskConfigHash).filter(TaskConfigHash.task == self.name).first()
  File "/usr/lib/python2.7/site-packages/sqlalchemy/orm/query.py", line 2755, in first
    ret = list(self[0:1])
  File "/usr/lib/python2.7/site-packages/sqlalchemy/orm/query.py", line 2547, in __getitem__
    return list(res)
  File "/usr/lib/python2.7/site-packages/sqlalchemy/orm/query.py", line 2855, in __iter__
    return self._execute_and_instances(context)
  File "/usr/lib/python2.7/site-packages/sqlalchemy/orm/query.py", line 2878, in _execute_and_instances
    result = conn.execute(querycontext.statement, self._params)
  File "/usr/lib/python2.7/site-packages/sqlalchemy/engine/base.py", line 945, in execute
    return meth(self, multiparams, params)
  File "/usr/lib/python2.7/site-packages/sqlalchemy/sql/elements.py", line 263, in _execute_on_connection
    return connection._execute_clauseelement(self, multiparams, params)
  File "/usr/lib/python2.7/site-packages/sqlalchemy/engine/base.py", line 1053, in _execute_clauseelement
    compiled_sql, distilled_params
  File "/usr/lib/python2.7/site-packages/sqlalchemy/engine/base.py", line 1189, in _execute_context
    context)
  File "/usr/lib/python2.7/site-packages/sqlalchemy/engine/base.py", line 1402, in _handle_dbapi_exception
    exc_info

Posts: 1

Participants: 1

Read full topic

Limit max downloads per month

$
0
0

@jaydee99 wrote:

Hi,

Is there a way to limit the number of downloads ?

For example, if i want flexget to only grab 2 downloads per month on a specific rss feed, can i do this ?

Thanx !

Alex

Posts: 1

Participants: 1

Read full topic

Viewing all 376 articles
Browse latest View live