Any thoughts on an option to auto-remove files from watched series?

  Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
kruykaze Offline
Senior Member
Posts: 172
Joined: Jul 2008
Reputation: 0
Post: #11
I just started using the library for shows and this would really help me out getting rid of episodes I have watched.
Are you aware of any scripts that will take care of this?
find quote
pin0chet Offline
Junior Member
Posts: 14
Joined: Aug 2010
Reputation: 0
Post: #12
Did this idea die off completely, shame, kind of liked it. Would be very useful to have some kind of automatic(optional) deletion of recently watched tv shows.
find quote
spiff Offline
Grumpy Bastard Developer
Posts: 12,233
Joined: Nov 2003
Reputation: 82
Post: #13
this can be done in an add-on. nothing i'd consider in the core.

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
find quote
Eklar Offline
Member
Posts: 69
Joined: Oct 2010
Reputation: 0
Post: #14
spiff Wrote:this can be done in an add-on. nothing i'd consider in the core.

Does such an add-on exist? I'd be fine with recently watched list where I could periodically and manually delete the content I don't want to keep, but auto-delete would be ok also.
find quote
brotbuexe Offline
Junior Member
Posts: 46
Joined: May 2010
Reputation: 0
Post: #15
http://forum.xbmc.org/showthread.php?tid=75457

I'm using it on darma beta3. You have to go to programs / program addons to run it manually. There is no autorun.

i use this addons.xml:
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.autocleaner"
       name="autocleaner script"
       version="1.0.0"
       provider-name="midna">
  <requires>
    <import addon="xbmc.python" version="1.0"/>
  </requires>
  <extension point="xbmc.python.script"
             library="default.py" />
  <extension point="xbmc.addon.metadata">
    <platform>all</platform>
    <minversion>30369</minversion>
    <summary>autocleaner script</summary>
    <description>clean watched eps</description>
  </extension>
</addon>

I didn't understand why it should leave the last ep so I changed:
if epcount > 1:
to
if epcount > 0:
find quote
Post Reply