gpt4 book ai didi

java - 获取 java.io.IOException : Broken pipe exception when navigating in a video that is being streamed as a multi part file stream

转载 作者:行者123 更新时间:2023-11-30 06:19:57 25 4
gpt4 key购买 nike

我正在使用 this 中的 MultipartFileSender 类来玩一个简单的视频流 Spring Boot 应用程序。 github 存储库。由于它是一个非常大的文件,我不想将其包含在这里,但如果需要,我可以包含它。

我的 Controller 如下:

package org.murat.test.controllers;

import org.murat.test.Utils.MultipartFileSender;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.File;

@RestController
@RequestMapping("/")
public class VideoController {
protected final Logger logger = LoggerFactory.getLogger(this.getClass());

@RequestMapping(value = "video", method = RequestMethod.GET)
public void getVideo(HttpServletRequest request, HttpServletResponse response){
File file = new File("/test-videos/BigBuckBunny.mp4");
try {
logger.debug("Streaming file '" + file.getName() + "'...");
MultipartFileSender.fromFile(file)
.with(request)
.with(response)
.serveResource();
} catch (Exception e) {
String errorMessage = e.getLocalizedMessage();
logger.error(errorMessage, e);
}
}
}

当我访问 URL http://hostname:8080/video 时,一切都运行得很完美我可以在视频中播放、暂停、快退和导航。

此时我唯一关心的是,每次浏览视频时(即使是在启动视频时)​​,我都会收到 org.apache.catalina.connector.ClientAbortException: java.io.IOException: Broken pipeline 异常。

我做了一些研究,发现如果用户在服务器尝试向用户提供某些服务时关闭网站或其连接,就会发生这种情况。所以就我而言,发生这种情况是因为当我拖动到另一个框架时:

  1. 视频暂停。
  2. 转到所需的帧。
  3. 视频从此开始运行框架。

我假设此时原始连接已丢失,并且创建了另一个连接。

我的问题是:

  1. 我可以在连接之间正常切换而不会出现此错误吗?
  2. 如果没有,我可以安全地忽略这个错误(也许强制它当我捕获此特定异常时将其显示为警告/调试)?

最佳答案

问题可能是您不支持字节范围请求。大多数(如果不是全部)视频播放器都会期望这一点。它们可能会优雅地降级以使用常规(非字节范围)请求,但我怀疑播放器是否能发挥全部功能。

Spring Content支持开箱即用的视频流(字节范围)。使用 Spring Content FS(即文件系统的 Spring Content),您将能够自己创建一个由文件系统支持的存储,将您的视频放入该存储中,并使用 Spring Content REST 通过 HTTP 为它们提供服务。 p>

通过 start.spring.io 或通过 IDE spring 项目向导创建新的 Spring Boot 项目(撰写本文时为 Spring Boot 1.5.10)。添加以下 Spring Content 依赖项,最终得到这些:-

<dependencies>
<!-- Standard Spring Boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.3</version>
</dependency>

<!-- Spring Content -->
<dependency>
<groupId>com.github.paulcwarren</groupId>
<artifactId>spring-content-fs-boot-starter</artifactId>
<version>0.0.9</version>
</dependency>
<dependency>
<groupId>com.github.paulcwarren</groupId>
<artifactId>spring-content-rest-boot-starter</artifactId>
<version>0.0.9</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

在您的 Spring Boot 应用程序类中,创建一个 VideoStore。将其注释为 Store REST 资源。这会导致 Spring Content 注入(inject)(此接口(interface)的)实现以及 REST 端点,从而使您不必编写任何此内容(即上面显示的 Controller 代码加上一些代码):-

    @SpringBootApplication 
public class DemoApplication {

public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}

@StoreRestResource(path="test-videos")
public interface VideoStore extends Store<String> {}
}

默认情况下,Spring Content 将在 java.io.tmpdir 下创建一个存储。因此,您还需要设置 SPRING_CONTENT_FS_FILESYSTEM_ROOT 环境变量以指向“商店”的根目录。

将您的视频复制到此“根”位置。启动应用程序,您的视频将从以下位置传输:-

/test-videos/BigBuckBunny.mp4

如果您没有使用 Spring Boot,请告诉我,我可以发布一个非 Spring Boot 示例。

关于java - 获取 java.io.IOException : Broken pipe exception when navigating in a video that is being streamed as a multi part file stream,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48369428/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com