Page 1 of 2 12 LastLast
Results 1 to 10 of 14

Thread: DVD .iso TV Show Naming Hack

Hybrid View

  1. #1
    Join Date
    Feb 2010
    Posts
    2

    Lightbulb DVD .iso TV Show Naming Hack

    Problem: You just ripped all your TV show DVDs to .isos files, which have more than one episode per file, but Boxee doesn't know how to handle them because it expects a single episode per file.

    Solution: Symbolic links. Symbolic links only take up a few bytes on your file system, but to applications they look like the whole file they point to. Just name the .iso file after the first episode on the DVD and create links pointing to it for every other episode.

    Say you have Star.Wars.Clone.Wars.(2003).S01E01.iso, but that DVD image contains 20 episodes: 10 episodes for season 1 and 10 episodes for season 2. You would create 9 links for season 1 called Star.Wars.Clone.Wars.(2003).S01E02.iso through Star.Wars.Clone.Wars.(2003).S01E10.iso and 10 links for season 2 called Star.Wars.Clone.Wars.(2003).S02E01.iso through Star.Wars.Clone.Wars.(2003).S02E10.iso.

    This is what it should look like when you are done:

    Code:
    $ ls -lh
    total 8.8G
    -rwx------+ 1 ruddog ruddog 4.4G 2009-10-02 00:44 Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:55 Star.Wars.Clone.Wars.(2003).S01E02.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:55 Star.Wars.Clone.Wars.(2003).S01E03.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:55 Star.Wars.Clone.Wars.(2003).S01E04.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:55 Star.Wars.Clone.Wars.(2003).S01E05.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:55 Star.Wars.Clone.Wars.(2003).S01E06.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:55 Star.Wars.Clone.Wars.(2003).S01E07.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:55 Star.Wars.Clone.Wars.(2003).S01E08.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:55 Star.Wars.Clone.Wars.(2003).S01E09.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:57 Star.Wars.Clone.Wars.(2003).S01E10.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:55 Star.Wars.Clone.Wars.(2003).S02E01.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:55 Star.Wars.Clone.Wars.(2003).S02E02.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:55 Star.Wars.Clone.Wars.(2003).S02E03.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:55 Star.Wars.Clone.Wars.(2003).S02E04.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:55 Star.Wars.Clone.Wars.(2003).S02E05.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:55 Star.Wars.Clone.Wars.(2003).S02E06.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:55 Star.Wars.Clone.Wars.(2003).S02E07.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:55 Star.Wars.Clone.Wars.(2003).S02E08.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:55 Star.Wars.Clone.Wars.(2003).S02E09.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:57 Star.Wars.Clone.Wars.(2003).S02E10.iso -> Star.Wars.Clone.Wars.(2003).S01E01.iso
    -rwx------+ 1 ruddog ruddog 4.4G 2009-10-01 23:54 Star.Wars.Clone.Wars.(2003).S03E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:56 Star.Wars.Clone.Wars.(2003).S03E02.iso -> Star.Wars.Clone.Wars.(2003).S03E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:56 Star.Wars.Clone.Wars.(2003).S03E03.iso -> Star.Wars.Clone.Wars.(2003).S03E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:56 Star.Wars.Clone.Wars.(2003).S03E04.iso -> Star.Wars.Clone.Wars.(2003).S03E01.iso
    lrwxrwxrwx  1 ruddog ruddog   38 2010-02-15 22:56 Star.Wars.Clone.Wars.(2003).S03E05.iso -> Star.Wars.Clone.Wars.(2003).S03E01.iso
    How to create a link varies depending on your OS:

    Linux or OS X: Use the ln command with the -s option in a terminal. The syntax is:

    ln -s "real_file_name" "link_name"

    Include single or double quotes around the file names.

    To save time, you can use a for loop, if you know how they work:

    for ((i=2;i<10;i++)); do ln -s Star.Wars.Clone.Wars.\(2003\).S01E01.iso Star.Wars.Clone.Wars.\(2003\).S01E0$i.iso; done

    Windows: Symbolic links were added in Vista, so you need it or 7. In a cmd window Run as Administrator:

    mklink "link_name" "real_file_name"

    Code:
    C:\Users\ruddog\Desktop>mklink "Star.Wars.Clone.Wars.(2003).S01E02.iso" "Star.Wars.Clone.Wars.(2003).S01E01.iso"
    symbolic link created for Star.Wars.Clone.Wars.(2003).S01E02.iso <<===>> Star.Wars.Clone.Wars.(2003).S01E01.iso
    
    C:\Users\ruddog\Desktop>dir
    
     Directory of C:\Users\ruddog\Desktop
    
    02/16/2010  15:24    <DIR>          .
    02/16/2010  15:24    <DIR>          ..
    02/16/2010  14:49        47,229,170 boxee-0.9.20.10408.exe
    02/16/2010  14:55        27,969,346 Star.Wars.Clone.Wars.(2003).S01E01.iso
    02/16/2010  15:24    <SYMLINK> Star.Wars.Clone.Wars.(2003).S01E02.iso [Star.Wars.Clone.Wars.(2003).S01E01.iso]
    I hope this helps anyone looking to have their TV show DVDs show up under TV Shows.
    Last edited by ruddog; February 16th, 2010 at 09:53 PM. Reason: Updated for Windows and OSX.

  2. #2
    Join Date
    Jun 2009
    Location
    Cleveland Heights, OH
    Posts
    1,169

    Default

    Post added to the FAQ thread

    http://forum.boxee.tv/showthread.php?t=14946

  3. #3
    Join Date
    Feb 2010
    Posts
    2

    Default

    I just confirmed this works in Vista and OS X, and updated my original post.

    Quote Originally Posted by NomadDNA View Post
    Post added to the FAQ thread
    NomadDNA, thanks for posting this on the FAQ. However, a better title might be "How can I get Boxee to recognize a single file as multiple files?"

  4. #4
    Join Date
    May 2009
    Posts
    5

    Default

    Does this actually point Boxee to the episode, or do you still have to navigate the DVD menu and choose the episode when the episode is selected in the Boxee UI?

  5. #5
    Join Date
    Jul 2009
    Posts
    104

    Default

    Quote Originally Posted by nastri83 View Post
    Does this actually point Boxee to the episode, or do you still have to navigate the DVD menu and choose the episode when the episode is selected in the Boxee UI?

    It'll point to the DVD itself, so you would have to navigate the DVD menu. This just makes the episodes show up under TV Shows rather than having to hunt for the DVDs in the File Manager

  6. #6

    Default

    I just wanted to say, THANKS! Until Boxee supports TV ISO files this will work to get them to show up as show/EP.

    Also, I did not see this issue brought up in JIRA so I added an entry here: http://jira.boxee.tv/browse/BOXEE-4821
    Last edited by ddrager; May 17th, 2010 at 10:16 AM.

  7. #7
    Join Date
    Aug 2009
    Posts
    2

    Default My opinion...

    Why not rip straight to MKVs ?
    there is a great application (completely free) called MakeMKV
    can find it here http://www.makemkv.com/download/
    i'm using it all the time, it can rip any DVD to mkv and also can rip separated episodes of TV show DVDs.

    try it, i hope you will find it useful, also works great with my Boxee...

  8. #8

    Default

    For me, I like to have the full DVD experience, so this is why I do .ISO versus mkv or avi files.

    I also find it easier to just put in the DVD, let the ripping process start and then walk away.

    I do understand that the individual files will not take up that much space compared, but I a little lazy.

  9. #9
    Join Date
    Jul 2010
    Posts
    4

    Default

    Quote Originally Posted by amibd View Post
    Why not rip straight to MKVs ?
    there is a great application (completely free) called MakeMKV
    can find it here http://www.makemkv.com/download/
    i'm using it all the time, it can rip any DVD to mkv and also can rip separated episodes of TV show DVDs.

    try it, i hope you will find it useful, also works great with my Boxee...
    Am I missing something? I am using MakeMKV to rip my movies / tv shows. It works great, except with TV Series that have multiple episodes as ONE CHAPTER. For example, Friends the Complete Series.

    With that I end up with one 5gig MKV containing 5 or 6 episodes. Since I don't have the menu data I can't do symbolic links. For the life of me I can't find something to split the MKV apart by chapter (well, Handbrake can, but I don't want to also be converting it).

  10. #10
    Join Date
    Mar 2011
    Posts
    7

    Default Help with this

    I can't seem to get this procedure to work. I'm using OSX to create the symbolic links and then put them on my HD connected to my BB. The BB doesn't show anything after refresh. Also tried to rename the link to.avi and still no result.

    Suggestions?

    The HD is NTFS. Do I need to create the links in Win7 for it to work?

    Is there any way to do it in XP?

Similar Threads

  1. Naming DVD Extras
    By Scottes in forum Boxee Box help
    Replies: 7
    Last Post: February 13th, 2012, 05:42 PM
  2. Naming of TV show DVD ISO's
    By Pigpen in forum general boxee help
    Replies: 3
    Last Post: February 28th, 2011, 06:39 PM
  3. Blu-ray and DVD folders naming
    By phyre3 in forum general boxee help
    Replies: 1
    Last Post: February 12th, 2011, 09:26 PM
  4. ISO Naming Format?
    By gamerscircle in forum boxee for windows help
    Replies: 1
    Last Post: June 26th, 2010, 02:19 PM
  5. TV Show Naming Multi-Episode DVD iso's
    By mesh in forum general boxee help
    Replies: 3
    Last Post: May 17th, 2010, 12:50 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •