Wiki: https://flexget.com/ Forum: https://discuss.flexget.com/ Bugs: https://github.com/Flexget/Flexget/issues | Got a problem? Upload logs and config to a paste service
gazpachoking on clean
Automated ChangeLog update (compare)
FlexGet-Bot on master
Automated ChangeLog update (compare)
FlexGet-Bot on develop
v3.3.24 Prepare v3.3.25.dev (compare)
FlexGet-Bot on v3.3.24
FlexGet-Bot on master
Prepare v3.3.24.dev Update README.rst Remove link β¦ v3.3.24 (compare)
gazpachoking on develop
Update README.rst Remove link β¦ (compare)
dependabot[bot] on pip
Ram-Z (irc)
The main thing is that I need the entry to remain "seen" because it cannot be downloaded, but the series plugin should attempt to download that episode again from a different entry.
Ram-Z (irc)
Docs suggest it removes that SxxExx, but doesn't affect the seen db.
Ram-Z (irc)
Disadvantage there is that I need to extract <show> and <ep-id> myself. :(
Ram-Z (irc)
Oh, there might be an API then? Good shout, I'll have a look at that.
Ram-Z (irc)
I suppose I could write a task that does that for me and trigger it via API.
Ram-Z (irc)
Ouf this is getting quite awkward. The api endpoint is there, but both the {id} and {ep-id} are internal ids which need to be requested from the api first, via /series/search to get {series-id}, then requests all episodes via /series/{id}/episodes, loop through them to match them the episode identifier SxxExx to extract the {ep-id}, then finally PUT /series/{id}/episodes/{ep-id}/releases to reset
Ram-Z (irc)
them all.
Fonville (slack)
HI devs,
I have a question of how to approach this issue for improving the npo_watchlist plugin.
NPO recently started sending an e-mail for every login that happens on the NPO account, which makes every time Flexget runs the tasks it is sending this e-mail.
So if possible, I would like the plugin to retain its cookies, so that it can re-use the login it already had from the last task run. What would be the approach to store such data for the plugin within Flexget?
Thanks!
BrutuZ (discord)
Login on browser, then have Flexget pass them with https://flexget.com/Plugins/cookies ?
rminus (discord)
I think it has to be done at the org settings level
chewy75 (discord)
Any way to shut off crash reports until it's fixed?BrutuZ (discord)
Depending on the identifier https://flexget.com/Plugins/series/regexps#Episodenumberingmatching could be your way
BrutuZ (discord)
Quick question about the seen
plugin: Does it count entries as seen if any or all fields have been seen?
- {title: 'MyEntry', url: 'https://sameurl.com'}
- {title: 'MyEntry', url: 'https://otherurl.com'}
- {title: 'ThatEntry', url: 'https://sameurl.com'}
Would only the last 2 be rejected by seen
due to one field being repeated or would they all be left alone because both fields aren't repeated?
Also, website cert expired https://flexget.com/Plugins/seen
aidan (discord)
@BrutuZ Looking at the code, if the first one is accepted, the 2nd two should then be rejected. title, url and original_url are the default fields used to determine if something has been seen - any one of those values from an accepted entry will cause future entries to be rejected
BrutuZ (discord)
rpyc.core.vinegar/rpyc.core.vinegar/rich.errors.MarkupError: closing tag '[/yuri/ scanlations]' at position 92 doesn't match any open tag
gazpachoking (discord)
Hmm.
gazpachoking (discord)
Yeah, I think somehow we should be excluding text from entries in the markup
gazpachoking (discord)
No idea what exact part the problem is happening in though atm
gazpachoking (discord)
If you can run that again directly instead of through the daemon it might give a nicer error/traceback to put in a ticket
gazpachoking (discord)
Not sure I haven't messed up some purposeful coloring though
diddiman (discord)
If i am using https://flexget.com/Plugins/upgrade
and i set the tracking in my discover/download like this
download-movies-discover:
....
upgrade:
tracking: yes
discover:
what:
- movie_list: trakt-movies
from:
- rarbg:
category: [50, 51, 52, 54]
How do i then incorporate the upgrade-job?
My head wants to do something like this
download-movies-upgrade:
priority: 15
template:
- movies-upgrade-config
- torrents
- transmission-movies
magnets: yes
upgrade:
target: <=2160p <=bluray <=hdrplus <=h265
on_lower: reject
timeframe: 52 weeks
discover:
release_estimations: ignore
interval: 15 minutes
from:
- rarbg:
category: [50, 51, 52, 54]
But that is not even valid, due to missing what
in the discover. Any idea?
for_accepted
exec actually run concurrently with other downloads? The problem is that my queue actually isn't getting finished by the time the next flexget process is killed and restarted.
tasks
at the same time?
aidan (discord)
A couple quick and easy PR's if someone has a sec to review:aidan (discord)
It'd be cool to add another discord channel that gives notifications for new discussions questions π https://github.com/Flexget/Flexget/discussions
ksurl (discord)
If you check the box it all sends to the same one
for_accepted
exec actually run concurrently with other downloads? The problem is that my queue actually isn't getting finished by the time the next flexget process is killed and restarted. (It is doing one download at a time; I would like to download as many videos as it finds, simultaneously). Or, maybe a more generic question is: How to make flexget fork off a download process as needed while continuing to work through the list of tasks at the same time?