java 中的 MP4 视频压缩器
MP4 Video Compressor in java
任何人都可以向我推荐一个好的压缩器或第三方库来从服务器端压缩 MP4 视频(我正在使用 Spring MVC)。
我开始了解 FFMPEG 和 Xuggler,除此之外,任何维护的压缩器都可以在 java 中使用。请给我建议或链接。
看看jcodec
https://github.com/jcodec/jcodec
它具有 H.264 主配置文件解码器和 H.264 基线配置文件编码器,以及 MP4 muxer/demuxer 支持。
此外,您可以考虑基于 OSS C 的解决方案并试用 C->Java 转换器。这可能是一项非常困难的工作,但会有很多好的库。
使用 FFMPEG 包装器压缩视频。
这是下载 link:https://www.ffmpeg.org/download.html
github: https://github.com/bramp/ffmpeg-cli-wrapper
这里是代码:
ffmpeg = new FFmpeg("D:/ffmpeg-20180429-cae6f80-win32-static/ffmpeg-20180429-cae6f80-win32-static/bin/ffmpeg");
ffprobe = new FFprobe("D:/ffmpeg-20180429-cae6f80-win32-static/ffmpeg-20180429-cae6f80-win32-static/bin/ffprobe");
FFmpegBuilder builder = new FFmpegBuilder()
.setInput(input) // Filename, or a FFmpegProbeResult
.overrideOutputFiles(true) // Override the output if it exists
.addOutput(output) // Filename for the destination
.setFormat("mp4") // Format is inferred from filename, or can be set
// .setTargetSize(250_000) // Aim for a 250KB file
.disableSubtitle() // No subtiles
.setAudioChannels(1) // Mono audio
// .setAudioChannels(2)
.setAudioCodec("aac") // using the aac codec
.setAudioSampleRate(48_000) // at 48KHz
.setAudioBitRate(32768) // at 32 kbit/s
// .setAudioBitRate(126000)
.setVideoCodec("libx264") // Video using x264
.setVideoFrameRate(24, 1) // at 24 frames per second
.setVideoResolution(1280, 720) // at 640x480 resolution
// .setVideoResolution(1024, 768)
// .setVideoResolution(640, 480)
.setVideoBitRate(762800)
.setStrict(FFmpegBuilder.Strict.EXPERIMENTAL) // Allow FFmpeg to use experimental specs
.done();
FFmpegExecutor executor = new FFmpegExecutor(ffmpeg, ffprobe);
executor.createJob(builder).run(); // Run a one-pass encode
任何人都可以向我推荐一个好的压缩器或第三方库来从服务器端压缩 MP4 视频(我正在使用 Spring MVC)。
我开始了解 FFMPEG 和 Xuggler,除此之外,任何维护的压缩器都可以在 java 中使用。请给我建议或链接。
看看jcodec
https://github.com/jcodec/jcodec
它具有 H.264 主配置文件解码器和 H.264 基线配置文件编码器,以及 MP4 muxer/demuxer 支持。
此外,您可以考虑基于 OSS C 的解决方案并试用 C->Java 转换器。这可能是一项非常困难的工作,但会有很多好的库。
使用 FFMPEG 包装器压缩视频。 这是下载 link:https://www.ffmpeg.org/download.html
github: https://github.com/bramp/ffmpeg-cli-wrapper
这里是代码:
ffmpeg = new FFmpeg("D:/ffmpeg-20180429-cae6f80-win32-static/ffmpeg-20180429-cae6f80-win32-static/bin/ffmpeg");
ffprobe = new FFprobe("D:/ffmpeg-20180429-cae6f80-win32-static/ffmpeg-20180429-cae6f80-win32-static/bin/ffprobe");
FFmpegBuilder builder = new FFmpegBuilder()
.setInput(input) // Filename, or a FFmpegProbeResult
.overrideOutputFiles(true) // Override the output if it exists
.addOutput(output) // Filename for the destination
.setFormat("mp4") // Format is inferred from filename, or can be set
// .setTargetSize(250_000) // Aim for a 250KB file
.disableSubtitle() // No subtiles
.setAudioChannels(1) // Mono audio
// .setAudioChannels(2)
.setAudioCodec("aac") // using the aac codec
.setAudioSampleRate(48_000) // at 48KHz
.setAudioBitRate(32768) // at 32 kbit/s
// .setAudioBitRate(126000)
.setVideoCodec("libx264") // Video using x264
.setVideoFrameRate(24, 1) // at 24 frames per second
.setVideoResolution(1280, 720) // at 640x480 resolution
// .setVideoResolution(1024, 768)
// .setVideoResolution(640, 480)
.setVideoBitRate(762800)
.setStrict(FFmpegBuilder.Strict.EXPERIMENTAL) // Allow FFmpeg to use experimental specs
.done();
FFmpegExecutor executor = new FFmpegExecutor(ffmpeg, ffprobe);
executor.createJob(builder).run(); // Run a one-pass encode