0

我正在使用 JavaScript、ffmpeg 和 java 创建视频编辑应用程序。使用 FFMPEG 我创建了提取 n 帧视频,而不是使用 canvas.toDataUrl 我正在用现有图像帧速率替换新图像并且一切都已经处理好了,但是当我使用这些图像创建视频时,FFMPEG 永远不会包含新创建的 PNG 图像。

从 HTML5 画布保存 png 图像的代码

Base64 decoder = new Base64();
    byte[] pic = decoder.decodeBase64(request.getParameter("pic"));
    String frameCount = request.getParameter("frame");
    InputStream in = new ByteArrayInputStream(pic);
    BufferedImage bImageFromConvert = ImageIO.read(in);
    String outdir = "output\\"+frameCount;
    //Random rand = new Random();
    File file = new File(outdir);
    if(file.isFile()){
        if(file.delete()){
            File writefile = new File(outdir);
            ImageIO.write(bImageFromConvert, "png", file);
        }
    }

从视频创建图像的代码

String filePath = "D:\\temp\\some.mpg";
    String outdir = "output";
    File file = new File(outdir);
    file.mkdirs();
    Map<String, String> m = System.getenv();

    /*
     * String command[] =
     * {"D:\\ffmpeg-win32-static\\bin\\ffmpeg","-i",filePath
     * ,"-r 30","-f","image2",outdir,"\\user%03d.jpg"};
     * 
     * ProcessBuilder pb = new ProcessBuilder(command); pb.start();
     */
    String commands = "D:\\ffmpeg-win32-static\\bin\\ffmpeg -i " + filePath
            + " -r 30  -f image2 " + outdir + "\\image%05d.png";
    Process p = Runtime.getRuntime().exec(commands);

从图像创建视频的代码

String filePath = "output";
    File fileP = new File(filePath);
    String commands = "D:\\ffmpeg-win32-static\\bin\\ffmpeg -f image2 -i "
            + fileP + "\\image%5d.png " + fileP + "\\video.mp4";
    System.out.println(commands);
    Runtime.getRuntime().exec(commands);
    System.out.println(fileP.getAbsolutePath());
4

1 回答 1

3

您已将创建声明为 image%05d.png 并使用它作为 image%5d.png。所以名字少了一个零。就是这样!

于 2012-08-27T13:25:34.813 回答