Socket
Book a DemoInstallSign in
Socket

overdrive

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

overdrive

0.1.2
bundlerRubygems
Version published
Maintainers
1
Created
Source

Overdrive

Overdrive is a RSS frontend for the transmission bit torrent client. It has hooks to make downloading TV series much easier, and allows recipes with callbacks to make filtering show much easier.

Installation

Overdrive is a ruby gem that uses gemcutter. To install, simply do the following:

sudo gem install gemcutter
sudo gem tumble

then

sudo gem install overdrive

This should install the overdrive binary in your path.

Usage

To do anything useful, you need to setup a recipe. You can store the recipe (in Linux) at

/etc/overdrive.rb
/var/transmission/config/overdrive.rb
$HOME/.overdrive/overdrive.rb

and you can add paths via the -c argument:

overdrive -c /path/to/recipe.rb

A sample recipe might look like this:

add_feed "http://www.mytorrents.com/torrents.rss"
add_feed "http://www.myothertorrents.com/torrents.rss"

add_title "24"
add_title "30 Rock"
add_title "Alias"

filter do |item|
  parsed = parse_metadata(item)
  if parsed[:title] && parsed[:series] && parsed[:episode]
    title = parsed[:title].split(' ').map { |t| t[0..0].upcase + t[1..-1] }.join(' ')
  
    if titles.include?(title)
      target = "/videos/#{title}/Season #{parsed[:series].to_i.to_s}"
      download(item.url, :download_dir => target)
    end
  end
end

You can get a full list of command line arguments by running

overdrive -h

You can get a list of DSL commands on the wiki

http://wiki.github.com/madpilot/overdrive

FAQs

Package last updated on 21 Dec 2009

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.