/usr/share/pyshared/quodlibet/player/gstbe.py is in exfalso 3.0.2-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 | # Copyright 2004-2011 Joe Wreschnig, Michael Urman, Steven Robertson,
# 2011-2013 Christoph Reiter
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation
import gi
try:
gi.require_version("Gst", "1.0")
gi.require_version("GstPbutils", "1.0")
except ValueError, e:
raise ImportError(e)
from gi.repository import Gtk, Gst, GLib, GstPbutils
import os
import threading
from quodlibet import config
from quodlibet import const
from quodlibet.util import fver, sanitize_tags
from quodlibet.player import PlayerError
from quodlibet.player._base import BasePlayer
from quodlibet.player._gstutils import *
from quodlibet.qltk.msg import ErrorMessage
from quodlibet.qltk.notif import Task
from quodlibet.qltk.entry import UndoEntry
from quodlibet.qltk.x import Button
STATE_CHANGE_TIMEOUT = Gst.SECOND * 4
class GStreamerPlayer(BasePlayer, GStreamerPluginHandler):
__gproperties__ = BasePlayer._gproperties_
__gsignals__ = BasePlayer._gsignals_
_paused = True
_in_gapless_transition = False
_inhibit_play = False
_last_position = 0
_task = None
bin = None
_vol_element = None
_use_eq = False
_eq_element = None
__atf_id = None
__bus_id = None
__info_buffer = None
def PlayerPreferences(self):
e = UndoEntry()
e.set_tooltip_text(_("The GStreamer output pipeline used for "
"playback, such as 'alsasink device=default'. "
"Leave blank for default pipeline."))
e.set_text(config.get('player', 'gst_pipeline'))
def changed(entry):
config.set('player', 'gst_pipeline', entry.get_text())
e.connect('changed', changed)
pipe_label = Gtk.Label(label=_('_Output pipeline:'))
pipe_label.set_use_underline(True)
pipe_label.set_mnemonic_widget(e)
apply_button = Gtk.Button(stock=Gtk.STOCK_APPLY)
def format_buffer(scale, value):
return _("%.1f seconds") % value
def scale_changed(scale):
config.set("player", "gst_buffer", scale.get_value())
if self.bin:
duration = int(scale.get_value() * 1000) * Gst.MSECOND
self.bin.set_property('buffer-duration', duration)
duration = config.getfloat("player", "gst_buffer")
scale = Gtk.HScale.new(Gtk.Adjustment(duration, 0.2, 10))
scale.set_value_pos(Gtk.PositionType.RIGHT)
scale.set_show_fill_level(True)
scale.connect('format-value', format_buffer)
scale.connect('value-changed', scale_changed)
buffer_label = Gtk.Label(label=_('_Buffer duration:'))
buffer_label.set_use_underline(True)
buffer_label.set_mnemonic_widget(scale)
def rebuild_pipeline(*args):
self._rebuild_pipeline()
apply_button.connect('clicked', rebuild_pipeline)
widgets = [(pipe_label, e, apply_button),
(buffer_label, scale, None),
]
table = Gtk.Table(len(widgets), 3)
table.set_col_spacings(6)
table.set_row_spacings(6)
for i, (left, middle, right) in enumerate(widgets):
left.set_alignment(0.0, 0.5)
table.attach(left, 0, 1, i, i + 1,
xoptions=Gtk.AttachOptions.FILL |
Gtk.AttachOptions.SHRINK)
if right:
table.attach(middle, 1, 2, i, i + 1)
table.attach(right, 2, 3, i, i + 1,
xoptions=Gtk.AttachOptions.FILL |
Gtk.AttachOptions.SHRINK)
else:
table.attach(middle, 1, 3, i, i + 1)
vbox = Gtk.VBox(spacing=6)
vbox.pack_start(table, True, True, 0)
if const.DEBUG:
def print_bin(player):
if player.bin:
map(print_, bin_debug([player.bin]))
else:
print_e("No active pipeline.")
b = Button("Print Pipeline", Gtk.STOCK_DIALOG_INFO)
b.connect_object('clicked', print_bin, self)
vbox.pack_start(b, True, True, 0)
return vbox
def __init__(self, librarian=None):
GStreamerPluginHandler.__init__(self)
super(GStreamerPlayer, self).__init__()
self.version_info = "GStreamer: %s" % fver(Gst.version())
self._librarian = librarian
self._pipeline_desc = None
def destroy(self):
self.__destroy_pipeline()
@property
def name(self):
name = "GStreamer"
if self._pipeline_desc:
name += " (%s)" % self._pipeline_desc
return name
def __init_pipeline(self):
"""Creates a gstreamer pipeline with the following elements
For newer gstreamer versions:
playbin2 -> bin [ <- ghostpad -> queue -> volume -> capsfilter
-> equalizer -> audioconvert -> user defined elements
-> gconf/autoaudiosink ]
For older versions:
playbin -> bin [ <- ghostpad -> capsfilter -> equalizer
-> audioconvert -> user defined elements
-> gconf/autoaudiosink ]
"""
if self.bin:
return True
pipeline = config.get("player", "gst_pipeline")
pipeline, self._pipeline_desc = GStreamerSink(pipeline)
if not pipeline:
return False
if self._use_eq and Gst.ElementFactory.find('equalizer-10bands'):
# The equalizer only operates on 16-bit ints or floats, and
# will only pass these types through even when inactive.
# We push floats through to this point, then let the second
# audioconvert handle pushing to whatever the rest of the
# pipeline supports. As a bonus, this seems to automatically
# select the highest-precision format supported by the
# rest of the chain.
filt = Gst.ElementFactory.make('capsfilter', None)
filt.set_property('caps',
Gst.Caps.from_string('audio/x-raw,format=F32LE'))
eq = Gst.ElementFactory.make('equalizer-10bands', None)
self._eq_element = eq
self.update_eq_values()
conv = Gst.ElementFactory.make('audioconvert', None)
resample = Gst.ElementFactory.make('audioresample', None)
pipeline = [filt, eq, conv, resample] + pipeline
# playbin2 has started to control the volume through pulseaudio,
# which means the volume property can change without us noticing.
# Use our own volume element for now until this works with PA.
self._vol_element = Gst.ElementFactory.make('volume', None)
pipeline.insert(0, self._vol_element)
# Get all plugin elements and append audio converters.
# playbin already includes one at the end
plugin_pipeline = []
for plugin in self._get_plugin_elements():
plugin_pipeline.append(plugin)
plugin_pipeline.append(
Gst.ElementFactory.make('audioconvert', None))
plugin_pipeline.append(
Gst.ElementFactory.make('audioresample', None))
pipeline = plugin_pipeline + pipeline
bufbin = Gst.Bin()
map(bufbin.add, pipeline)
if len(pipeline) > 1:
if not link_many(pipeline):
print_w("Could not link GStreamer pipeline")
self.__destroy_pipeline()
return False
# Test to ensure output pipeline can preroll
bufbin.set_state(Gst.State.READY)
result, state, pending = bufbin.get_state(timeout=STATE_CHANGE_TIMEOUT)
if result == Gst.StateChangeReturn.FAILURE:
bufbin.set_state(Gst.State.NULL)
self.__destroy_pipeline()
return False
# Make the sink of the first element the sink of the bin
gpad = Gst.GhostPad.new('sink', pipeline[0].get_static_pad('sink'))
bufbin.add_pad(gpad)
self.bin = Gst.ElementFactory.make('playbin', None)
self.__atf_id = self.bin.connect('about-to-finish',
self.__about_to_finish)
duration = config.getfloat("player", "gst_buffer")
duration = int(duration * 1000) * Gst.MSECOND
self.bin.set_property('buffer-duration', duration)
self.bin.set_property('audio-sink', bufbin)
# by default playbin will render video -> suppress using fakesink
fakesink = Gst.ElementFactory.make('fakesink', None)
self.bin.set_property('video-sink', fakesink)
# disable all video/text decoding in playbin
GST_PLAY_FLAG_VIDEO = 1 << 0
GST_PLAY_FLAG_TEXT = 1 << 2
flags = self.bin.get_property("flags")
flags &= ~(GST_PLAY_FLAG_VIDEO | GST_PLAY_FLAG_TEXT)
self.bin.set_property("flags", flags)
# ReplayGain information gets lost when destroying
self.volume = self.volume
bus = self.bin.get_bus()
bus.add_signal_watch()
self.__bus_id = bus.connect('message', self.__message, self._librarian)
if self.song:
self.bin.set_property('uri', self.song("~uri"))
return True
def __destroy_pipeline(self):
self._remove_plugin_elements()
if self.__bus_id:
bus = self.bin.get_bus()
bus.disconnect(self.__bus_id)
bus.remove_signal_watch()
self.__bus_id = False
if self.__atf_id:
self.bin.disconnect(self.__atf_id)
self.__atf_id = False
if self.bin:
self.bin.set_state(Gst.State.NULL)
self.bin.get_state(timeout=STATE_CHANGE_TIMEOUT)
self.bin = None
if self._task:
self._task.finish()
self._task = None
self._in_gapless_transition = False
self._inhibit_play = False
self._last_position = 0
self._vol_element = None
self._eq_element = None
def _rebuild_pipeline(self):
"""If a pipeline is active, rebuild it and restore vol, position etc"""
if not self.bin:
return
paused = self.paused
pos = self.get_position()
self.__destroy_pipeline()
self.paused = True
self.__init_pipeline()
self.paused = paused
self.seek(pos)
def __message(self, bus, message, librarian):
if message.type == Gst.MessageType.EOS:
print_d("Stream EOS")
if not self._in_gapless_transition:
self._source.next_ended()
self._end(False)
elif message.type == Gst.MessageType.TAG:
self.__tag(message.parse_tag(), librarian)
elif message.type == Gst.MessageType.ERROR:
err, debug = message.parse_error()
err = str(err).decode(const.ENCODING, 'replace')
self._error(err)
elif message.type == Gst.MessageType.BUFFERING:
percent = message.parse_buffering()
self.__buffering(percent)
elif message.type == Gst.MessageType.STREAM_START:
if self._in_gapless_transition:
print_d("Stream changed")
self._end(False)
elif message.type == Gst.MessageType.ELEMENT:
message_name = message.get_structure().get_name()
if message_name == "missing-plugin":
self.stop()
details = \
GstPbutils.missing_plugin_message_get_installer_detail(
message)
if details is not None:
message = (_(
"No GStreamer element found to handle the following "
"media format: %(format_details)r") %
{"format_details": details})
print_w(message)
context = GstPbutils.InstallPluginsContext.new()
# TODO: track success
def install_done_cb(*args):
Gst.update_registry()
res = GstPbutils.install_plugins_async(
[details], context, install_done_cb, None)
print_d("Gstreamer plugin install result: %r" % res)
if res in (GstPbutils.InstallPluginsReturn.HELPER_MISSING,
GstPbutils.InstallPluginsReturn.INTERNAL_FAILURE):
self._error(message)
return True
def __about_to_finish(self, pipeline):
print_d("About to finish")
# this can trigger twice, see issue 987
if self._in_gapless_transition:
return
self._in_gapless_transition = True
def change_in_main_loop(event, source):
source.next_ended()
event.set()
# push in the main loop and wait for it to finish
event = threading.Event()
GLib.idle_add(change_in_main_loop, event, self._source,
priority=GLib.PRIORITY_HIGH)
event.wait()
song = self._source.current
bin = self.bin
if song and bin:
bin.set_property('uri', song("~uri"))
def stop(self):
super(GStreamerPlayer, self).stop()
self.__destroy_pipeline()
def do_set_property(self, property, v):
if property.name == 'volume':
self._volume = v
if self.song and config.getboolean("player", "replaygain"):
profiles = filter(None, self.replaygain_profiles)[0]
fb_gain = config.getfloat("player", "fallback_gain")
pa_gain = config.getfloat("player", "pre_amp_gain")
scale = self.song.replay_gain(profiles, pa_gain, fb_gain)
v = min(10.0, max(0.0, v * scale)) # volume supports 0..10
if self.bin:
self._vol_element.set_property('volume', v)
else:
raise AttributeError
def get_position(self):
"""Return the current playback position in milliseconds,
or 0 if no song is playing."""
p = self._last_position
if self.song and self.bin:
ok, p = self.bin.query_position(Gst.Format.TIME)
if ok:
p //= Gst.MSECOND
# During stream seeking querying the position fails.
# Better return the last valid one instead of 0.
self._last_position = p
return p
def __buffering(self, percent):
def stop_buf(*args):
self.paused = True
if percent < 100:
if self._task:
self._task.update(percent / 100.0)
else:
self._task = Task(_("Stream"), _("Buffering"), stop=stop_buf)
elif self._task:
self._task.finish()
self._task = None
self._set_inhibit_play(percent < 100)
def _set_inhibit_play(self, inhibit):
"""Set the inhibit play flag. If set, this will pause the pipeline
without giving the appearance of being paused to the outside. This
is for internal uses of pausing, such as for waiting while the buffer
is being filled for network streams."""
if inhibit == self._inhibit_play:
return
self._inhibit_play = inhibit
if inhibit:
self.bin.set_state(Gst.State.PAUSED)
elif not self.paused:
self.bin.set_state(Gst.State.PLAYING)
def _set_paused(self, paused):
if paused == self._paused:
return
self._paused = paused
if not self.song:
if paused:
# Something wants us to pause between songs, or when
# we've got no song playing (probably StopAfterMenu).
self.emit('paused')
self.__destroy_pipeline()
return
if paused:
if self.bin:
if self.song.is_file:
# fast path
self.bin.set_state(Gst.State.PAUSED)
else:
# seekable streams (seem to) have a duration >= 0
ok, d = self.bin.query_duration(Gst.Format.TIME)
if not ok:
d = -1
if d >= 0:
self.bin.set_state(Gst.State.PAUSED)
else:
# destroy so that we rebuffer on resume
self.__destroy_pipeline()
else:
if self.bin:
# don't start while we are buffering
if not self._inhibit_play:
self.bin.set_state(Gst.State.PLAYING)
else:
if self.__init_pipeline():
self.bin.set_state(Gst.State.PLAYING)
else:
# Backend error; show message and halt playback
ErrorMessage(None, _("Output Error"),
_("GStreamer output pipeline could not be "
"initialized. The pipeline might be invalid, "
"or the device may be in use. Check the "
"player preferences.")).run()
self.emit((paused and 'paused') or 'unpaused')
self._paused = paused = True
self.emit((paused and 'paused') or 'unpaused')
def _get_paused(self):
return self._paused
paused = property(_get_paused, _set_paused)
def _error(self, message):
print_w(message)
self.emit('error', self.song, message)
if not self.paused:
self.next()
def seek(self, pos):
"""Seek to a position in the song, in milliseconds."""
# Don't allow seeking during gapless. We can't go back to the old song.
if not self.song or self._in_gapless_transition:
return
if self.__init_pipeline():
# ensure any pending state changes have completed and we have
# at least paused state, so we can seek
state = self.bin.get_state(timeout=STATE_CHANGE_TIMEOUT)[1]
if state < Gst.State.PAUSED:
self.bin.set_state(Gst.State.PAUSED)
self.bin.get_state(timeout=STATE_CHANGE_TIMEOUT)
pos = max(0, int(pos))
gst_time = pos * Gst.MSECOND
event = Gst.Event.new_seek(
1.0, Gst.Format.TIME, Gst.SeekFlags.FLUSH,
Gst.SeekType.SET, gst_time, Gst.SeekType.NONE, 0)
if self.bin.send_event(event):
self._last_position = pos
self.emit('seek', self.song, pos)
def _end(self, stopped):
print_d("End song")
song, info = self.song, self.info
# set the new volume before the signals to avoid delays
if self._in_gapless_transition:
self.song = self._source.current
self.volume = self.volume
# We need to set self.song to None before calling our signal
# handlers. Otherwise, if they try to end the song they're given
# (e.g. by removing it), then we get in an infinite loop.
self.__info_buffer = self.song = self.info = None
if song is not info:
self.emit('song-ended', info, stopped)
self.emit('song-ended', song, stopped)
# Then, set up the next song.
self.song = self.info = self._source.current
self.emit('song-started', self.song)
print_d("Next song")
if self.song is not None:
if not self._in_gapless_transition:
self.volume = self.volume
# Due to extensive problems with playbin2, we destroy the
# entire pipeline and recreate it each time we're not in
# a gapless transition.
self.__destroy_pipeline()
if not self.__init_pipeline():
self.paused = True
if self.bin:
if self.paused:
self.bin.set_state(Gst.State.PAUSED)
else:
self.bin.set_state(Gst.State.PLAYING)
else:
self.__destroy_pipeline()
self.paused = True
self._in_gapless_transition = False
def __tag(self, tags, librarian):
if self.song and self.song.multisong:
self._fill_stream(tags, librarian)
elif self.song and self.song.fill_metadata:
pass
def _fill_stream(self, tags, librarian):
# get a new remote file
new_info = self.__info_buffer
if not new_info:
new_info = type(self.song)(self.song["~filename"])
new_info.multisong = False
new_info.streamsong = True
# copy from the old songs
# we should probably listen to the library for self.song changes
new_info.update(self.song)
new_info.update(self.info)
changed = False
info_changed = False
tags = TagListWrapper(tags, merge=True)
tags = parse_gstreamer_taglist(tags)
for key, value in sanitize_tags(tags, stream=False).iteritems():
if self.song.get(key) != value:
changed = True
self.song[key] = value
for key, value in sanitize_tags(tags, stream=True).iteritems():
if new_info.get(key) != value:
info_changed = True
new_info[key] = value
if info_changed:
# in case the title changed, make self.info a new instance
# and emit ended/started for the the old/new one
if self.info.get("title") != new_info.get("title"):
if self.info is not self.song:
self.emit('song-ended', self.info, False)
self.info = new_info
self.__info_buffer = None
self.emit('song-started', self.info)
else:
# in case title didn't changed, update the values of the
# old instance if there is one and tell the library.
if self.info is not self.song:
self.info.update(new_info)
librarian.changed([self.info])
else:
# So we don't loose all tags before the first title
# save it for later
self.__info_buffer = new_info
if changed:
librarian.changed([self.song])
@property
def eq_bands(self):
if Gst.ElementFactory.find('equalizer-10bands'):
return [29, 59, 119, 237, 474, 947, 1889, 3770, 7523, 15011]
else:
return []
def update_eq_values(self):
need_eq = any(self._eq_values)
if need_eq != self._use_eq:
self._use_eq = need_eq
self._rebuild_pipeline()
if self._eq_element:
for band, val in enumerate(self._eq_values):
self._eq_element.set_property('band%d' % band, val)
def can_play_uri(self, uri):
if not Gst.uri_is_valid(uri):
return False
try:
Gst.Element.make_from_uri(Gst.URIType.SRC, uri, '')
except GLib.GError:
return False
return True
def init(librarian):
# Enable error messages by default
if Gst.debug_get_default_threshold() == Gst.DebugLevel.NONE:
Gst.debug_set_default_threshold(Gst.DebugLevel.ERROR)
# the fluendo decoder is twice as slow as mad, but wins
# at autoplug because it has the same rank and f < m
# -> put it slightly behind mad or leave it if it already is
flu, mad = map(Gst.ElementFactory.find, ["flump3dec", "mad"])
if flu and mad:
flu.set_rank(min(flu.get_rank(), max(mad.get_rank() - 1, 0)))
if Gst.Element.make_from_uri(
Gst.URIType.SRC,
"file:///fake/path/for/gst", ""):
return GStreamerPlayer(librarian)
else:
raise PlayerError(
_("Unable to open input files"),
_("GStreamer has no element to handle reading files. Check "
"your GStreamer installation settings."))
|