diff --git a/includes/themes/media_youtube.theme.inc b/includes/themes/media_youtube.theme.inc
index dc53757..411fce5 100644
--- a/includes/themes/media_youtube.theme.inc
+++ b/includes/themes/media_youtube.theme.inc
@@ -93,7 +93,7 @@ function media_youtube_preprocess_media_youtube_video(&$variables) {
     $variables['url_api'] = 'v/' . $variables['video_id'];
   }
 
-  $variables['url'] = url('http://www.youtube.com/' . $variables['url_api'], array('query' => $variables['query'], 'external' => TRUE, 'https' => TRUE));
+  $variables['url'] = url('https://www.youtube.com/' . $variables['url_api'], array('query' => $variables['query'], 'external' => TRUE, 'https' => TRUE));
 
   // For users with JavaScript, these object and embed tags will be replaced
   // by an iframe, so that we can support users without Flash.
diff --git a/js/media_youtube.js b/js/media_youtube.js
index 2d8b657..2a606ba 100644
--- a/js/media_youtube.js
+++ b/js/media_youtube.js
@@ -52,7 +52,7 @@ Drupal.media_youtube.insertEmbed = function (embed_id) {
   // Replace the object embed with YouTube's iframe. This isn't done by the
   // theme function because YouTube doesn't have a no-JS or no-Flash fallback.
   var video = $('<iframe class="youtube-player" type="text/html" frameborder="0"></iframe>');
-  var src = 'http://www.youtube.com/embed/' + settings.video_id;
+  var src = 'https://www.youtube.com/embed/' + settings.video_id;
 
   // Allow other modules to modify the video settings.
   settings.options = settings.options || {};
