* morituri/common/encode.py:
Collect all tags by replacing from newer tag messages. Gets more than bitrate from flacs now.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2012-12-06 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* morituri/common/encode.py:
|
||||
Collect all tags by replacing from newer tag messages.
|
||||
Gets more than bitrate from flacs now.
|
||||
|
||||
2012-12-06 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* morituri/rip/debug.py:
|
||||
|
||||
@@ -331,7 +331,12 @@ class TagReadTask(ctask.GstPipelineTask):
|
||||
|
||||
def bus_tag_cb(self, bus, message):
|
||||
taglist = message.parse_tag()
|
||||
self.taglist = taglist
|
||||
self.debug('tag_cb, %d tags' % len(taglist.keys()))
|
||||
if not self.taglist:
|
||||
self.taglist = taglist
|
||||
else:
|
||||
import gst
|
||||
self.taglist = self.taglist.merge(taglist, gst.TAG_MERGE_REPLACE)
|
||||
|
||||
|
||||
class TagWriteTask(ctask.LoggableTask):
|
||||
|
||||
Reference in New Issue
Block a user