-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmain.pyw
174 lines (153 loc) · 7.97 KB
/
main.pyw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
from PyQt5 import QtWidgets,QtCore,QtGui,uic
import json
import sys
from core import copyband, akkomode
Config = json.loads(open('config.json','rb').read())
Ui_MainWindow, QtBaseClass = uic.loadUiType(Config['ui'])
class Core(QtCore.QThread):
Update = QtCore.pyqtSignal([float])
Finish = QtCore.pyqtSignal()
MsgBox = QtCore.pyqtSignal([str,str,int])
def __init__(self, parent, mode, **kwargs):
super(Core, self).__init__(parent)
self.mode = mode
self.kwargs = kwargs
def run(self):
if self.mode == 0:
copyband.core(
self.kwargs['input_path'],self.kwargs['output_path'],
self.kwargs['output_sr'],self.kwargs['inter_sr'],
self.kwargs['test_mode'],self.kwargs['opti_mode'],
self.kwargs['dyn_protect'],self.kwargs['only_envolope'],
self.kwargs['auto_opti'],self.kwargs['no_hpf'],
self.kwargs['harmonic_hpfc'],self.kwargs['harmonic_sft'],
self.kwargs['harmonic_gain'],self.kwargs['percussive_hpfc'],
self.kwargs['percussive_stf'],self.kwargs['percussive_gain'],
self.Update,self.MsgBox)
else:
akkomode.core(
self.kwargs['input_path'],self.kwargs['output_path'],
self.kwargs['output_sr'],self.kwargs['inter_sr'],
self.kwargs['test_mode'],self.kwargs['dyn_protect'],
self.kwargs['sv_l'],self.kwargs['sv_h'],
self.Update,self.MsgBox)
self.Finish.emit()
class MainUI(QtWidgets.QMainWindow, Ui_MainWindow):
def __init__(self):
QtWidgets.QMainWindow.__init__(self)
Ui_MainWindow.__init__(self)
self.setupUi(self)
self._bind_ui_()
self.lang = json.loads(open('res/lang.json','rb').read())[Config['lang']]
self.input_path,self.output_path = None, None
self.is_started = False
self.load_config()
def _bind_ui_(self):
self.selectInputFile.clicked.connect(lambda:self.openfile(False))
self.selectOutputFile.clicked.connect(lambda:self.openfile(True))
self.globalExec.clicked.connect(self.start)
def openfile(self, is_output):
if is_output:
self.output_path,_ = QtWidgets.QFileDialog.getSaveFileName(self,self.lang['OutputDialog'],'','Audio files(*.wav)')
self.outputFilePath.setText(self.output_path)
else:
self.input_path = QtWidgets.QFileDialog.getOpenFileName(self,self.lang['InputDialog'],'','Audio files(*.*)')
self.inputFilePath.setText(self.input_path[0])
def start(self):
if (not self.input_path) or (not self.output_path):
QtWidgets.QMessageBox.warning(self,self.lang['MsgBoxW'],self.lang['LackFile'],QtWidgets.QMessageBox.Ok)
return
self.save_config()
mode = 1
if self.useCopyBand.isChecked():
mode = 0
if not self.is_started:
self.CoreObject = Core(
None, mode,
input_path=self.inputFilePath.text(),
output_path=self.outputFilePath.text(),
output_sr=int(self.commOutputSr.currentText()[:-2]),
inter_sr=int(self.commInsertSr.currentText()[:-1]),
test_mode=self.useSampleOutput.isChecked(),
opti_mode=self.useOptimizer.isChecked(),
dyn_protect=self.dynProtect.isChecked(),
only_envolope=self.onlyEnvelopeOutput.isChecked(),
auto_opti=self.autoOptimizer.isChecked(),
no_hpf=self.noHPF.isChecked(),
harmonic_hpfc=int(self.cbHarmonicHpfCutFreq.value()),
harmonic_sft=int(self.cbHarmonicShiftFreq.value()),
harmonic_gain=float(self.cbHarmonicGain.value()),
percussive_hpfc=int(self.cbPercussiveHpfCutFreq.value()),
percussive_stf=int(self.cbPercussiveShiftFreq.value()),
percussive_gain=float(self.cbPercussiveGain.value()),
sv_l=float(self.akkoJitterDownFactor.value()),
sv_h=float(self.akkoJitterUpFactor.value()),
qwidget=self)
self.CoreObject.start()
self.CoreObject.Update.connect(self.proc_bar_bind)
self.CoreObject.Finish.connect(self.proc_end_bind)
self.CoreObject.MsgBox.connect(self.msgbox)
self.globalExec.setText(self.lang['ExecBtnTextStop'])
self.is_started = True
else:
self.CoreObject.terminate()
self.globalExec.setText(self.lang['ExecBtnTextStart'])
self.progressBar.setValue(0)
self.is_started = False
def proc_bar_bind(self, rate):
self.progressBar.setValue(round(rate*100))
def proc_end_bind(self):
self.is_started = False
self.progressBar.setValue(0)
self.globalExec.setText(self.lang['ExecBtnTextStart'])
def msgbox(self,title,text,type=0):
if type == 0:
QtWidgets.QMessageBox.critical(self, title, text)
else:
QtWidgets.QMessageBox.information(self, title, text)
def load_config(self):
self.useCopyBand.setChecked(Config.get('defaultMode',True))
self.commOutputSr.setCurrentIndex(Config.get('commOutputSr',1))
self.commInsertSr.setCurrentIndex(Config.get('commInsertSr',0))
self.useSampleOutput.setChecked(Config.get('useSampleOutput',False))
self.useOptimizer.setChecked(Config.get('useOptimizer',False))
self.dynProtect.setChecked(Config.get('dynProtect',False))
self.onlyEnvelopeOutput.setChecked(Config.get('onlyEnvelopeOutput',False))
self.autoOptimizer.setChecked(Config.get('autoOptimizer',False))
self.noHPF.setChecked(Config.get('noHPF',False))
self.cbHarmonicHpfCutFreq.setValue(Config.get('cbHarmonicHpfCutFreq',6000))
self.cbHarmonicShiftFreq.setValue(Config.get('cbHarmonicShiftFreq',16000))
self.cbHarmonicGain.setValue(Config.get('cbHarmonicGain',1.5))
self.cbPercussiveHpfCutFreq.setValue(Config.get('cbPercussiveHpfCutFreq',6000))
self.cbPercussiveShiftFreq.setValue(Config.get('cbPercussiveShiftFreq',16000))
self.cbPercussiveGain.setValue(Config.get('cbPercussiveGain',2.5))
self.akkoJitterDownFactor.setValue(Config.get('akkoJitterDownFactor',0.02))
self.akkoJitterUpFactor.setValue(Config.get('akkoJitterUpFactor',0.08))
def save_config(self):
Config['defaultMode'] = self.useCopyBand.isChecked()
Config['commOutputSr'] = self.commOutputSr.currentIndex()
Config['commInsertSr'] = self.commInsertSr.currentIndex()
Config['useSampleOutput'] = self.useSampleOutput.isChecked()
Config['useOptimizer'] = self.useOptimizer.isChecked()
Config['dynProtect'] = self.dynProtect.isChecked()
Config['onlyEnvelopeOutput'] = self.onlyEnvelopeOutput.isChecked()
Config['autoOptimizer'] = self.autoOptimizer.isChecked()
Config['noHPF'] = self.noHPF.isChecked()
Config['cbHarmonicHpfCutFreq'] = int(self.cbHarmonicHpfCutFreq.value())
Config['cbHarmonicShiftFreq'] = int(self.cbHarmonicShiftFreq.value())
Config['cbHarmonicGain'] = float(self.cbHarmonicGain.value())
Config['cbPercussiveHpfCutFreq'] = int(self.cbPercussiveHpfCutFreq.value())
Config['cbPercussiveShiftFreq'] = int(self.cbPercussiveShiftFreq.value())
Config['cbPercussiveGain'] = float(self.cbPercussiveGain.value())
Config['akkoJitterDownFactor'] = float(self.akkoJitterDownFactor.value())
Config['akkoJitterUpFactor'] = float(self.akkoJitterUpFactor.value())
with open('config.json','wb') as wp:
wp.write(json.dumps(Config,indent = 4).encode('UTF-8'))
if __name__ == "__main__":
app = QtWidgets.QApplication(sys.argv)
tl = QtCore.QTranslator()
tl.load(Config[Config['lang']])
app.installTranslator(tl)
window = MainUI()
window.show()
sys.exit(app.exec_())