java 实现视频转换通用工具类:获取视频元数据信息(一)

java 实现视频转换通用工具类:视频相互转换-Ffmpeg(三)

1.ffmpeg 截图,自定义命令行

  1. /**
  2. *  ffmpeg 截图,自定义命令行
  3. * @param srcVideoPath 源文件
  4. * @param shellLine 自定义shell命令行
  5. * @param tarImagePath 目标文件
  6. * @return
  7. */
  8. public static boolean processFfmpegImage(String srcVideoPath,String shellLine,String tarImagePath) {
  9. if (!checkfile(srcVideoPath)) {
  10. logger.error("【" + srcVideoPath + "】  不存在 !");
  11. return false;
  12. }
  13. List<String> commend = new java.util.ArrayList<String>();
  14. commend.add(ffmpegPath);
  15. commend.add("-i");
  16. commend.add(srcVideoPath);
  17. commend.add(shellLine);
  18. commend.add(tarImagePath);
  19. try {
  20. ProcessBuilder builder = new ProcessBuilder();
  21. builder.command(commend);
  22. Process process = builder.start();
  23. InputStream is = process.getErrorStream();
  24. InputStreamReader inputStreamReader = new InputStreamReader(is);
  25. BufferedReader inputBufferedReader = new BufferedReader(
  26. inputStreamReader);
  27. String line = null;
  28. StringBuilder stringBuilder = new StringBuilder();
  29. while ((line = inputBufferedReader.readLine()) != null) {
  30. stringBuilder.append(line);
  31. }
  32. inputBufferedReader.close();
  33. inputBufferedReader = null;
  34. inputStreamReader.close();
  35. inputStreamReader = null;
  36. is.close();
  37. is = null;
  38. if (!checkfile(tarImagePath)) {
  39. logger.info(tarImagePath + " is not exit! processFfmpegImage 转换不成功 !");
  40. return false;
  41. }
  42. return true;
  43. } catch (Exception e) {
  44. logger.error("【" + srcVideoPath + "】  processFfmpegImage 转换不成功 !");
  45. return false;
  46. }
  47. }

2.ffmpeg 截图,并指定图片的大小

  1. /**
  2. * ffmpeg 截图,并指定图片的大小
  3. * @param srcVideoPath
  4. * @param tarImagePath 截取后图片路径
  5. * @param width 截图的宽
  6. * @param hight 截图的高
  7. * @param offsetValue 表示相对于文件开始处的时间偏移值 可以是分秒
  8. * @param vframes 表示截图的桢数
  9. *
  10. * @return
  11. */
  12. public static boolean processFfmpegImage(String srcVideoPath,String tarImagePath,int width,int hight,float offsetValue,float vframes) {
  13. if (!checkfile(srcVideoPath)) {
  14. logger.error("【" + srcVideoPath + "】  不存在 !");
  15. return false;
  16. }
  17. List<String> commend = new java.util.ArrayList<String>();
  18. commend.add(ffmpegPath);
  19. commend.add("-i");
  20. commend.add(srcVideoPath);
  21. commend.add("-y");
  22. commend.add("-f");
  23. commend.add("image2");
  24. commend.add("-ss");
  25. commend.add(offsetValue+"");  //在视频的某个插入时间截图,例子为5秒后
  26. commend.add("-vframes");
  27. commend.add(vframes + "");  //截图的桢数
  28. commend.add("-s");
  29. commend.add(width + "x" +hight); //截图的的大小
  30. commend.add(tarImagePath);
  31. try {
  32. ProcessBuilder builder = new ProcessBuilder();
  33. builder.command(commend);
  34. Process process = builder.start();
  35. doWaitFor(process);
  36. process.destroy();
  37. if (!checkfile(tarImagePath)) {
  38. logger.info(tarImagePath + " is not exit!  processFfmpegImage 转换不成功 !");
  39. return false;
  40. }
  41. return true;
  42. } catch (Exception e) {
  43. logger.error("【" + srcVideoPath + "】 processFfmpegImage  转换不成功 !");
  44. return false;
  45. }
  46. }
更多0
04-16 02:49