无法通过 stdout 从 ffmpeg 传输 Ogg
要找到问题的关键,为什么第一个命令可以工作,但第二个命令却不能。它们生成的文件大小略有不同,内容也不同:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
OGG 可能需要可查找。来自 ffmpeg 文档:
使用 ffmpeg 写入标准输出:
...这与...相同。 。
请注意,某些格式(通常是 MOV)要求输出协议可查找,因此它们将因管道输出协议而失败
OGG might be required to be seekable. From ffmpeg docs:
For writing to stdout with ffmpeg:
...this is the same as...
Note that some formats (typically MOV), require the output protocol to be seekable, so they will fail with the pipe output protocol.