Flask接口签名sign原理与实例代码浅析
355
2022-12-11
java将m3u8格式转成视频文件的方法
这是一次尝试,android手机将在线的m3u8小电影保存到手机端,手机端把文件复制到电脑端。
然后使用小工具合并成可播放的视频。
/**
* 合并视频文件
*
*/
public class MergeVideos {
/**
* source为源地址,destination为合并之后的文件地址,videoName为合并后视频的名字,num为视频数量
* @param source
* @param destination
* @throws IOException
*/
public static void MergeVideos(File source, String destination) throws IOException{
FileOutputStream out = new FileOutputStream(destination);
FileInputStream in = null;
File[] files = source.listFiles();
for(File file: files){
in = new FileInputStream(file);
byte[] bytes = new byte[1024];
int len = 0;
while((len = in.read(bytes)) > 0){
out.write(bytes,0,len);
}
}
in.close();
out.close();
}
}
public class M3u8Util{
/**
* 根目录
* @param root
*/
public static void findFile(File root) throws IOException {
if(root.exists()){
if(root.isDirectory()){
File[] categorys=root.listFiles();
for(File cate: categorys){
if(rename(cate)){
MergeVideos.MergeVideos(cate,cate.getName()+".ts");
}
}
}else{
System.out.println("file name: "+root.getName());
}
}
}
/**
* 将0 改成00或者 000
* @param cat
*/
public static boolean rename(tSLkggvpavFile cat){
if(cat.exists()){
if(cat.isDirectory()){
File[] files=cat.listFiles();
int len=String.valueOf(files.length).length();
String file0=files[0].getName();
String pre=file0.substring(0,file0.length()-1);
Integer max=pre.length()+len;
Arrays.stream(files)
.filter(temp->max-temp.getName().length()>0)
.forEach(item->{
int fill=max-item.getName().length();
String name="";
for(int i=0;i name+=0; } String n=item.getAbsolutePath().replace(pre,pre+name); item.renameTo(new File(n)); }); return true; }else{ System.out.println("file name: "+cat.getName()); } } return false; } 核心代码如上,再加上一个swing界面,堪称完美。 目录选择方式,可以选择粘贴,或者文件选择的方式。 运行完成。合并的文件都好了。 总结
name+=0;
}
String n=item.getAbsolutePath().replace(pre,pre+name);
item.renameTo(new File(n));
});
return true;
}else{
System.out.println("file name: "+cat.getName());
}
}
return false;
}
核心代码如上,再加上一个swing界面,堪称完美。
目录选择方式,可以选择粘贴,或者文件选择的方式。
运行完成。合并的文件都好了。
总结
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~