No commit activity in last 3 years
No release in over 3 years
Gem to easily extract information out of a media feed
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme
The media_feed library parses a media rss stream and stores the information in its attributes.

Examples:
Fetch a whole feed
    media_feed = MediaFeed::Feed.new('http://www.nasa.gov/rss/NASAcast_vodcast.rss ')
    media_feed.fetch

Fetch starting at a certain date (date must be in RFC2822 format - use Time.rfc2822)
    media_feed = MediaFeed::Feed.new('http://www.nasa.gov/rss/NASAcast_vodcast.rss ')
    media_feed.fetch_since("Wed, 10 Sep 2008 10:29:18 +0200")

Use the retrieved information
    thumbnail = media_feed.thumbnail
    media_feed.items.each do |item|
      ...
    end