cc-4105: added replay replay gain integration with mm2
This commit is contained in:
parent
806f68ce57
commit
420182465e
2 changed files with 9 additions and 1 deletions
|
@ -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):
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue