@Properties(inherit={avdevice.class,avfilter.class}, value=@Platform(executable="ffprobe")) public class ffprobe extends Object
ffprobe
program ready for execution.
For example, we can display the information of a video from Java in a portable fashion this way:
String ffprobe = Loader.load(org.bytedeco.ffmpeg.ffprobe.class);
ProcessBuilder pb = new ProcessBuilder(ffprobe, "/path/to/video.mp4");
pb.inheritIO().start().waitFor();
Copyright © 2020. All rights reserved.