--- media.php	2017-04-28 16:24:29.229808022 +0530
+++ media-new.php	2017-04-28 16:40:05.105837971 +0530
@@ -2580,7 +2580,13 @@
 	if ( 'mediaelement' === $library && 1 === $instance ) {
 		$html .= "<!--[if lt IE 9]><script>document.createElement('video');</script><![endif]-->\n";
 	}
-	$html .= sprintf( '<video %s controls="controls">', join( ' ', $attr_strings ) );
+
+
+	if ( isset( $attr['controls'] ) && in_array( $attr['controls'], array( 'false', 'off', '0' ), true ) ) {
+		$html .= sprintf( '<video %s>', join( ' ', $attr_strings ) );
+	} else {
+		$html .= sprintf( '<video %s controls="controls">', join( ' ', $attr_strings ) );
+	}

 	$fileurl = '';
 	$source = '<source type="%s" src="%s" />';
