Hy I have been looking for this solution everywhere! In this website and in other ones. I have found some interesting thing but they didnt solve my problem. I am gonna explain it.
I have one video. I grad each frame of it with xuggler. When i get all the frames i edit all of them with a color algorithm. Also i store the audio in an mp3 file.
Now i need to create a video from all the frames, this video, of course, should have the same characteristics as frame rate e duration. After That i have to merge the audio.
I have done the first part, but i don't know how to create a video with the same characteristics. I am following this code: http://www.javacodegeeks.com/2011/02/xuggler-tutorial-frames-capture-video.html http://stackoverflow.com/questions/8327847/cant-encode-video-with-xuggler
But it takes the snapshot and it uses a strange loop:
for (int index = 0; index < SECONDS_TO_RUN_FOR * FRAME_RATE; index++)
I cant figure out how to set the right characteristic. It should be easy because i know everything about the video! size, frame rate and number of frame.
I am gonna post my code:
public static void main(String[] args) throws IOException {
final IMediaWriter writer = ToolFactory.makeWriter(outputFilename);
writer.addVideoStream(0, 0, ICodec.ID.CODEC_ID_MPEG4,
720, 304);
long nextFrameTime = 0;
final long frameRate =25/1000;
long startTime = System.nanoTime();
while (indexVideo<1597) {
BufferedImage videoImage = null;
try {
videoImage = getVideoImage();
} catch (AWTException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
writer.encodeVideo(0, videoImage,nextFrameTime,
TimeUnit.MILLISECONDS);
nextFrameTime += frameRate;
}
writer.close();
}
private static BufferedImage getVideoImage() throws IOException, AWTException {
File imgLoc = new File("D:/Gianfranco/Sample/"+indexVideo+".png");
BufferedImage img;
img = ImageIO.read(imgLoc);
System.out.println(imgLoc.getName());
indexVideo++;
return img;
}
Does anyone help my out?? thanks