15 lines
352 B
Python
15 lines
352 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import gi
|
|
gi.require_version('Gst', '1.0')
|
|
from gi.repository import Gst # noqa: E402
|
|
|
|
Gst.init(None)
|
|
_player = Gst.ElementFactory.make("playbin", "player")
|
|
|
|
|
|
def connect_plugin(sound_file):
|
|
_player.set_state(Gst.State.NULL)
|
|
_player.set_property("uri", "file://" + sound_file)
|
|
_player.set_state(Gst.State.PLAYING)
|