gpt4 book ai didi

c# - gstreamer:交织 2 个音频 - 链接错误

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:02:26 28 4
gpt4 key购买 nike

我正在尝试按照交错 GStreamer 文档中的说明交错两个音频文件:

gst-launch interleave name=i ! audioconvert ! wavenc ! filesink location=file.wav  filesrc location=file1.wav ! \
decodebin ! audioconvert ! "audio/x-raw-int,channels=1" ! queue ! i.sink0 filesrc location=file2.wav ! \
decodebin ! audioconvert ! "audio/x-raw-int,channels=1" ! queue ! i.sink1

但是执行这条命令会出现如下错误:

0:00:00.125000000 2264 00332BC0 错误 GST_PIPELINE grammar.tab.c:656:gst_parse_perform_link: 无法将 queue0 链接到 i

如果我删除第二个 filesrc 相关命令,即“filesrc location=file2.wav 之后的所有命令,命令运行正常。上面的命令有什么问题?

谢谢

最佳答案

尝试

gst-launch interleave name=i ! audioconvert ! wavenc ! filesink location=file.wav  filesrc location=file1.wav ! \
decodebin ! audioconvert ! "audio/x-raw-int,channels=1" ! queue ! i. filesrc location=file2.wav ! \
decodebin ! audioconvert ! "audio/x-raw-int,channels=1" ! queue ! i.

interleave 元素的接收器垫仅按要求提供,因此我敢打赌,当 gst-launch 尝试链接这些元素时,i.sink0 垫不存在。留下一个句点 (i.) 告诉 gst-launch 尝试所有垫子,直到找到合适的垫子。

除了最基本的示例之外,您最好使用简单的高级语言(如 python)手动创建管道。

另见

man gst-launch

关于c# - gstreamer:交织 2 个音频 - 链接错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2306605/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com