我有一个springboot应用程序。以接受所有视频类型
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<!-- Meta Tags -->
<meta charset="UTF-8">
</head>
<body class="public app app-embed" onorientationchange="window.scrollTo(0, 1)">
<div id="form-embed">
<div id="messages"></div>
<form action="#" th:action="@{/adduser.html}" th:object="${user}" method="post" enctype="multipart/form-data">
<!-- File -->
<div class="form-group textogbcn">
<label for="video">Video</label>
<input type="file" id="video" name="files" accept="video/*">
</div>
</form>
</div>
</body>
</html>
但似乎只接受mp4,而不接受mkv,
测试 Chrome v87.0.4280.88 (Build oficial) (x86_64)
1条答案
按热度按时间kokeuurv1#
尝试以下解决方案作为解决方法。
解释https://stackoverflow.com/a/56455137/6572971