javacv 비디오 추출 프레임 의 실현 과정 상세 설명(코드 첨부)
maven 도입 절차
여기 서 바로 관건 적 인 조작:
/**
*
* @param file
* @param start
* @param end
*/
public static List<File> videoIntercept(File file, Integer start, Integer end) {
Frame frame = null;
List<File> files = Lists.newArrayList();
FFmpegFrameGrabber fFmpegFrameGrabber = new FFmpegFrameGrabber(file);
String filePath = "D://video//images//";
String fileTargetName = "movie";
try {
fFmpegFrameGrabber.start();
int ftp = fFmpegFrameGrabber.getLengthInFrames();
System.out.println(" ");
for (int i=0 ; i < ftp ; i++){
if( i >= start && i <= end){
frame = fFmpegFrameGrabber.grabImage();
doExecuteFrame(frame, filePath, fileTargetName, i ,files);
}
}
System.out.println("============ ============");
fFmpegFrameGrabber.stop();
} catch (IOException E) {
// Loggers.ERROR.error(" ", e);
}
return files;
}
public static void doExecuteFrame(Frame frame, String targetFilePath, String targetFileName, int index ,List<File> files) {
if ( frame == null || frame.image == null) {
return;
}
Java2DFrameConverter converter = new Java2DFrameConverter();
String imageMat = "jpg";
String fileName = targetFilePath + targetFileName + "_" + index + "." + imageMat;
BufferedImage bi = converter.getBufferedImage(frame);
File output = new File(fileName);
files.add(output);
try{
ImageIO.write(bi, imageMat, output);
} catch (IOException e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
List<File> files = videoIntercept(new File("D://video//1553583033205-480p.mp4"), 10, 20);
System.out.println(files);
}
우 리 는 폴 더 아래 에서 영상의 10,20 사이 의 프레임 을 추출 한 것 을 볼 수 있다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.