Page 4 of 8 FirstFirst ... 23456 ... LastLast
Results 31 to 40 of 74

Thread: Want a perfect Boxee database ... I did it

  1. #31
    Join Date
    Nov 2008
    Posts
    159

    Default

    Everything works well except adding files that can't be found already by Boxee. DO we need to manually assign a BoxeeId to the files?

  2. #32
    Join Date
    Aug 2009
    Location
    New Jersey
    Posts
    83

    Default

    Quote Originally Posted by jpga13 View Post
    Everything works well except adding files that can't be found already by Boxee. DO we need to manually assign a BoxeeId to the files?
    You only need the BoxeeID for TV shows and for the setting the video as watched. Two things that could be wrong are that the path to your video is wrong or the volume/drive is not in the media_folders table.

    Other things to look for when adding are as follows:

    idFile = 1
    idFolder = 0
    iDropped = 0

    The 0's must be entered and not left blank.

    Also for movies make sure that iSeason and iEpisode are both set to -1.
    Boxee Beta 0.9.20.10708
    Macbook (Santa Rosa - 3,1)
    OS X 10.5.8
    4G Memory
    120GB HD
    2 External 1TB Drives

  3. #33
    Join Date
    Nov 2008
    Posts
    159

    Default

    Quote Originally Posted by vdubeau View Post
    You only need the BoxeeID for TV shows and for the setting the video as watched. Two things that could be wrong are that the path to your video is wrong or the volume/drive is not in the media_folders table.

    Other things to look for when adding are as follows:

    idFile = 1
    idFolder = 0
    iDropped = 0

    The 0's must be entered and not left blank.

    Also for movies make sure that iSeason and iEpisode are both set to -1.
    Thanks for the tips!

    The last issue is a Tv Series for my kid. I added a few episodes manually to the database using the SQL app but they still did not show. Then I went to the part of the database for Series and created a new series. The thumbnail for the Series showed up on Boxee but the actual shows are not connected to it. Is there any way to connect these? Any idea why this one Tv Series won't show up at all?

    I fixed all my tv shows and movies so they are now perfect and this is my last hurdle.

    Thanks for any help.

  4. #34
    Join Date
    Aug 2009
    Location
    New Jersey
    Posts
    83

    Default

    Quote Originally Posted by jpga13 View Post
    Thanks for the tips!

    The last issue is a Tv Series for my kid. I added a few episodes manually to the database using the SQL app but they still did not show. Then I went to the part of the database for Series and created a new series. The thumbnail for the Series showed up on Boxee but the actual shows are not connected to it. Is there any way to connect these? Any idea why this one Tv Series won't show up at all?

    I fixed all my tv shows and movies so they are now perfect and this is my last hurdle.

    Thanks for any help.
    Without seeing the db entries it's hard but I'll give you some things to check for.

    • Make sure that the seasons table is connected to the series table using the the idSeries field.
    • Make sure you have a BoxeeID that connects the shows in the video_files table to the series table.
    • In the video_files table, make sure you have the season (iSeason) and episode (iEpisode) specified.


    Hope this helps. If you have any more questions, feel free.
    Boxee Beta 0.9.20.10708
    Macbook (Santa Rosa - 3,1)
    OS X 10.5.8
    4G Memory
    120GB HD
    2 External 1TB Drives

  5. #35
    Join Date
    Nov 2008
    Posts
    159

    Default

    Quote Originally Posted by vdubeau View Post
    Without seeing the db entries it's hard but I'll give you some things to check for.

    • Make sure that the seasons table is connected to the series table using the the idSeries field.
    • Make sure you have a BoxeeID that connects the shows in the video_files table to the series table.
    • In the video_files table, make sure you have the season (iSeason) and episode (iEpisode) specified.


    Hope this helps. If you have any more questions, feel free.
    Do I make my own BoxeeID or can I find it somewhere?

  6. #36
    Join Date
    Aug 2009
    Location
    New Jersey
    Posts
    83

    Default

    Since I haven't programmed in C since the stone age , reading the Boxee source is tough. Boxee uses a 6 digit number but I'm not sure how it's generated.

    I would just create a string, perhaps something to do with the show title (ie., Home Improvement could be HOMIMP). If the Title is short like Cheers come up with something that will help you to avoid confusion.
    Boxee Beta 0.9.20.10708
    Macbook (Santa Rosa - 3,1)
    OS X 10.5.8
    4G Memory
    120GB HD
    2 External 1TB Drives

  7. #37
    Join Date
    Nov 2008
    Posts
    159

    Default

    Quote Originally Posted by vdubeau View Post
    Since I haven't programmed in C since the stone age , reading the Boxee source is tough. Boxee uses a 6 digit number but I'm not sure how it's generated.

    I would just create a string, perhaps something to do with the show title (ie., Home Improvement could be HOMIMP). If the Title is short like Cheers come up with something that will help you to avoid confusion.
    I'm a little closer but it's still not finding the actual tv shows inside the folder. Now instead of saying invalid data it says there is nothing where it is looking.

    Edit: I kept playing with it and it finally worked. I had to make a numerical BoxeeiD and that seemed to do it along with all the other tips you gave. Many thanks! I now have a perfect database!
    Last edited by jpga13; February 22nd, 2010 at 11:16 PM.

  8. #38
    Join Date
    Feb 2010
    Posts
    1

    Default

    Quote Originally Posted by lateforaa View Post
    • Movies/TV Shows with no thumbnails


    Sometimes IMDB or THETVDB don't have a thumbnail for the media. This is simple to solve. Open up Google and do an image search; poster MOVIE TITLE, so for example; poster Animal House. Click on the poster you want to use, then select the See Full Size Image link at the top. This will give you the URL to the image you want to use. Now we need to tell Boxee to use that image instead.

    Open the Boxee database with the SQLite Database Browser.
    Click on the Browse Database tab.
    From the Table dropdown select video_files.
    Now you will see a list of all your video files. This is where all of your duplicates are.
    Click on the magnifying glass and a new window opens.
    From the first drop down select "strPath" and on the second drop down select "contains".
    Now enter part of the name; i.e. Animal and click search.
    When you select the Animal house record it will take you to it.
    Close the search window and go over to the strCover column.
    Double click on it, delete what is entered, paste the URL and click Apply.
    Save your database and reopen Boxee, it will download the image you specificed.
    I can easily change or add thumbnail but thats only for a movie. However, what about tv show? the strCover gives me an image path for the preview while in that "play section", but I still don't know how to add cover for the front menu of the tv shows section (the one where all of various tv shows being list it). Can you help me with this? Thanks.

    Edit to add:
    Got it. For the tv shows turns out to be in the Browse Data>Table: series.
    Last edited by Chromagnum; February 25th, 2010 at 01:55 PM. Reason: solved

  9. #39

    Default

    Alright, this drove me crazy. SO I have ubuntu and I spent hours trying to compile the source code multiple times. After screwing up multiple times and going no where I noticed that you can install it simply through Synaptic.

    sudo apt-get install sqlbrowser

    Just wanted to make sure people don't suffer like I did. :P

  10. #40
    Join Date
    Mar 2009
    Location
    MN, USA
    Posts
    561

    Default

    @lateforaa

    I pulled a copy of my DB to my Windows machine from my ATV, edited it, deleted the existing one, copied the edited one back to the ATV, restarted the ATV, and logged into Boxee.

    None of the changes I made are showing. Specifically, I simply added coverart for about 20+ titles that it was missing or the existing link was broken. I also changed the Titile of one film that was properly identified, but the strTitle field was just incorrect.

    Is there something I am missing here? I even tried to run another pass at it with the Indexer, thinking that having it read the DB might make the changes active, but, that didn't work either. >.<

    Thoughts?
    Running Latest on:
    Acer Aspire Revo 3770 (Win7 SP1 Home Prem)/46" Sharp Aquos 1080p/ Sony 7.1 STR-DG800
    MacBook Pro 10.7 (Lion) Core2Duo 2.2G/4GB/17"WS/Nvidia8600M
    Linux Ubuntu 11.10 (Oneiric Ocelot) P4 3.4G/2GB/22"WS Gateway/Nvidia7600GT
    i7 920/6GB/23"WS LED Samsung/Win7 Pro 64/XFX Radeon 5770
    Streaming (SMB) from:
    unRAID NAS Server Intel i3/4GB/Intel PRO/1000 PM 11TB Disk (8TB Data/1TB Cache/2TB Parity)

Similar Threads

  1. Zotac HD-ND22 - Perfect for Boxee?
    By Prospero424 in forum general boxee help
    Replies: 24
    Last Post: October 21st, 2010, 08:43 AM
  2. Replies: 4
    Last Post: August 30th, 2010, 05:37 PM
  3. Replies: 3
    Last Post: August 20th, 2009, 02:34 AM
  4. Perfect Boxee Media Center
    By n8dude in forum boxee for linux help
    Replies: 0
    Last Post: December 18th, 2008, 07:29 AM
  5. Perfect remote found for Boxee
    By perrin21 in forum boxee for mac help
    Replies: 9
    Last Post: October 9th, 2008, 11:49 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
  •