MyTVSeries - Plugin that organizes TV Video Files (2 Viewers)

Should I implement an automatic file organizer to move and rename files?


  • Total voters
    651

zag2me

Portal Pro
April 11, 2006
216
68
Home Country
England England
I have offered my support to mirror the tvdb for media portal usage, as I work with db hosting servers :)
 

Inker

Retired Team Member
  • Premium Supporter
  • December 6, 2004
    2,055
    318
    Very nice zag2me. Thanks a lot.

    Do you think you'll be able to host the database for a while into the future? My only concern would be that privatly hosted servers (read, servers that an individual has to pay for) can dissapear any moment if the burder gets too much or someone looses interest.

    Perhaps as a backup the current way of parsing should be kept in case the database cannot be connected to. Would need to be kept updated then though for site changes of course. But at least if a database goes down it won't be another complete redesign of the plugin.
     

    hobbes487

    Portal Pro
    August 25, 2005
    208
    3
    Home Country
    United States of America United States of America
    I hope this hasn't been asked before. I had a look around and didnt see it.

    How does the scaning for episodes work? Does it just pick up new videos or does it rescan everything. At first I thought it just picked up the new videos, but whenever I do a scan it keeps telling me "There is already a file associated with the entry. Do you want to replace it?"

    Whether I say yes or no, when i run the scan again, i get the same question for the same episodes again. So i have to keep selecting yes for all the videos in order to just import one or two new episodes. Why does it keep asking me this for these videos?
     

    mcbelly

    MP Donator
  • Premium Supporter
  • June 29, 2006
    190
    5
    Home Country
    Germany Germany
    I hope this hasn't been asked before. I had a look around and didnt see it.

    How does the scaning for episodes work? Does it just pick up new videos or does it rescan everything. At first I thought it just picked up the new videos, but whenever I do a scan it keeps telling me "There is already a file associated with the entry. Do you want to replace it?"

    Whether I say yes or no, when i run the scan again, i get the same question for the same episodes again. So i have to keep selecting yes for all the videos in order to just import one or two new episodes. Why does it keep asking me this for these videos?

    No - not the usual behaviour.

    AFAIK there are two possible reasons for this :

    1. Try using Regex. The simple expressions seem to have a problem once in a while. By default simple expressions are used.

    2. If there is an apostrophe in the file name, the plugin doesn´t recognize the file an reimports it. This is a known error, which will hopefully be solved in one of the next versions.

    mcbelly
     

    mcbelly

    MP Donator
  • Premium Supporter
  • June 29, 2006
    190
    5
    Home Country
    Germany Germany
    Two more non-working series :
    Seinfeld Season 9
    MASH Season 11

    Funny thing is: all other seasons of both series work.....hmmmm


    mcbelly
     

    pannivas

    Portal Pro
    July 26, 2006
    340
    2
    47
    Nicosia
    Home Country
    Cyprus Cyprus
    Two more non-working series :
    Seinfeld Season 9
    MASH Season 11

    Funny thing is: all other seasons of both series work.....hmmmm


    mcbelly

    dunno if this will work but try inputing manually the first episode of those seasons and then try do an import and see if it does import the rest of the episodes.
     

    trojkolka

    Portal Pro
    December 24, 2004
    111
    0
    38
    The Netherlands
    Home Country
    Netherlands Netherlands
    is there already a working version for the latest SVN versions 0.2.1.0? there seem to be some errors with the database
    2006-10-08 21:00:39.203125 [ERROR][MPMain]: SQL:TVSeriesDatabase3.db3 cmd:sqlite3_prepare16:pvm=null err:ERROR detailed:table path already exists query:CREATE TABLE path (path_id integer primary key, path text);

    2006-10-08 21:00:39.203125 [ERROR][MPMain]: SQL:TVSeriesDatabase3.db3 cmd:sqlite3_prepare16:pvm=null err:ERROR detailed:table series already exists query:CREATE TABLE series (series_id integer primary key, name text, premiered text, airs text, status text, duration text, network text, description text, summary_url text);

    2006-10-08 21:00:39.203125 [ERROR][MPMain]: SQL:TVSeriesDatabase3.db3 cmd:sqlite3_prepare16:pvm=null err:ERROR detailed:table episode already exists query:CREATE TABLE episode (episode_id integer primary key, series_id integer, title text, aired text, season_number int, episode_number integer, special text, filename text, description text, summary_url text, imported_data int);

    2006-10-08 21:00:39.218750 [ERROR][MPMain]: SQL:TVSeriesDatabase3.db3 cmd:sqlite3_prepare16:pvm=null err:ERROR detailed:table episodemetadata already exists query:CREATE TABLE episodemetadata (metadata_id integer primary key, episode_id integer, series_id integer, metadatakey text, metadatavalue text);

    2006-10-08 21:00:39.218750 [ERROR][MPMain]: SQL:TVSeriesDatabase3.db3 cmd:sqlite3_prepare16:pvm=null err:ERROR detailed:table genre already exists query:CREATE TABLE genre (genre_id integer primary key, name text);

    2006-10-08 21:00:39.218750 [ERROR][MPMain]: SQL:TVSeriesDatabase3.db3 cmd:sqlite3_prepare16:pvm=null err:ERROR detailed:table genre_series_link already exists query:CREATE TABLE genre_series_link (link_id integer primary key, genre_id int, series_id int);

    2006-10-08 21:00:39.234375 [ERROR][MPMain]: SQL:TVSeriesDatabase3.db3 cmd:sqlite3_prepare16:pvm=null err:ERROR detailed:table actor already exists query:CREATE TABLE actor (actor_id integer primary key, name text, character text);

    2006-10-08 21:00:39.250000 [ERROR][MPMain]: SQL:TVSeriesDatabase3.db3 cmd:sqlite3_prepare16:pvm=null err:ERROR detailed:table actor_episode_link already exists query:CREATE TABLE actor_episode_link (link_id integer primary key, actor_id int, episode_id integer);

    2006-10-08 21:00:39.250000 [ERROR][MPMain]: SQL:TVSeriesDatabase3.db3 cmd:sqlite3_prepare16:pvm=null err:ERROR detailed:table replacementstring already exists query:CREATE TABLE replacementstring (replacementstring_id integer primary key, search text, replace text);

    2006-10-08 21:00:39.250000 [ERROR][MPMain]: SQL:TVSeriesDatabase3.db3 cmd:sqlite3_prepare16:pvm=null err:ERROR detailed:table regexpattern already exists query:CREATE TABLE regexpattern (pattern_id integer primary key, pattern text);

    2006-10-08 21:00:39.265625 [ERROR][MPMain]: SQL:TVSeriesDatabase3.db3 cmd:sqlite3_prepare16:pvm=null err:ERROR detailed:table simplepattern already exists query:CREATE TABLE simplepattern (pattern_id integer primary key, pattern text);

    2006-10-08 21:00:39.265625 [ERROR][MPMain]: SQL:TVSeriesDatabase3.db3 cmd:sqlite3_prepare16:pvm=null err:ERROR detailed:table options already exists query:CREATE TABLE options (option_id integer primary key, property text, value text);
     

    fubrite

    New Member
    October 2, 2006
    3
    0
    Home Country
    United Kingdom United Kingdom
    Hi,

    I have a very quick question about this plugin... am I right in thinking that once the video is imported, MyTVSeries renames the file using the information that has been downloaded - or has this not been implemented yet?

    The reason I ask is I wanted to use this plugin to rename my files with season and episode numbers, which MediaPortal doesn't want to do for some reason, although it gets the episode title. I am in the UK and am using XMLTV to grab the xml data from the Radio Times site - I don't know whether that has anything to do with it or not....

    Any info gratefully received...

    Fubrite
     

    mcbelly

    MP Donator
  • Premium Supporter
  • June 29, 2006
    190
    5
    Home Country
    Germany Germany
    Quick answer : No, the files are not renamed (I wouldn´t want that, anyway)

    As for your other question - no clue. I always rename my files, using "bulk rename tool", works best for me.


    mcbelly
     

    duppsko

    Portal Member
    October 4, 2006
    30
    0
    Home Country
    Norway Norway
    When using MyTVSeries some shows doesn't show any picture.
    Is it possible to do this yourself?
     

    Users who are viewing this thread

    Top Bottom