* Remove awful StoredFile::uploadFile() function * Massive airtime_analyzer commenting and cleanup * Cleaned up the upload code * Temporarily disabled the liquidsoap playability test.
14 lines
288 B
Python
14 lines
288 B
Python
from analyzer import Analyzer
|
|
|
|
''' TODO: ReplayGain is currently calculated by pypo but it should
|
|
be done here in the analyzer.
|
|
'''
|
|
class ReplayGainAnalyzer(Analyzer):
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
@staticmethod
|
|
def analyze(filename):
|
|
pass
|
|
|