aboutsummaryrefslogtreecommitdiff
path: root/lib/Videolist/Platform
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Videolist/Platform')
-rw-r--r--lib/Videolist/Platform/Bliptv.php2
-rw-r--r--lib/Videolist/Platform/Metacafe.php2
-rw-r--r--lib/Videolist/Platform/Vimeo.php2
-rw-r--r--lib/Videolist/Platform/Youtube.php4
4 files changed, 5 insertions, 5 deletions
diff --git a/lib/Videolist/Platform/Bliptv.php b/lib/Videolist/Platform/Bliptv.php
index aa53032f9..62cefbd39 100644
--- a/lib/Videolist/Platform/Bliptv.php
+++ b/lib/Videolist/Platform/Bliptv.php
@@ -25,7 +25,7 @@ class Videolist_Platform_Bliptv implements Videolist_PlatformInterface
{
$video_id = $parsed['video_id'];
- $buffer = file_get_contents('http://blip.tv'.$video_id.'?skin=rss');
+ $buffer = file_get_contents('https://blip.tv'.$video_id.'?skin=rss');
$xml = new SimpleXMLElement($buffer);
return array(
diff --git a/lib/Videolist/Platform/Metacafe.php b/lib/Videolist/Platform/Metacafe.php
index 7da6d1647..74a346b34 100644
--- a/lib/Videolist/Platform/Metacafe.php
+++ b/lib/Videolist/Platform/Metacafe.php
@@ -25,7 +25,7 @@ class Videolist_Platform_Metacafe implements Videolist_PlatformInterface
{
$video_id = $parsed['video_id'];
- $buffer = file_get_contents("http://www.metacafe.com/api/item/$video_id");
+ $buffer = file_get_contents("https://www.metacafe.com/api/item/$video_id");
$xml = new SimpleXMLElement($buffer);
return array(
diff --git a/lib/Videolist/Platform/Vimeo.php b/lib/Videolist/Platform/Vimeo.php
index a4a1f275c..6930cdb2d 100644
--- a/lib/Videolist/Platform/Vimeo.php
+++ b/lib/Videolist/Platform/Vimeo.php
@@ -25,7 +25,7 @@ class Videolist_Platform_Vimeo implements Videolist_PlatformInterface
{
$video_id = $parsed['video_id'];
- $buffer = file_get_contents("http://vimeo.com/api/v2/video/$video_id.xml");
+ $buffer = file_get_contents("https://vimeo.com/api/v2/video/$video_id.xml");
$xml = new SimpleXMLElement($buffer);
$videos = $xml->children();
diff --git a/lib/Videolist/Platform/Youtube.php b/lib/Videolist/Platform/Youtube.php
index d5a388356..31a4bc950 100644
--- a/lib/Videolist/Platform/Youtube.php
+++ b/lib/Videolist/Platform/Youtube.php
@@ -37,13 +37,13 @@ class Videolist_Platform_Youtube implements Videolist_PlatformInterface
{
$video_id = $parsed['video_id'];
- $buffer = file_get_contents('http://gdata.youtube.com/feeds/api/videos/'.$video_id);
+ $buffer = file_get_contents('https://gdata.youtube.com/feeds/api/videos/'.$video_id);
$xml = new SimpleXMLElement($buffer);
return array(
'title' => $xml->title,
'description' => strip_tags($xml->content),
- 'thumbnail' => "http://img.youtube.com/vi/$video_id/default.jpg",
+ 'thumbnail' => "https://img.youtube.com/vi/$video_id/default.jpg",
);
}
}