使用gstreamer,播放播放列表而不停止接收器

时间:2015-06-06 19:36:40

标签: python gstreamer python-gstreamer pygst

我想在我的音乐播放器中添加播放列表功能。列表中的第一首曲目播放。然后键入" next"在控制台和击中返回应该开始播放下一首曲目,但歌曲停止播放,没有任何反应。

之前将状态设置为GST_STATE_READY而不是GST_STATE_NULL 改变"位置"也行不通。

有人可以更正我的代码并告诉我哪里错了吗?

import pygst, gobject, time, sys
pygst.require("0.10")
import gst

class AudioPlayer:
         def __init__(self):
                 self.songs = ['Holy Diver.mp3','Paranoid.mp3','Fast as a Shark.mp3']

                 # create a new gstreamer pipeline
                 self.pipeline = gst.Pipeline("mypipeline")

                 # add a file source to the pipeline
                 self.filesrc = gst.element_factory_make("filesrc","source")
                 self.pipeline.add(self.filesrc)

                 # add a generic decoder to the pipeline and link it to thesource
                 self.decode = gst.element_factory_make("decodebin","decode")
                 self.decode.connect("new-decoded-pad", self.decode_link)
                 self.pipeline.add(self.decode)
                 self.filesrc.link(self.decode)

                 # add a convertor to the pipeline
                 self.convert = gst.element_factory_make("audioconvert","convert")
                 self.pipeline.add(self.convert)

                 # add an alsa sink to the pipeline and link it to theconvertor
                 self.sink = gst.element_factory_make("alsasink", "sink")
                 self.pipeline.add(self.sink)
                 self.convert.link(self.sink)

                 # start playing
                 self.filesrc.set_property("location", self.songs.pop(0))
                 self.pipeline.set_state(gst.STATE_PLAYING)

         def decode_link(self, dbin, pad, islast):
                 pad.link(self.convert.get_pad("sink"))

         def next(self):
                 self.convert.unlink(self.sink)
                 self.filesrc.set_state(gst.STATE_NULL)
                 self.filesrc.set_property("location", self.songs.pop(0))
                 self.convert.link(self.sink)
                 self.pipeline.set_state(gst.STATE_PLAYING)
                 return True

player = AudioPlayer()
loop = gobject.MainLoop()
gobject.threads_init()
context = loop.get_context()

while 1:
         value = sys.stdin.readline()
         if value == "next\n":
                 player.next()
         context.iteration(True)

1 个答案:

答案 0 :(得分:1)

接下来你将错误的东西设为NULL:
self.filesrc.set_state(gst.STATE_NULL)

应该是 self.pipeline.set_state(gst.STATE_NULL)

这是你问题的关键,你不能停止管道,但你也不需要取消链接和重新链接self.convert,但这是一个副作用。