- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道 imagemagick
可能会失败但是 mozjpeg 产生的图像要小得多,这是可取的。
我希望通过 mozjpeg 提取视频的所有帧并将其转换为 JPEG。
我试过的:
$ ind = 1
$ ffmpeg -hide_banner -ss 00:00:10 -i IN.webm -t 00:00:02 -r 24 -c:v bmp -f image2pipe pipe:1 | \
cjpeg - workDir/$((ind++)).jpeg
av_interleaved_write_frame(): Broken pipe time=00:00:00.00 bitrate=N/A speed= 0x
Error writing trailer of pipe:1: Broken pipe
frame= 1 fps=0.0 q=-0.0 Lsize= 6075kB time=00:00:00.04 bitrate=1194394.4kbits/s speed=0.0765x
video:6075kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.000000%
Conversion failed!
最佳答案
cjpeg
接受标准输入管道输入,但似乎一次只接受一个输入。
输出图像,然后循环 cjpeg
:
ffmpeg -ss 00:00:10 -i IN.webm -t 00:00:02 %04d.bmp
for f in *.bmp; do cjpeg -quality 75 -outfile "workDir/${f%.bmp}.jpg" "$f"; done
-r 24
:如果您强制使用与输入不匹配的任意帧速率,使用它可能会导致丢帧或重复帧。省略
-r
和
ffmpeg
将输出所有帧。
关于ffmpeg - 如何使用 FFMPEG 提取无损图像序列并将它们传送到 mozjpeg 的 cjpeg?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58748355/
我发现关于这个问题的两篇博客文章略有冲突,我在这里总结一下: jpegoptim and jpegtran perform identically and produce identical resu
我想批量优化图像,我阅读了 mozjpeg 的用法,没有如何在服务器上批量工作。 你能告诉我如何优化它吗? 谢谢你。 最佳答案 在 Ubuntu 16.04 上测试,使用 mozjpeg 预编译的二进
从昨天开始,我无法将我的 Gatsby 站点部署到我们的服务器,build 提示 mozjpeg 库。有没有人遇到过这个错误? 我试过: 锁定 gatsby-cli 添加 automake linux
我一直在尝试在我的 Go 应用程序中使用 mozjpeg 进行 JPEG 压缩,因为当通过它提供的 cjpeg 命令行实用程序使用时,它的质量似乎非常好。 但是,使用我的应用程序压缩的图片质量较差 -
我知道 imagemagick 可能会失败但是 mozjpeg 产生的图像要小得多,这是可取的。 我希望通过 mozjpeg 提取视频的所有帧并将其转换为 JPEG。 我试过的: $ ind = 1
我正在运行 npm install 并收到以下错误: > mozjpeg@5.0.0 postinstall /home/MyUser/public_html/node_modules/mozjpeg
我是一名优秀的程序员,十分优秀!