mirror of
https://github.com/beetbox/beets.git
synced 2025-12-26 10:34:09 +01:00
Merge pull request #2644 from pprkut/gstreamer
Fix album replaygain calculation with gstreamer backend
This commit is contained in:
commit
ce40d85151
2 changed files with 6 additions and 0 deletions
|
|
@ -606,6 +606,10 @@ class GStreamerBackend(Backend):
|
|||
self._decbin.sync_state_with_parent()
|
||||
self._decbin.get_state(self.Gst.CLOCK_TIME_NONE)
|
||||
|
||||
self._decbin.link(self._conv)
|
||||
self._pipe.set_state(self.Gst.State.READY)
|
||||
self._pipe.set_state(self.Gst.State.PLAYING)
|
||||
|
||||
return True
|
||||
|
||||
def _set_next_file(self):
|
||||
|
|
|
|||
|
|
@ -51,6 +51,8 @@ Fixes:
|
|||
analysis tool produced non-ASCII metadata. :bug:`2673`
|
||||
* :doc:`/plugins/duplicates`: Fix the `--key` command line option, which was
|
||||
ignored.
|
||||
* :doc:`/plugins/replaygain`: Fix album replaygain calculation with the
|
||||
gstreamer backend. :bug:`2636`
|
||||
|
||||
For developers:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue