将decodebin与adder一起使用

时间:2011-01-20 17:09:03

标签: python gstreamer

我正在尝试创建一个具有恒定音频源(在本例中为audiotestsrc)的音频流,我偶尔可以通过play_file从文件(各种格式,这就是我使用decodebin的原因)中添加声音() 方法。我为此目的使用加法器。但是,由于某种原因,我无法正确添加第二个声音。程序不仅不正确地播放声音,而且还完全停止了原始的audiotestsrc。到目前为止,这是我的代码:

import gst; import gobject; gobject.threads_init()

pipe = gst.Pipeline()

adder = gst.element_factory_make("adder", "adder")

first_sink = adder.get_request_pad('sink%d')
pipe.add(adder)

test = gst.element_factory_make("audiotestsrc", "test")
test.set_property('freq', 100)
pipe.add(test)
testsrc = test.get_pad("src")
testsrc.link(first_sink)

output = gst.element_factory_make("alsasink", "output")
pipe.add(output)
adder.link(output)

pipe.set_state(gst.STATE_PLAYING)

raw_input('Press key to play sound')

def play_file(filename):
    adder_sink = adder.get_request_pad('sink%d')

    audiofile = gst.element_factory_make('filesrc', 'audiofile')
    audiofile.set_property('location', filename)

    decoder = gst.element_factory_make('decodebin', 'decoder')

    def on_new_decoded_pad(element, pad, last):
        pad.link(adder_sink)

    decoder.connect('new-decoded-pad', on_new_decoded_pad)

    pipe.add(audiofile)
    pipe.add(decoder)
    audiofile.link(decoder)

    pipe.set_state(gst.STATE_PAUSED)
    pipe.set_state(gst.STATE_PLAYING)


play_file('sample.wav')

while True:
    pass

1 个答案:

答案 0 :(得分:4)

感谢#gstreamer上的moch,我意识到所有加法器源都应该具有相同的格式。我修改了上面的脚本,以便在加法器中的每个输入之前放置大写"audio/x-raw-int, endianness=(int)1234, channels=(int)1, width=(int)16, depth=(int)16, signed=(boolean)true, rate=(int)11025"(示例)。