您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關SpringBoot靜態視頻實時播放的實現代碼怎么編寫,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
問題描述
Spring Boot API 定義 GET 請求 API , 返回視頻流。前端通過 <video> 標簽加載并播放視頻,效果是必須等整個視頻資源全部加載到瀏覽器才能播放,而且 <video> 標簽默認的進度條無法控制視頻的播放。最終希望的效果是視頻流邊加載邊播放,且播放器的控制正常使用。
解決方法
Spring Framework 文件請求處理
import org.springframework.core.io.FileSystemResource;import org.springframework.core.io.Resource;import org.springframework.stereotype.Component;import org.springframework.web.servlet.resource.ResourceHttpRequestHandler;import javax.servlet.http.HttpServletRequest;import java.nio.file.Path;@Componentpublic class NonStaticResourceHttpRequestHandler extends ResourceHttpRequestHandler { public final static String ATTR_FILE = "NON-STATIC-FILE"; @Override protected Resource getResource(HttpServletRequest request) { final Path filePath = (Path) request.getAttribute(ATTR_FILE); return new FileSystemResource(filePath); }}
Controller 層
@RestController@AllArgsConstructorpublic class FileRestController { private final NonStaticResourceHttpRequestHandler nonStaticResourceHttpRequestHandler; /** * 預覽視頻文件, 支持 byte-range 請求 */ @GetMapping("/video") public void videoPreview(HttpServletRequest request, HttpServletResponse response) throws Exception { String path = request.getParameter("path"); Path filePath = Paths.get(path); if (Files.exists(filePath)) { String mimeType = Files.probeContentType(filePath); if (!StringUtils.isEmpty(mimeType)) { response.setContentType(mimeType); } request.setAttribute(NonStaticResourceHttpRequestHandler.ATTR_FILE, filePath); nonStaticResourceHttpRequestHandler.handleRequest(request, response); } else { response.setStatus(HttpServletResponse.SC_NOT_FOUND); response.setCharacterEncoding(StandardCharsets.UTF_8.toString()); } }}
看完上述內容,你們對SpringBoot靜態視頻實時播放的實現代碼怎么編寫有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。