diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-03-24 22:48:04 +0100 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-03-24 22:49:43 +0100 |
commit | 78ccfb89403dc2fd2c06d4bbaca2129e2ba4c968 (patch) | |
tree | 0fbadd0cbdcf259c41df203d9e396d3c8bd1e0ba /data/rbot/plugins/youtube.rb | |
parent | a62bd20f3f4bb57dfffe4db425ddd6b50a4c6787 (diff) |
youtube plugin: option to display alternative formats in video info
Diffstat (limited to 'data/rbot/plugins/youtube.rb')
-rw-r--r-- | data/rbot/plugins/youtube.rb | 31 |
1 files changed, 27 insertions, 4 deletions
diff --git a/data/rbot/plugins/youtube.rb b/data/rbot/plugins/youtube.rb index 1faa7c35..947156bc 100644 --- a/data/rbot/plugins/youtube.rb +++ b/data/rbot/plugins/youtube.rb @@ -20,6 +20,9 @@ class YouTubePlugin < Plugin Config.register Config::IntegerValue.new('youtube.descs', :default => 3, :desc => "When set to n > 0, the bot will return the description of the first n videos found") + Config.register Config::BooleanValue.new('youtube.formats', + :default => true, + :desc => "Should the bot display alternative URLs (swf, rstp) for YouTube videos?") def youtube_filter(s) loc = Utils.check_location(s, /youtube\.com/) @@ -85,7 +88,7 @@ class YouTubePlugin < Plugin type = c.elements["@type"].value rescue nil medium = c.elements["@medium"].value rescue nil expression = c.elements["@expression"].value rescue nil - duration = c.elements["@duration"].value rescue nil + seconds = c.elements["@duration"].value.to_i rescue nil fmt = case num_fmt = (c.elements["@yt:format"].value rescue nil) when "1" "h263+amr" @@ -101,10 +104,23 @@ class YouTubePlugin < Plugin vid[:formats] << { :url => url, :type => type, :medium => medium, :expression => expression, - :duration => duration, + :seconds => seconds, :numeric_format => num_fmt, :format => fmt }.delete_if { |k, v| v.nil? } + if seconds + mins, secs = seconds.divmod 60 + hours, mins = mins.divmod 60 + if hours > 0 + vid[:formats].last[:duration] = "%s:%s:%s" % [hours, mins, secs] + elsif mins > 0 + vid[:formats].last[:duration] = "%s'%s\"" % [mins, secs] + else + vid[:formats].last[:duration] = "%ss" % [secs] + end + else + vid[:formats].last[:duration] = _("unknown duration") + end end } debug vid @@ -179,8 +195,15 @@ class YouTubePlugin < Plugin vid = @bot.filter(:"youtube.video", :url => movie, :youtube_video_id => id) if vid - m.reply(_("%{bold}%{title}%{bold} [%{cat}] %{rating} @ %{url} by %{author} (%{duration}). %{views} views, faved %{faves} times. %{desc}") % - {:bold => Bold}.merge(vid)) + str = _("%{bold}%{title}%{bold} [%{cat}] %{rating} @ %{url} by %{author} (%{duration}). %{views} views, faved %{faves} times. %{desc}") % + {:bold => Bold}.merge(vid) + if @bot.config['youtube.formats'] and not vid[:formats].empty? + str << _("\n -- also available at: ") + str << vid[:formats].inject([]) { |list, fmt| + list << ("%{url} %{type} %{format} (%{duration} %{expression} %{medium})" % fmt) + }.join(', ') + end + m.reply str else m.reply(_("couldn't retrieve video info") % {:id => id}) end |