亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot靜態視頻實時播放的實現代碼

發布時間:2020-10-12 04:31:23 來源:腳本之家 閱讀:839 作者:java_small_ant 欄目:編程語言

問題描述

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;

@Component
public 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
@AllArgsConstructor
public 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());
    }
  }

}

相關資料

How do I return a video with Spring MVC so that it can be navigated using the html5 tag?

https://stackoverflow.com/questions/3303029/http-range-header

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

泰来县| 嵊泗县| 桑日县| 磐安县| 怀柔区| 淄博市| 常熟市| 北宁市| 通渭县| 阳江市| 绥德县| 明光市| 潼关县| 锡林浩特市| 昌黎县| 萝北县| 弥勒县| 罗城| 米易县| 宁陵县| 南开区| 河曲县| 荥阳市| 高淳县| 通化市| 逊克县| 鸡西市| 涟水县| 新巴尔虎右旗| 云安县| 通城县| 肇源县| 固阳县| 汝城县| 岱山县| 高雄市| 怀集县| 辽阳县| 龙山县| 大丰市| 西峡县|