REM mp4  (H.264 / ACC)
ffmpeg.exe -i %1 -b 1500k -vcodec libx264 -vpre slow -vpre baseline                                           -g 30 -s 640x360 %1.mp4
REM webm (VP8 / Vorbis)
ffmpeg.exe -i %1 -b 1500k -vcodec libvpx                              -acodec libvorbis -ab 160000 -f webm    -g 30 -s 640x360 %1.webm
REM ogv  (Theora / Vorbis)
ffmpeg.exe -i %1 -b 1500k -vcodec libtheora                           -acodec libvorbis -ab 160000            -g 30 -s 640x360 %1.ogv
REM jpeg (screenshot at 10 seconds)
ffmpeg.exe -i %1 -ss 00:10 -vframes 1 -r 1 -s 640x360 -f image2 %1.jpg

相关文章:

  • 2021-09-27
  • 2022-12-23
  • 2021-07-20
  • 2021-08-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-02
猜你喜欢
  • 2021-11-25
  • 2021-11-21
  • 2022-02-17
  • 2021-08-16
  • 2021-10-11
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案