Stop the Madness! Fix your naming issues first.

  Thread Rating:
  • 2 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
Makistos Offline
Junior Member
Posts: 27
Joined: Dec 2010
Reputation: 0
Post: #21
This is as good a place as any to ask this..

My problem isn't actually correct naming, but how do I find out which movies failed with the scraper? I've been going through my DVD's and have ripped (to .iso) quite a lot of them already. Checking each one individually doesn't sound like a fun thing to do, so is there an easier way? I had a look at the log, but the format of missing movies (there were some obvious errors) wasn't exactly easy to find with a script either.
find quote
crooksy Offline
Senior Member
Posts: 103
Joined: Dec 2010
Reputation: 0
Post: #22
Makistos Wrote:This is as good a place as any to ask this..

My problem isn't actually correct naming, but how do I find out which movies failed with the scraper? I've been going through my DVD's and have ripped (to .iso) quite a lot of them already. Checking each one individually doesn't sound like a fun thing to do, so is there an easier way? I had a look at the log, but the format of missing movies (there were some obvious errors) wasn't exactly easy to find with a script either.

I had a similar problem and didn't find an easy way. I had a sixth sense of those that didn't or wouldn't scrap and just checked them manually.

You could print off your list of movies in alphabetical order then tick them off as you go along, laborious I know.
find quote
Makistos Offline
Junior Member
Posts: 27
Joined: Dec 2010
Reputation: 0
Post: #23
I've been thinking about this in case there isn't any easy way. The easiest way I have thought of is printing the list from the db somehow to a text file and doing likewise to my movie directory and then comparing them side-by-side with a graphical comparison tool.

I'll just have to dig out how to connect to the db with Python and the schema first.
find quote
poofyhairguy Offline
Resident Hardware Guru
Posts: 2,954
Joined: Apr 2010
Reputation: 49
Post: #24
gobbledigook Wrote:my only word of warning is that this can take HOURS!!!

No kidding. I recently calculated that between 2008 and 2009 I spent over 60 hours renaming and sorting media. Thank God for sickbeard.

Quote:You could print off your list of movies in alphabetical order then tick them off as you go along, laborious I know.

That is what I do.

Mini/Micro ITX Frontend (with SSD) + Mediaserver/NAS + Logitech Harmony + LCD/LED/Plasma TV + Nice AV Receiver + XBMC + USENET + sabnzbd + sickbeard +couchpotato

My Setup--HTPC Building Guide- Start Here--Advice on Hard Drives and SSDs--Mediaserver Guide--Harmony Guide
find quote
Tight_wad Offline
Fan
Posts: 335
Joined: Oct 2010
Reputation: 4
Post: #25
Just go in to file view mode, left arrow to the side menu, and pick stack. Then I page down through my movies and anything without a thumb hasn't been scraped into to my Library yet. That's how I have done it.
find quote
Hudson_Hawk04 Online
Posting Freak
Posts: 1,305
Joined: Oct 2006
Reputation: 3
Post: #26
getting the naming conventions right can take some time, but the pay off is huge. I have been using ember media manager for my movies and self created tv shows...gets the job done and stream lines the process, tell it where to look and your naming conventions and your set...

I feel sorry for people who don't drink. When they wake up in the morning, that's as good as they're going to feel all day.
Frank Sinatra
If I managed to help you in any way, please add to my reputation
.
find quote
Parhelion Offline
Junior Member
Posts: 10
Joined: Nov 2010
Reputation: 0
Post: #27
Tight_wad Wrote:Just go in to file view mode, left arrow to the side menu, and pick stack. Then I page down through my movies and anything without a thumb hasn't been scraped into to my Library yet. That's how I have done it.

This is exactly how I do it. I go into File mode and scroll through the list. Anything where the thumbnail is the default XBMC video icon means that it has failed to be scraped.

Usually happens with my foreign language films.
find quote
Makistos Offline
Junior Member
Posts: 27
Joined: Dec 2010
Reputation: 0
Post: #28
Actually this might work. In pseudo-python etc, since I don't have xbmc available from this comp & can't be bothered to check the syntax for pysqlite right now. This only works for local files, though, I think (and maybe directories mounted with samba or nfs?).

Code:
#!/usr/bin/python
# -*- coding: utf-8 -*-

import os
import pprint
import re

files = []
library_files = select strFilename from file
paths = select strPath from path where strContent = 'tvshow' or strContent = 'movie'

def media_filter(file):
  m = re.search('.+\.(iso|mk4|mkv)$', file)
  if m:
    return True
  else:
    return False

file_dict = dict(zip(library_files, library_files))

unknown_files = filter(lambda x: x not in file_dict, filter(media_filter, sum(map(os.listdir, paths), [])))

print(unknown_files)
find quote
Raqueem Offline
Junior Member
Posts: 32
Joined: Oct 2008
Reputation: 0
Post: #29
I finally found out what caused some problems in certain directories

eg: lost => 6 seasons

I had to rename (file renamer in batch) to S01E01 - S01E02 - ... and now all is well. (instead of the Lost - Season1 - Episode 2)

Also for the different manga anime's etc..
find quote
Skram0 Offline
Member
Posts: 94
Joined: Oct 2010
Reputation: 0
Post: #30
I use the Fanart view mode in Library view for my movies. Is there a way to have a sort of folder view for multiple movie series?

Like an example, all the Halloween movies. It'd be neat to just see a Halloween folder in the list, and when clicked on expands then shows all the movies in the series. As it is now I have to scroll through all the Halloween movies just to get to the next movies, like the 'I' category.

Anyway, could this be done through naming of files? When I try to create subdirectories they all seem to just get added into the main list. I like the display of the Fanart in Library mode, though.
find quote
Post Reply