diff --git a/apps/files_sharing/css/public.scss b/apps/files_sharing/css/public.scss
index 51c2bc9f4cea8b29713c6111e30ceeb741a18064..5edc3f7eb907777eee216379a18e33ba45407a1d 100644
--- a/apps/files_sharing/css/public.scss
+++ b/apps/files_sharing/css/public.scss
@@ -39,15 +39,10 @@
 }
 
 
-#imgframe img,
-#imgframe video {
+#imgframe img {
 	max-height: 100% !important;
 	max-width: 100% !important;
 }
-#imgframe video {
-	width: 854px;
-	height: 480px;
-}
 
 #imgframe .text-preview {
 	display: inline-block;
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php
index 9d28c178dde664d49316e4bb206eb605fadf5e99..3c2bbe5fb5927987c7723a6048b33889d2371825 100644
--- a/apps/files_sharing/templates/public.php
+++ b/apps/files_sharing/templates/public.php
@@ -91,13 +91,7 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size);
 			<?php if (isset($_['folder'])): ?>
 				<?php print_unescaped($_['folder']); ?>
 			<?php else: ?>
-				<?php if ($_['previewEnabled'] && substr($_['mimetype'], 0, strpos($_['mimetype'], '/')) === 'video'): ?>
-					<div id="imgframe">
-						<video tabindex="0" controls="" preload="none" style="max-width: <?php p($_['previewMaxX']); ?>px; max-height: <?php p($_['previewMaxY']); ?>px">
-							<source src="<?php p($_['downloadURL']); ?>" type="<?php p($_['mimetype']); ?>" />
-						</video>
-					</div>
-				<?php elseif ($_['previewEnabled'] && substr($_['mimetype'], 0, strpos($_['mimetype'], '/')) == 'audio'): ?>
+				<?php if ($_['previewEnabled'] && substr($_['mimetype'], 0, strpos($_['mimetype'], '/')) == 'audio'): ?>
 					<div id="imgframe">
 						<audio tabindex="0" controls="" preload="none" style="width: 100%; max-width: <?php p($_['previewMaxX']); ?>px; max-height: <?php p($_['previewMaxY']); ?>px">
 							<source src="<?php p($_['downloadURL']); ?>" type="<?php p($_['mimetype']); ?>" />