Index: src/wp-includes/js/mce-view.js
===================================================================
--- src/wp-includes/js/mce-view.js	(revision 31546)
+++ src/wp-includes/js/mce-view.js	(working copy)
@@ -651,7 +651,7 @@
 			var media = wp.media[ this.type ],
 				frame = media.edit( text );
 
-			this.stopPlayers && this.stopPlayers();
+			this.pausePlayers && this.pausePlayers();
 
 			_.each( this.state, function( state ) {
 				frame.state( state ).on( 'update', function( selection ) {
@@ -728,7 +728,7 @@
 				self.render();
 			} )
 			.fail( function( response ) {
-				if ( self.type === 'embedURL' ) {
+				if ( self.url ) {
 					self.removeMarkers();
 				} else {
 					self.setError( response.message || response.statusText, 'admin-media' );
@@ -737,19 +737,19 @@
 
 			this.getEditors( function( editor ) {
 				editor.on( 'wpview-selected', function() {
-					self.stopPlayers();
+					self.pausePlayers();
 				} );
 			} );
 		},
 
-		stopPlayers: function( remove ) {
+		pausePlayers: function() {
 			this.getNodes( function( editor, node, content ) {
 				var win = $( 'iframe.wpview-sandbox', content ).get( 0 );
 
 				if ( win && ( win = win.contentWindow ) && win.mejs ) {
 					_.each( win.mejs.players, function( player ) {
 						try {
-							player[ remove ? 'remove' : 'pause' ]();
+							player.pause();
 						} catch ( e ) {}
 					} );
 				}
@@ -762,10 +762,10 @@
 
 		edit: function( text, update ) {
 			var media = wp.media.embed,
-				isURL = 'embedURL' === this.type,
-				frame = media.edit( text, isURL );
+				frame = media.edit( text, !! this.url ),
+				self = this;
 
-			this.stopPlayers();
+			this.pausePlayers();
 
 			frame.state( 'embed' ).props.on( 'change:url', function( model, url ) {
 				if ( url ) {
@@ -774,7 +774,7 @@
 			} );
 
 			frame.state( 'embed' ).on( 'select', function() {
-				if ( isURL ) {
+				if ( self.url ) {
 					update( frame.state( 'embed' ).metadata.url );
 				} else {
 					update( media.shortcode( frame.state( 'embed' ).metadata ).string() );
