[Suggestion] Store favorite shows in local database ?

All your suggestions, requests and ideas for future development
Post Reply
Saul
Posts: 6
Joined: 21 Feb 2015, 15:46

[Suggestion] Store favorite shows in local database ?

Post by Saul »

Is it possible to set some of the tv shows as favorite, so that it will fetch all the episode information from internet and save it in the local database (HDD), so when we rename the favorite show it doesn't have to connect to the internet, although even with this it isn't taking much time, just an idea, if it is possible to implement in filebot.
User avatar
rednoah
The Source
Posts: 23924
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: [Suggestion] Store favorite shows in local database ?

Post by rednoah »

FileBot does cache everything for a few days. So if you fetch data once, it'll just use the local cache if you try to fetch the same data again in the same ~ 2 day time frame. Dynamic search results can't be cached quite the same way of course.
:idea: Please read the FAQ and How to Request Help.
Saul
Posts: 6
Joined: 21 Feb 2015, 15:46

Re: [Suggestion] Store favorite shows in local database ?

Post by Saul »

can you elaborate it a bit how it store.
like if i fetch all the episodes information using this

Code: Select all

filebot -list --db thetvdb --q Dexter --format "{s}x{e.pad(2)} {t}"
does this going to store all the episode in local database for two days, and in this two days period when i try to use the below command, does it going to look at the local database and rename it instantly ?

Code: Select all

filebot -rename "d:/tvshows/" --q "Dexter" --format "{n} E{e} [{t}]" -non-strict
in the above command i haven't mentioned

Code: Select all

--db thetvdb
, so it going to look at local first and then tvdb or even if i use that

Code: Select all

--db 
command it will first look at local db, if not available fetch from net.
Last edited by Saul on 16 Mar 2015, 05:47, edited 1 time in total.
User avatar
rednoah
The Source
Posts: 23924
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: [Suggestion] Store favorite shows in local database ?

Post by rednoah »

Pretty much.

But if you're renaming things I'd make sure to move them into another folder to make sure files won't be processed over and over indefinitely. This sort of behaviour might get you banned despite caching.
:idea: Please read the FAQ and How to Request Help.
Saul
Posts: 6
Joined: 21 Feb 2015, 15:46

Re: [Suggestion] Store favorite shows in local database ?

Post by Saul »

get you banned despite cachine :-O, if it processed indefinitely ??

Code: Select all

filebot -rename "d:/tvshows/" --q "Dexter" --format "{n} E{e} [{t}]" -non-strict --action move "d:/download" 
isn't moving files to d:/download folder
User avatar
rednoah
The Source
Posts: 23924
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: [Suggestion] Store favorite shows in local database ?

Post by rednoah »

Well, if you request the same data every 2 days for weeks then you're really just asking for it right? ;)

Nice try, but you're just specifying another input argument. It's --output "/path/to/folder" :idea:
:idea: Please read the FAQ and How to Request Help.
Saul
Posts: 6
Joined: 21 Feb 2015, 15:46

Re: [Suggestion] Store favorite shows in local database ?

Post by Saul »

can we extend the number days to cache or just store it permanently unless user wish to clear cache, i don't think it will take much space.

thanks it worked. :)

Code: Select all

filebot -rename "d:/tvshows/" --q "Dexter" --format "{n} E{e} [{t}]" -non-strict --output "d:/download" 
User avatar
rednoah
The Source
Posts: 23924
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: [Suggestion] Store favorite shows in local database ?

Post by rednoah »

No. That's not possible.
:idea: Please read the FAQ and How to Request Help.
Post Reply