cc-4105: added replay replay gain integration with mm2

This commit is contained in:
Rudi Grinberg 2012-08-09 11:05:59 -04:00
parent 806f68ce57
commit 420182465e
2 changed files with 9 additions and 1 deletions

View file

@ -22,9 +22,15 @@ class ReplayGainUpdater(Thread, Loggable):
automatically have its ReplayGain value calculated.
"""
@staticmethod
def start_reply_gain():
me = ReplayGainUpdater()
me.daemon = True
me.start()
def __init__(self):
Thread.__init__(self)
self.api_client = api_client.AirtimeApiClient()
self.api_client = api_client.AirtimeApiClient.create_right_config()
def main(self):