Index: wp-content/themes/twentythirteen/style.css
===================================================================
--- wp-content/themes/twentythirteen/style.css	(revision 23795)
+++ wp-content/themes/twentythirteen/style.css	(working copy)
@@ -1854,6 +1854,10 @@
 	font-weight: 400;
 }
 
+.format-video .entry-header {
+	max-width: 724px;
+}
+
 .format-video .entry-meta {
 	color: #220e10;
 }
Index: wp-content/themes/twentythirteen/functions.php
===================================================================
--- wp-content/themes/twentythirteen/functions.php	(revision 23795)
+++ wp-content/themes/twentythirteen/functions.php	(working copy)
@@ -436,6 +436,72 @@
 	return ( $has_url ) ? $has_url : apply_filters( 'the_permalink', get_permalink() );
 }
 
+/**
+ * Echoes the first found video from current post.
+ *
+ * @uses twentythirteen_get_split_content
+ *
+ * @print HTML
+ */
+function twentythirteen_post_video() {
+	$first_video = twentythirteen_get_split_content( 'url' );
+
+	if ( is_array( $first_video ) )
+		$first_video = $first_video[0];
+
+	echo wp_oembed_get( $first_video );
+}
+
+/**
+ * Echoes the post content without the chosen piece of media (video, image, etc).
+ *
+ * @uses twentythirteen_get_split_content
+ *
+ * @print HTML
+ */
+function twentythirteen_split_content() {
+	echo twentythirteen_get_split_content( 'rest' );
+}
+
+/**
+ * Finds first media piece in a given post.
+ *
+ * 1. Find a URL or media embed in post format meta.
+ * 2. Find a source element in post content.
+ * 3. Find an embed in post content.
+ * 4. Find an attachment.
+ *
+ * @param string $return Whether to return the URL or the filtered content.
+ * @return string Either URL of the first media piece found, or the rest of the content without the piece.
+ */
+function twentythirteen_get_split_content( $return = 'url' ) {
+	$format       = get_post_format();
+	$post_meta    = get_post_format_meta( get_the_ID() );
+	$post_content = get_the_content();
+
+	$media_url = $post_meta['url'];
+
+	if ( empty( $media_url ) ) {
+		$media_url = $post_meta['media'];
+
+		if ( empty( $media_url ) ) {
+		 	$media_url = get_content_video( $post_content, true );
+
+			if ( empty( $media_url ) ) {
+				$media_url = get_embedded_video( $post_content, true );
+
+				if ( empty( $media_url ) )
+					$media_url = get_attached_video( get_the_ID() );
+			}
+		}
+	}
+
+	if ( 'rest' === $return )
+		return $post_content;
+
+	return $media_url;
+}
+
 if ( ! function_exists( 'twentythirteen_featured_gallery' ) ) :
 /**
  * Displays first gallery from post content. Changes image size from thumbnail
Index: wp-content/themes/twentythirteen/content-video.php
===================================================================
--- wp-content/themes/twentythirteen/content-video.php	(revision 23795)
+++ wp-content/themes/twentythirteen/content-video.php	(working copy)
@@ -10,6 +10,8 @@
 
 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 	<header class="entry-header">
+		<?php twentythirteen_post_video(); ?>
+
 		<?php if ( is_single() ) : ?>
 		<h1 class="entry-title"><?php the_title(); ?></h1>
 		<?php else : ?>
@@ -20,7 +22,7 @@
 	</header><!-- .entry-header -->
 
 	<div class="entry-content">
-		<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentythirteen' ) ); ?>
+		<?php twentythirteen_split_content(); ?>
 		<?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
 	</div><!-- .entry-content -->
 
