Index: wp-admin/about.php
===================================================================
--- wp-admin/about.php	(revision 24917)
+++ wp-admin/about.php	(working copy)
@@ -37,7 +37,7 @@
 	<h3><?php _e( 'Colorful New Theme' ); ?></h3>
 
 	<div class="feature-section images-stagger-right">
-		<img alt="" src="<?php echo esc_url( admin_url( 'images/screenshots/about-twenty-twelve.png' ) ); ?>" class="image-66" />
+		<img alt="" src="<?php echo is_ssl() ? 'https://' : '//s.'; ?>wordpress.org/images/core/3.6/theme.png" class="image-66" />
 		<h4><?php _e( 'Introducing Twenty Thirteen' ); ?></h4>
 		<p><?php printf( __( "The new default theme puts focus on your content with a colorful, single-column design made for media-rich blogging." ) ); ?></p>
 		<p><?php _e( 'Inspired by modern art, Twenty Thirteen features quirky details, beautiful typography, and bold, high-contrast colors &mdash; all with a flexible layout that looks great on any device, big or small.' ); ?></p>
@@ -48,7 +48,7 @@
 	<h3><?php _e( 'Write with Confidence' ); ?></h3>
 
 	<div class="feature-section images-stagger-right">
-		<img alt="" src="<?php echo esc_url( admin_url( 'images/screenshots/about-retina.png' ) ); ?>" class="image-66" />
+		<img alt="" src="<?php echo is_ssl() ? 'https://' : '//s.'; ?>wordpress.org/images/core/3.6/revisions.png" class="image-66" />
 		<h4><?php _e( 'Explore Revisions' ); ?></h4>
 		<p></p>
 		<p><?php _e( 'From the first word you write, WordPress saves every change. Each revision is always at your fingertips. Text is highlighted as you scroll through revisions at lightning speed, so you can see what changes have been made along the way.' ); ?></p>
@@ -75,7 +75,14 @@
 	<h3><?php _e( 'Support for Audio and Video' ); ?></h3>
 
 	<div class="feature-section images-stagger-right">
-		<img alt="" src="<?php echo esc_url( admin_url( 'images/screenshots/about-color-picker.png' ) ); ?>" class="image-30" />
+		<div class="video image-66"><?php echo wp_video_shortcode(
+			array(
+				'm4v' => (is_ssl() ? 'https://' : '//s.' ) . 'wordpress.org/images/core/3.6/video.m4v',
+				'ogv' => (is_ssl() ? 'https://' : '//s.' ) . 'wordpress.org/images/core/3.6/video.ogv',
+				'width' => 625,
+				'height' => 360,
+			)
+		); ?></div>
 		<h4><?php _e( 'New Media Player' ); ?></h4>
 		<p><?php _e( 'Share your audio and video with the new built-in HTML5 media player. Upload files using the media manager and embed them in your posts.' ); ?></p>
 
Index: wp-admin/css/wp-admin-rtl.css
===================================================================
--- wp-admin/css/wp-admin-rtl.css	(revision 24917)
+++ wp-admin/css/wp-admin-rtl.css	(working copy)
@@ -1725,16 +1725,19 @@
 	margin-left: 0;
 }
 
