<div>Hi,<br></div><div><br></div><div>What is the correct method for routing through jackaudiosink with GstPlayer? I cannot find any examples for this online.<br></div><div><br></div><div>Here is my attempt:</div><div><br></div><div>from gi.repository import Gst<br></div><div>from gi.repository import GstPlayer<br></div><div><br></div><div>Gst.init(None)<br></div><div>player = GstPlayer.Player()<br></div><div><br></div><div>pipeline = player.get_pipeline()<br></div><div>sink = Gst.ElementFactory.make("jackaudiosink", "sink")<br></div><div>pipeline.add(sink)<br></div><div><br></div><div>p.set_uri('file:///home/user/Music/test.wav')                                                                              p.play()<br></div><div><br></div><div><br></div><div>--</div><div>Patrick Shirkey</div>