0.02
Low commit activity in last 3 years
No release in over a year
Get the thumbnails from Youtube, Vimeo and İzlesene videos
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.7
~> 5.8
~> 10.0

Runtime

~> 2.1
~> 1.8
 Project Readme

Youtube, Vimeo and İzlesene thumbnails

Gem Version

Get the thumbnails from Youtube, Vimeo and İzlesene videos for Ruby.

And it may support more video hoster with your contributions.

Installation

Add it to your Gemfile:

gem 'video_thumb'

and run on terminal:

$ bundle

or install the gem on terminal.

$ gem install video_thumb

Parameters

url

Youtube or Vimeo video link

http://www.youtube.com/watch?v=iEPTlhBmwRg

or

http://vimeo.com/101419884

or

http://www.izlesene.com/video/feder-goodbye-feat-lyse/7886121

size (not compatible with izlesene)

default = large

small (Youtube: 120x90, Vimeo: 100x75)

medium (Youtube: 320x180, Vimeo: 200x150)

large (Youtube: 640x480, Vimeo: 640xauto)

max (Youtube: original, Vimeo: 640xauto)

Usage

require 'video_thumb' # if you're not use Rails 4
VideoThumb::get("http://vimeo.com/101419884")
# returns large thumbnail from Vimeo video
# http://i.vimeocdn.com/video/483188148_640.jpg

VideoThumb::get("http://www.youtube.com/watch?v=iEPTlhBmwRg", "medium")
# returns medium thumbnail from Youtube video
# https://img.youtube.com/vi/iEPTlhBmwRg/mqdefault.jpg

VideoThumb::get("http://www.izlesene.com/video/feder-goodbye-feat-lyse/7886121")
# returns large thumbnail from Vimeo video
# http://i2.imgiz.com/rshots/7886/feder-goodbye-feat-lyse_7886121-8807_1200x630.jpg

Dependencies

  • open-uri
  • json
  • nokogiri

Contributing

  1. Fork it ( https://github.com/tgezginis/video_thumb/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Thanks deegz - akosipc - adzierzanowski