无法通过 stdout 从 ffmpeg 传输 Ogg

发布于 2024-09-19 12:03:07 字数 373 浏览 7 评论 0原文

要找到问题的关键,为什么第一个命令可以工作,但第二个命令却不能。它们生成的文件大小略有不同,内容也不同:

ffmpeg -i test.wav -f ogg -acodec libvorbis test.a.ogg

ffmpeg -i test.wav -f ogg -acodec libvorbis - > test.b.ogg

test.a.ogg 可以正常播放并且没有问题。 test.b.ogg 从源音频的中间开始,并在音频中出现停止和间隙。它也不报告轨道的长度。

我想将源文件即时转码为我正在编写的程序的 ogg,并且我正在尝试将标准输出从 ffmpeg 传输到我的程序中。将结果放入中间文件会降低性能,因为转码应该按需进行。

To get the the crux of it, why does the first command work, but the second command does not. They produce slightly differently sized files with different contents:

ffmpeg -i test.wav -f ogg -acodec libvorbis test.a.ogg

ffmpeg -i test.wav -f ogg -acodec libvorbis - > test.b.ogg

test.a.ogg will play properly and has no problems. test.b.ogg starts in the middle of the source audio and has stops and gaps in the audio. It also does not report the length of the track.

I want to transcode source files on the fly into ogg for a program I am writing and I am trying to pipe the stdout from ffmpeg into my program. Putting the results into an intermediary file will kill performance since the transcoding is supposed to happen on demand.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

呆头 2024-09-26 12:03:08

OGG 可能需要可查找。来自 ffmpeg 文档

使用 ffmpeg 写入标准输出:

ffmpeg -i test.wav -f avi pipe:1 | cat > test.avi

...这与...相同。 。

ffmpeg -i test.wav -f avi pipe: | cat > test.avi

请注意,某些格式(通常是 MOV)要求输出协议可查找,因此它们将因管道输出协议而失败

OGG might be required to be seekable. From ffmpeg docs:

For writing to stdout with ffmpeg:

ffmpeg -i test.wav -f avi pipe:1 | cat > test.avi

...this is the same as...

ffmpeg -i test.wav -f avi pipe: | cat > test.avi

Note that some formats (typically MOV), require the output protocol to be seekable, so they will fail with the pipe output protocol.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文