-.about-wrap .feature-section img {
+.about-wrap .feature-section img,
+.about-wrap .feature-section .video {
 	margin: 0 0 10px 0.7%;
 }
 
-.about-wrap .feature-section.images-stagger-right img {
+.about-wrap .feature-section.images-stagger-right img,
+.about-wrap .feature-section.images-stagger-right .video {
 	float: left;
 	margin: 0 2em 12px 5px;
 }
 
-.about-wrap .feature-section.images-stagger-left img {
+.about-wrap .feature-section.images-stagger-left img,
+.about-wrap .feature-section.images-stagger-left .video {
 	float: right;
 	margin: 0 5px 12px 2em;
 }
@@ -1746,16 +1749,26 @@
 	margin-left: 10px;
 }
 
+@media only screen and (max-width: 900px) {
+	.about-wrap .feature-section.images-stagger-right .video.image-66 {
+		margin-right: 3px;
+	}
+
+	.about-wrap .feature-section.images-stagger-left .video.image-66 {
+		margin-left: 3px;
+	}
+}
+
 @media only screen and (max-width: 768px) {
-	.about-wrap .feature-section img.image-66 {
+	.about-wrap .feature-section .image-66 {
 		float: none;
 	}
 
-	.about-wrap .feature-section.images-stagger-right img.image-66 {
+	.about-wrap .feature-section.images-stagger-right .image-66 {
 		margin-right: 3px;
 	}
 
-	.about-wrap .feature-section.images-stagger-left img.image-66 {
+	.about-wrap .feature-section.images-stagger-left .image-66 {
 		margin-left: 3px;
 	}
 }
Index: wp-admin/css/wp-admin.css
===================================================================
--- wp-admin/css/wp-admin.css	(revision 24917)
+++ wp-admin/css/wp-admin.css	(working copy)
@@ -5823,7 +5823,8 @@
 
 /* Changelog / Update screen */
 
-.about-wrap .feature-section img {
+.about-wrap .feature-section img,
+.about-wrap .feature-section .video {
 	border: none;
 	margin: 0 1.94% 10px 0;
 	-webkit-border-radius: 3px;
@@ -5830,40 +5831,48 @@
 	border-radius: 3px;
 }
 
-.about-wrap .feature-section.three-col img {
+.about-wrap .feature-section.three-col img,
+.about-wrap .feature-section.three-col .video {
 	margin: 0.5em 0 0.5em 5px;
 	max-width: 100%;
 	float: none;
 }
 
-.ie8 .about-wrap .feature-section.three-col img {
+.ie8 .about-wrap .feature-section.three-col img,
+.ie8 .about-wrap .feature-section.three-col .video {
 	margin-left: 0;
 }
 
-.about-wrap .feature-section.images-stagger-right img {
+.about-wrap .feature-section.images-stagger-right img,
+.about-wrap .feature-section.images-stagger-right .video {
 	float: right;
 	margin: 0 5px 12px 2em;
 }
 
-.about-wrap .feature-section.images-stagger-left img {
+.about-wrap .feature-section.images-stagger-left img,
+.about-wrap .feature-section.images-stagger-left .video {
 	float: left;
 	margin: 0 2em 12px 5px;
 }
 
-.about-wrap .feature-section img.image-100 {
+.about-wrap .feature-section .image-100 {
 	margin: 0 0 2em 0;
 	width: 100%;
 }
 
-.about-wrap .feature-section img.image-66 {
+.about-wrap .feature-section .image-66 {
 	width: 65%;
 }
 
-.about-wrap .feature-section img.image-50 {
+.about-wrap .feature-section .image-66.video {
+	max-width: 600px;
+}
+
+.about-wrap .feature-section .image-50 {
 	max-width: 50%;
 }
 
-.about-wrap .feature-section img.image-30 {
+.about-wrap .feature-section .image-30 {
 	max-width: 31.2381%;
 }
 
@@ -5872,7 +5881,7 @@
 	border-style: solid;
 }
 
-.about-wrap .images-stagger-right img.image-30:nth-child(2) {
+.about-wrap .images-stagger-right .image-30:nth-child(2) {
 	margin-left: 1em;
 }
 
@@ -5904,7 +5913,8 @@
 	text-align: center;
 }
 
-.about-wrap .three-col-images img {
+.about-wrap .three-col-images img,
+.about-wrap .three-col-images .video {
 	margin: 0 0 10px;
 }
 
@@ -5927,23 +5937,39 @@
 
 @media only screen and (max-width: 900px) {
 	.about-wrap .feature-section.images-stagger-left img,
-	.about-wrap .feature-section.images-stagger-right img {
+	.about-wrap .feature-section.images-stagger-right img,
+	.about-wrap .feature-section.images-stagger-left .video,
+	.about-wrap .feature-section.images-stagger-right .video {
 		clear: both;
 	}
+
+	.about-wrap .feature-section .video.image-66 {
+		float: none;
+		width: 98%;
+		max-width: 98%;
+	}
+
+	.about-wrap .feature-section.images-stagger-right .video.image-66 {
+		margin-left: 3px;
+	}
+
+	.about-wrap .feature-section.images-stagger-left .video.image-66 {
+		margin-right: 3px;
+	}
 }
 
 @media only screen and (max-width: 768px) {
-	.about-wrap .feature-section img.image-66 {
+	.about-wrap .feature-section .image-66 {
 		float: none;
 		width: 98%;
 		max-width: 98%;
 	}
 
-	.about-wrap .feature-section.images-stagger-right img.image-66 {
+	.about-wrap .feature-section.images-stagger-right .image-66 {
 		margin-left: 3px;
 	}
 
-	.about-wrap .feature-section.images-stagger-left img.image-66 {
+	.about-wrap .feature-section.images-stagger-left .image-66 {
 		margin-right: 3px;
 	}
 }
