FAQ  •  Register  •  Login

Yahoo Pipes / Mixed video feeds plugin

<<

mqojdn

Streaming enthusiast

Posts: 44

Joined: Thu Jan 03, 2013 6:39 pm

Post Thu Jan 10, 2013 7:59 am

Yahoo Pipes / Mixed video feeds plugin

Source type: Web Resource
Supported links: http://pipes.yahoo.com/pipes/pipe.run?_id=_______&_render=rss

Right now supports RSS/Atom video feeds + YouTube gdata feeds.
Loads required plugins per feed item. Right now only supports the YouTube plugin.
In general, would play any video feeds, not just from Yahoo Pipes.

Quite useless as it is, cause:
    - If already using Yahoo Pipes, one might as well rewire any videos to play with the default feed source.
    - Most plugins are developed as Web Resource, so wouldn't work with the plugin.

v2:
Gets the list of plugins from Serviio, however some plugins should be edited. Plugin names and classes should read the same, as below:
  Code:
    String getExtractorName() {
        return 'Hulu'
    }
  Code:
class Hulu extends FeedItemUrlExtractor ...

v3:
Audio feeds support.
Attachments
YahooPipes v3.groovy
(10.4 KiB) Downloaded 529 times
Last edited by mqojdn on Tue Jan 22, 2013 7:38 pm, edited 6 times in total.
<<

gonzo90017

Serviio newbie

Posts: 6

Joined: Fri Oct 26, 2012 6:56 pm

Post Mon Jan 14, 2013 1:46 am

Re: Yahoo Pipes / Mixed video feeds plugin

Thank you for the plugin. It's not as useless as you think. I have a ton of Youtube and Hulu RSS feeds that I run through Yahoo Pipes. The reason? It's easy to filter out the content you don't want from Youtube Users and Hulu Feeds. Also using Yahoo Pipes with Hulu and Youtube feeds is the only way I know of to get more then 25 results which is really important especially for shows with more then 25 episodes.

Stupid question but what exactly should I add to YahooPipes v1.groovy to add Hulu Support?
<<

mqojdn

Streaming enthusiast

Posts: 44

Joined: Thu Jan 03, 2013 6:39 pm

Post Mon Jan 14, 2013 7:33 pm

Re: Yahoo Pipes / Mixed video feeds plugin

gonzo90017 wrote:Stupid question but what exactly should I add to YahooPipes v1.groovy to add Hulu Support?

Change these lines in YahooPipes v1.groovy to read:
  Code:
    private void populatePluginList() {
        pluginList = ["YouTube", "Hulu"];
        getPluginList();
    }


Change these lines in Hulu.groovy to read:
  Code:
    String getExtractorName() {
        return 'Hulu'
    }

Without the (US only)

If that wouldn't work, post the feed.
<<

mqojdn

Streaming enthusiast

Posts: 44

Joined: Thu Jan 03, 2013 6:39 pm

Post Tue Jan 15, 2013 4:31 pm

Re: Yahoo Pipes / Mixed video feeds plugin

v2
<<

mqojdn

Streaming enthusiast

Posts: 44

Joined: Thu Jan 03, 2013 6:39 pm

Post Tue Jan 22, 2013 7:39 pm

Re: Yahoo Pipes / Mixed video feeds plugin

v3
<<

slurpx

Serviio newbie

Posts: 1

Joined: Wed Jan 01, 2014 2:06 am

Post Wed Jan 01, 2014 2:20 am

Re: Yahoo Pipes / Mixed video feeds plugin

Thanks for this plugin, that is just what I needed and not useless at all. Also it is very easy to modify any existing plugin to work with it. However it doesn't parse the publicDate correctly when your locale is not English so I modified the line

releaseDate = Date.parse("EEE, dd MMM yyyy HH:mm:ss Z", itemInfo.get("pubDate"));

to

DateFormat dateFormatterRssPubDate = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss Z", Locale.ENGLISH);
releaseDate = dateFormatterRssPubDate.parse(itemInfo.get("pubDate"));

Feel free to update your code if you like.

Thank you again and keep up the good work!

Return to Available plugins

Who is online

Users browsing this forum: No registered users and 22 guests

cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by ST Software for PTF.