Home
Blogs
Forums
Files


Welcome to The Green Button          Sign in | Join | Help

video library app for viewing videos/movies and tv episodes with metadata

Last post 4 hours, 45 minutes ago by JackLuminous. 1239 replies.
Page 72 of 83 (1,240 items)   « First ... < Previous 70 71 72 73 74 Next > ... Last »
Sort Posts: Previous Next
  •  11-21-2008, 7:52 AM 311312 in reply to 311235

    Re: video library app for viewing videos/movies and tv episodes with metadata

    Anyone have a prior version of this app? I'd like to see if video_ts works with a previous version.

    Brian Zellinger



  •  11-21-2008, 8:11 AM 311321 in reply to 311312

    Re: video library app for viewing videos/movies and tv episodes with metadata

    Hi,

    I have versions 1.3 and 1.4. PM me your email address and I'll send them over to you. I dont have any where to upload to. I'm about for another hour tonight.

    Ian

     

  •  11-21-2008, 10:52 AM 311362 in reply to 311321

    Re: video library app for viewing videos/movies and tv episodes with metadata

    I installed 1.4 and video_ts folders are working.

    Brian Zellinger



  •  11-21-2008, 11:09 AM 311370 in reply to 311362

    Re: video library app for viewing videos/movies and tv episodes with metadata

    Hey, i'm slightly confused. I thought v1.24 was the latest?

    I'm still having problems with v1.24 so v1.4 or newer would be handy!!

  •  11-21-2008, 11:20 AM 311372 in reply to 311362

    Re: video library app for viewing videos/movies and tv episodes with metadata

    bzellinger:
    I installed 1.4 and video_ts folders are working.

     

    I was doing the following:

    D:\Movie Name\VIDEO_TS

    D:\Movie Name\Movie Name.avi

    And the addin was crashing. What am I doing wrong?


    Google Calendar Addin

    http://code.google.com/p/mcgooglecalendarbeta/

    Song Lyrics Addin

    http://code.google.com/p/mclyrics/
  •  11-21-2008, 1:56 PM 311405 in reply to 311372

    Re: video library app for viewing videos/movies and tv episodes with metadata

    What's "1.4". I don't remember any 1.4 version...maybe a 1.04 way waaay back.
  •  11-21-2008, 9:46 PM 311466 in reply to 311405

    Re: video library app for viewing videos/movies and tv episodes with metadata

    JackLuminous:
    What's "1.4". I don't remember any 1.4 version...maybe a 1.04 way waaay back.

    Don't know. Just going by what Ian sent me. I believe it has a July date if I recall correctly. Or maybe Ian is from the future?


    Brian Zellinger



  •  11-21-2008, 9:48 PM 311467 in reply to 311466

    Re: video library app for viewing videos/movies and tv episodes with metadata

    Ian has a copy of Windows 10 - they finally added DirecTV support!
    Brian Zellinger



  •  11-22-2008, 8:28 AM 311521 in reply to 311467

    Re: video library app for viewing videos/movies and tv episodes with metadata

    Yeah must have downloaded that on one of my trips in the trusty old time machine. I won't comment on Windows 10 - don't won't to disappoint people Wink [;)]

    The newest version at the moment I believe is 1.24 - maybe a change in version control ?

    Jack, in the changes doc that came with the builds are :

    VideoLibrary 1.4

    Additions
    1. Force an exact search for series by setting <ID> tag and setting NeedsUserSelection tag = False
    2. Force an exact search for movies by setting <ID> tag and setting NeedsUserSelection tag = False

    Fixes
    1. Fixed bug where series metadata is not saved to disk if actors is null (from thetvdb.com)

    and

    Version 1.3 07/08/2008 10:27 EDT

    -Additional checking for problem where it crashes on first-run if you have no tuners

    Sorry if i caused confusion but just going by the zipname and change logs

    Ian

  •  11-22-2008, 8:33 AM 311523 in reply to 311521

    Re: video library app for viewing videos/movies and tv episodes with metadata

    One thing I forgot to mention is that in "1.4" the thumbnails are the correct ratio whereas the latest version is 4:3. Unless it's like that by design.

    Brian Zellinger



  •  11-22-2008, 10:14 AM 311539 in reply to 311521

    Re: video library app for viewing videos/movies and tv episodes with metadata

    oops...I stand corrected. You're right..looks like I was just incrementing the numbers 1.1, 1.2, 1.3, 1.4....1.24. Wow that's a lot of builds..hadn't realized that....

    Ok, so Brian, did you say that v1.23 worked for you but v.124 didn't?

    Ian if you can PM me or upload 1.4 I'll compare the two...alot has changed since then but I don't remember changing naything involved in thumbnails. Actually, the only thing different is that it downloaded thumbnails had priority over pulling them from the files. Something happened on my PC or in a codec pack or in a windows update that broke image thumbnail extractionfor me. I get black thumbnails for all video except MS's. Anyone else having the same issue?

    Ok, so I jsut tested dvds and movie folders and they worked.

    1. In my C:\users\public\videos folder i created a folder called Harry Potter\

    2.I created a sub folder C:\users\public\videos\Harry Potter\video_ts

    3. I coped 2 arbitrary vides to C:\users\public\videos\Harry Potter (not into the video_ts)

    4. I was able to download metadata but more importantly, I was able to play them as a single playlist. I verified that playing transitioned to the next video file 'part' in the playlist

    So that's movie folders.

    Now, for dvds, I am just going to post the relevant code I am doing with the hope that it will help shine some light on this. I remember changing/cleaning up something in GetDVDMedia() but since I don't use any source control at home...

    anyhoo, here are the relevant functions

    public static string GetDVDMedia(string folder)

    {

    // Check arguments

    if (string.IsNullOrEmpty(folder))

    throw new ArgumentNullException("folder");

    string dvdMedia = Path.Combine(folder, "VIDEO_TS");

    dvdMedia = "dvd://" + dvdMedia.Replace(@"\", "/");

    return dvdMedia;

    }

    ...

    public static bool IsDVD(string folder)

    {

    if (string.IsNullOrEmpty(folder))

    return false;

    bool folderIsDVD = (File.Exists(Path.Combine(folder, @"VIDEO_TS\VIDEO_TS.IFO")));

    if (!folderIsDVD)

    {

    folderIsDVD = File.Exists(Path.Combine(folder, "VIDEO_TS.IFO"));

    }

    if (!folderIsDVD)

    {

    folderIsDVD = File.Exists(Path.Combine(folder, @"\VTS_01_1.VOB"));

    }

    return folderIsDVD;

    }

     

    ....

    private void PlayMediaInternal(GalleryVideo video)

    {

    try

    {

    // If we are in an Extender and this is not an Extender-friendly

    // media type then show a message

    if (LibraryApplication.IsExtenderSession() && (!LibraryApplication.IsExtenderFriendlyVideo(video.Metadata.Content)))

    {

    LibraryApplication.ShowDialog(string.Format("Can't play {0} files on extenders yet", video.Metadata.Extension), "Not Supported", DialogButtons.Ok, 0, true);

    }

    else

    {

    // HACK:

    // Reset our playstate

    _LastPlayState = PlayState.Undefined;

    // Save the current video so we can save its position when

    // playing is paused or stopped

    _CurrentVideo = video;

     

    // Use a playlist wrapper to override the title displayed

    // in the Now Playing feature of Media Center

    string mediaToPlay = CreatePlaylistWrapper(video.Metadata);

    // Start playing media

    MediaType mediaType;

    if (video.Metadata.MediaType == VideoMediaTypes.DVD)

    {

    mediaType = MediaType.Dvd;

    }

    else

    {

    mediaType = MediaType.Video;

    }

    PlayMedia(mediaType, mediaToPlay);

    // NOTE!:

    // TV Pack 2008 Bug

    // Transport API is broken. Some times the transport is not available

    // after playing a video

    //

    if (Transport != null)

    {

    // If there was a previously saved position then move to it

    // NOTE:

    // For some reason, if you alter the position of a *.dvr-ms file afer you

    // start playing it, you run into problems with the video skipping back/forward.

    if (_CurrentVideo.Metadata.Position > 0)

    {

    // The last playing position was saved in Milliseconds

    Transport.Position = new TimeSpan(0, 0, 0, 0, _CurrentVideo.Metadata.Position);

    }

    // Hook up transport handler to watch for Pause, Play, Stop, etc.

    Transport.PropertyChanged += new PropertyChangedEventHandler(HandleTransportPropertyChanged);

    }

    }

    }

    catch (Exception ex)

    {

    WriteLogEntry(ex);

    }

    }

    public static void PlayMedia(MediaType mediatype, object media)

    {

    // addtoqueue is only valid for audio files

    AddInHost.Current.MediaCenterEnvironment.PlayMedia(mediatype, media, false);

    AddInHost.Current.MediaCenterEnvironment.MediaExperience.GoToFullScreen();

    }

    ...

     

    protected void SetMediaType()

    {

    _ContentToPlay = Content;

    if (VideoUtilities.IsDVD(Content))

    {

    _ContentToPlay = VideoUtilities.GetDVDMedia(Content);

    _MediaType = VideoMediaTypes.DVD;

    }

    else

    if (VideoUtilities.IsMovieFolder(Content))

    {

    //TODO: Get all videos in the folder and

    // add them to the list of content

    _MediaType = VideoMediaTypes.MovieFolder;

    }

    else

    if (VideoUtilities.IsRecordedTV(Content))

    {

    _MediaType = VideoMediaTypes.RecordedTV;

    }

    else

    if (VideoUtilities.IsStream(Content))

    {

    _MediaType = VideoMediaTypes.Stream;

    }

    else

    _MediaType = VideoMediaTypes.Video;

    }

  •  11-23-2008, 6:20 AM 311665 in reply to 311539

    Re: video library app for viewing videos/movies and tv episodes with metadata

    Dont know if this will help, but the video_ts folder works for me only when I have 1 watch folder set in the config file. 

    ie.  D:\TVShows

    If I was to change the watched folder list to ...

    D:\TVShows, D:\Harry Potter

    ... the addin crashes with a null reference exception.  Also, when I do get the video_ts folder to work the thumbnail shows up with the meta data but on the video details page there is no cover art.  Should that be downloaded along with the other meta data?


    Google Calendar Addin

    http://code.google.com/p/mcgooglecalendarbeta/

    Song Lyrics Addin

    http://code.google.com/p/mclyrics/
  •  11-23-2008, 8:36 AM 311681 in reply to 311665

    Re: video library app for viewing videos/movies and tv episodes with metadata

    I only have one watched folder. I can confirm that the latest update won't play DVD's on 2 of my computers.

    No TV Pack
    ffdshow
    haali

    Brian Zellinger



  •  11-23-2008, 9:44 AM 311689 in reply to 311665

    Re: video library app for viewing videos/movies and tv episodes with metadata

    Hmm.. I tried d:\movies and it didn't see any of the files in that folder. If I do D:\movies\othercrap then it sees the videos in \othercrap. Up to this point I've always used network shares. I had never tried a single level rooted folder before ..ie. with a D:\ or F:\. I'll do some more debugging later this evening.

    mjp14:

    Dont know if this will help, but the video_ts folder works for me only when I have 1 watch folder set in the config file. 

    ie.  D:\TVShows

    If I was to change the watched folder list to ...

    D:\TVShows, D:\Harry Potter

    ... the addin crashes with a null reference exception.  Also, when I do get the video_ts folder to work the thumbnail shows up with the meta data but on the video details page there is no cover art.  Should that be downloaded along with the other meta data?

  •  11-23-2008, 12:19 PM 311721 in reply to 311689

    Re: video library app for viewing videos/movies and tv episodes with metadata

    Sorry to change the subject.

    I have been using this great tool for a while for TV but the only thing that stops me from using it for DVD's is that I need some kind of watched filter. As my library is large I like to be able to just see the movies that I haven't watched. Actually even for TV it would be nice to know which episodes I haven't watched as yet.
    Is this possible?

    NAC
Page 72 of 83 (1,240 items)   « First ... < Previous 70 71 72 73 74 Next > ... Last »
View as RSS news feed in XML
About TGB | Advertise | Link To Us | Donate | Terms Of Use | Privacy Policy
© 2003-2007 The Green Button, Inc. - All Rights Reserved