sound_gstreamer pylint fixes

v0.6
lakshyacis 4 years ago
parent a86c5188c4
commit a86e43c108
No known key found for this signature in database
GPG Key ID: D2C539C8EC63E9EB

@ -1,5 +1,8 @@
# -*- coding: utf-8 -*-
"""
src/plugins/sound_gstreamer.py
===================================
"""
import gi
gi.require_version('Gst', '1.0')
from gi.repository import Gst # noqa: E402
@ -9,6 +12,7 @@ _player = Gst.ElementFactory.make("playbin", "player")
def connect_plugin(sound_file):
"""Entry point for sound file"""
_player.set_state(Gst.State.NULL)
_player.set_property("uri", "file://" + sound_file)
_player.set_state(Gst.State.PLAYING)

Loading…
Cancel
Save