对于我的视频隐写项目(在java中),我需要将顺序PNG编码为电影文件。我尝试了 xuggler ,但我正在进行压缩。(因为下次我从视频中提取帧时隐藏在png图像的lsb中的数据会丢失)
因为我需要稍后检索隐藏数据,我需要找到一个以无损方式将png图像编码为视频(首选格式:avi)的过程。新视频的大小对我来说不是一件。
希望有人可以指导我或推荐一个有用的不同java库来执行此操作。
如果需要,我可以发布我的java代码。
答案 0 :(得分:3)
您可以将一系列PNG复制到MP4文件中而无需转码(保留精确的原始图像)。要在纯Java中执行此操作,请使用JCodec(http://jcodec.org):
public class SequenceMuxer {
private SeekableByteChannel ch;
private CompressedTrack outTrack;
private int frameNo;
private MP4Muxer muxer;
private Size size;
public SequenceMuxer(File out) throws IOException {
this.ch = NIOUtils.writableFileChannel(out);
// Muxer that will store the encoded frames
muxer = new MP4Muxer(ch, Brand.MP4);
// Add video track to muxer
outTrack = muxer.addTrackForCompressed(TrackType.VIDEO, 25);
}
public void encodeImage(File png) throws IOException {
if (size == null) {
BufferedImage read = ImageIO.read(png);
size = new Size(read.getWidth(), read.getHeight());
}
// Add packet to video track
outTrack.addFrame(new MP4Packet(NIOUtils.fetchFrom(png), frameNo, 25, 1, frameNo, true, null, frameNo, 0));
frameNo++;
}
public void finish() throws IOException {
// Push saved SPS/PPS to a special storage in MP4
outTrack.addSampleEntry(MP4Muxer.videoSampleEntry("png ", size, "JCodec"));
// Write MP4 header and finalize recording
muxer.writeHeader();
NIOUtils.closeQuietly(ch);
}
}
使用它是这样的:
public static void main(String[] args) throws IOException {
SequenceMuxer encoder = new SequenceMuxer(new File("video_png.mp4"));
for (int i = 1; i < 100; i++) {
encoder.encodeImage(new File(String.format("img%08d.png", i)));
}
encoder.finish();
}
答案 1 :(得分:2)
如果您从www.processing.org下载处理框架,您可以编写一个非常简单的java程序来读取您的图像并将它们写入mov文件,如果您使用ANIMATION编解码器并指定无损,它将是完全无损的。