Sha256: 8f36915c542e3bcb7b71519e929b7bf4d14918bb1f55893b40f8b484b496f90c
Contents?: true
Size: 1.28 KB
Versions: 5
Compression:
Stored size: 1.28 KB
Contents
class VideoInfo module Providers class Vimeo < Provider def self.usable?(url) url =~ /vimeo\.com/ end def provider 'Vimeo' end %w[title description thumbnail_small thumbnail_medium thumbnail_large].each do |method| define_method(method) { video[method] } end %w[duration width height].each do |method| define_method(method) { video[method].to_i } end def keywords video['tags'] end def embed_url "player.vimeo.com/video/#{video_id}" end def date Time.parse(video['upload_date'], Time.now.utc).utc end def view_count video['stats_number_of_plays'].to_i end def video data && data.first end private def _url_regex /.*\.com\/(?:(?:groups\/[^\/]+\/videos\/)|(?:video\/))?([0-9]+).*$/i end def _api_base "vimeo.com" end def _api_path "/api/v2/video/#{video_id}.json" end def _api_url "http://#{_api_base}#{_api_path}" end def _default_iframe_attributes {} end def _default_url_attributes { title: 0, byline: 0, portrait: 0, autoplay: 0 } end end end end
Version data entries
5 entries across 5 versions & 1 rubygems