Sha256: 8f4904cde6794a78040af0f1ab479c597aa8ee4a005b5ff51f26cce2b59d8f6b

Contents?: true

Size: 1.52 KB

Versions: 5

Compression:

Stored size: 1.52 KB

Contents

require 'video_chat_get/version'
Dir[File.expand_path('../site_list',__FILE__)<<'/*.rb'].each do |file| require file end

   """
    ・argument
    @@OPENREC_IDENTFIER:
    @@MILDOM_IDENTFIER:
    @@WHOWATCH_IDENTFIER:
    @@YOUTUBELIVE_IDENTFIER:
    @@TWITCASTING_IDENTFIER:

   ・method
    url_route():
    """

module VideoChatGet

  @@OPENREC_IDENTFIER="https://www.openrec.tv/live/"
  @@MILDOM_IDENTFIER="https://www.mildom.com/playback/"
  @@WHOWATCH_IDENTFIER="https://whowatch.tv/archives/"
  @@YOUTUBELIVE_IDENTFIER="https://www.youtube.com/watch?"
  @@TWITCASTING_IDENTFIER="https://twitcasting.tv/"

  def self.test
    "hello"
  end

  def self.url_route(url)

    if url.include?(@@OPENREC_IDENTFIER) then
        puts "identifier:openrec videourl:#{url}"
        obj=Openrec_analyze.new(url)
        obj.chat_scrape
    elsif url.include?(@@MILDOM_IDENTFIER) then
        puts "identifier:mildom videourl:#{url}"
        obj=Mildom_analyze.new(url)
        obj.chat_scrape
    elsif url.include?(@@WHOWATCH_IDENTFIER) then
        puts "identifier:whowatch videourl:#{url}"
        obj=Whowatch_analyze.new(url)
        obj.chat_scrape
    elsif url.include?(@@YOUTUBELIVE_IDENTFIER) then
        puts "identifier:youtube videourl:#{url}"
        obj=Youtubelive_analyze.new(url)
        obj.chat_scrape
    elsif url.include?(@@TWITCASTING_IDENTFIER) then
        puts "identifier:twitcasting videourl:#{url}"
        obj=Twitcasting_analyze.new(url)
        obj.chat_scrape
    else
        puts "urlerr"
    end

    "end"
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
video_chat_get-0.2.0 lib/video_chat_get.rb
video_chat_get-0.1.9 lib/video_chat_get.rb
video_chat_get-0.1.6 lib/video_chat_get.rb
video_chat_get-0.1.5 lib/video_chat_get.rb
video_chat_get-0.1.4 lib/video_chat_get.rb