java video 处理_video标签加载大文件视频链接 , Springboot项目 java后台处理

在Springboot项目中,针对大文件视频加载慢的问题,后台采用分段请求视频内容的方式进行优化。通过检查HTTP头的Range字段,根据范围发送相应字节的数据,支持断点续传,有效提升了大文件视频的加载速度。
摘要由CSDN通过智能技术生成

问题描述:

video之前加载短一点的视频链接没有问题  , 但是如果现在加载大文件视频的话就会非常慢 , 现在我们可以分段请求视频内容

后台代码如下:

@RequestMapping(value = "/videoPlayer", method = RequestMethod.GET)

public void player2(HttpServletRequest request, HttpServletResponse response) {

String path = request.getServletContext().getRealPath("/static/my/video/interview.mp4");

BufferedInputStream bis = null;

try {

File file = new File(path);

if (file.exists()) {

long p = 0L;

long toLength = 0L;

long contentLength = 0L;

int rangeSwitch = 0;

long fileLength;

String rangBytes = "";

fileLength = file.length();

// get file content

InputStream ins = new FileInputStream(file);

bis = new BufferedInputStream(ins);

// tell the client to allow acce

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值