diff --git a/metatag_opengraph/metatag_opengraph.install b/metatag_opengraph/metatag_opengraph.install
index efba48f..30cec1a 100644
--- a/metatag_opengraph/metatag_opengraph.install
+++ b/metatag_opengraph/metatag_opengraph.install
@@ -60,3 +60,10 @@ function metatag_opengraph_update_7101() {
 function metatag_opengraph_update_7102() {
   drupal_set_message(t('The Open Graph Products meta tags have been moved into the new "Metatag: Open Graph Products" submodule.'));
 }
+
+/**
+ * Leave a warning about the two og:video value changes.
+ */
+function metatag_opengraph_update_7103() {
+  drupal_set_message(t('The URL values for the "Video URL" open graph meta tag (og:video) changed to comply with the latest OG specification, if this site used those values they will need to be manually updated.'));
+}
diff --git a/metatag_opengraph/metatag_opengraph.metatag.inc b/metatag_opengraph/metatag_opengraph.metatag.inc
index 75605f1..c85a009 100644
--- a/metatag_opengraph/metatag_opengraph.metatag.inc
+++ b/metatag_opengraph/metatag_opengraph.metatag.inc
@@ -464,10 +464,13 @@ function metatag_opengraph_metatag_info() {
   //     ),
   //   ),
   // );
-  $info['tags']['og:video'] = array(
+  $info['tags']['og:video:url'] = array(
     'label' => t('Video URL'),
     'description' => t('The URL to a video file that complements this object.'),
     'weight' => ++$weight,
+    'replaces' => array(
+      'og:video',
+    ),
     'devel_generate' => array(
       'type' => 'url',
     ),
diff --git a/metatag_opengraph/metatag_opengraph.module b/metatag_opengraph/metatag_opengraph.module
index c2d194b..6c952c5 100644
--- a/metatag_opengraph/metatag_opengraph.module
+++ b/metatag_opengraph/metatag_opengraph.module
@@ -54,7 +54,8 @@ og:email
 og:phone_number
 og:fax_number
 
-og:video
+og:video:url
+og:video:secure_url
 og:video:height
 og:video:width
 og:video:type
