]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/commitdiff
Updated the BlipTV regular expressions to support the "ogv" extension.
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 18 Mar 2010 19:04:41 +0000 (15:04 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Thu, 18 Mar 2010 19:04:41 +0000 (15:04 -0400)
src/websites/bliptv.rb

index 74f656d540a56e8f2e2272585e44a1be04f0baf3..b3bd8bb688f8318a3ea990ce173432a8933b9c88 100644 (file)
@@ -49,7 +49,7 @@ class Bliptv < Website
     end
 
     # I've seen some free software videos encoded as OGG/Vorbis, too.    
-    video_url_regex = /"Ogg Theora\/Vorbis \(\.ogg\)", "attribute" : "(.*?\.ogg)/i
+    video_url_regex = /"Ogg Theora\/Vorbis \(\.og[gv]\)", "attribute" : "(.*?\.og[gv])/i
     matches = video_url_regex.match(page_data)
 
     if not matches.nil?
@@ -68,7 +68,7 @@ class Bliptv < Website
     
     # If neither of the source formats are present, just grab the
     # video URL from the Flash variable and be done with it.
-    video_url_regex = /setPrimaryMediaUrl\("(.*?\.(flv|mov|wmv|mp4|ogg))/i
+    video_url_regex = /setPrimaryMediaUrl\("(.*?\.(flv|mov|wmv|mp4|og[gv]))/i
     matches = video_url_regex.match(page_data)
 
     if matches.nil?