在前端录制视频后传给后端在后端将视频文件转为base64格式发送给接口返回Can't analyse the video!-5 麻烦指点下! 后端是java语言
一下是转换base64的方法
byte[] byt = new byte[file.getInputStream().available()];
file.getInputStream().read(byt);
String base64 = new BASE64Encoder().encodeBuffer(byt);
请登录后评论
TOP
切换版块
解决了,base64传入接口需要url加密。之前没加密。