Extending blip.tv (1 Viewer)

doskabouter

Development Group
  • Team MediaPortal
  • September 27, 2009
    4,584
    2,977
    Nuenen
    Home Country
    Netherlands Netherlands
    This may be a stupid question, but I'm going to ask it anyway,

    I'm triying to add an extra category to blip.tv, but I can't get it to work.
    I'm adding f.e. AVGN to the rsslinks of blip.tv, so I have a shortcut to the angry video game nerd videos
    Rss Name: AVGN
    Rss url:- blip.tv (beta)

    When I open that url in IE, it looks quite the same as the other rss-links from blip.tv, but when I select it (AVGN) in the OnlineVideos plugin, I get the "no videos found"
    also tried - blip.tv (beta) and - blip.tv (beta), but no videos either.

    What am I missing here?

    Fixed by adding
    Code:
                        else if (rssItem.MediaGroups.Count > 0)
                        {
                            foreach (RssItem.MediaGroup grp in rssItem.MediaGroups)
                            {
                                foreach (RssItem.MediaContent content in grp.MediaContents)
                                {
                                    if (isPossibleVideo(content.Url))
                                    {
                                        video.VideoUrl = content.Url;
                                        video.Length = content.Duration;
                                        break;
                                    }
                                }
                            }
                        }
    after line 99 in genericsiteutil.cs

    offbyone: will you do the honors of applying the patch?
     

    Users who are viewing this thread

    Top Bottom