Converting into FLV using Java

后端 未结 3 780
庸人自扰
庸人自扰 2021-01-03 10:50

does anybody know how to convert any kind of video format into flv using java, i have been searching for a java api for converting video but it seems that there is no such t

3条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-03 11:44

    None in Java comes directly to mind, even Java's own media framework JMF doesn't support FLV, but you may find this overview of Open Source Flash Projects useful. If any non-Java commandline tool turns out to be useful for you, then you could execute it from inside Java using Runtime#exec() (tutorial here) or preferably ProcessBuilder (tutorial here).

提交回复
热议问题