This commit is contained in:
wataru 2023-01-05 22:08:26 +09:00
parent 9327fb3690
commit f85842d984
3 changed files with 9 additions and 9 deletions

View File

@ -125,7 +125,7 @@ const App = () => {
useEffect(() => {
if (!voiceChangerClientRef.current || !clientInitialized) {
console.log("client is not initialized")
// console.log("client is not initialized")
return
}
voiceChangerClientRef.current.setRequestParams(microphoneParams)

View File

@ -38,7 +38,7 @@ class MMVC_Namespace(socketio.AsyncNamespace):
audio1 = self.voiceChangerManager.changeVoice(
gpu, srcId, dstId, timestamp, convertChunkNum, crossFadeLowerValue, crossFadeOffsetRate, crossFadeEndRate, unpackedData)
print("sio result:", len(audio1), audio1.shape)
# print("sio result:", len(audio1), audio1.shape)
bin = struct.pack('<%sh' % len(audio1), *audio1)
await self.emit('response', [timestamp, bin])

View File

@ -79,10 +79,10 @@ class VoiceChanger():
torch.set_printoptions(edgeitems=2100)
print("Generated Strengths")
print(f"cross fade: start:{cf_offset} end:{cf_end} range:{cf_range}")
print(f"target_len:{unpackedData.shape[0]}, prev_len:{len(self.prev_strength)} cur_len:{len(self.cur_strength)}")
print("Prev", self.prev_strength)
print("Cur", self.cur_strength)
# print(f"cross fade: start:{cf_offset} end:{cf_end} range:{cf_range}")
# print(f"target_len:{unpackedData.shape[0]}, prev_len:{len(self.prev_strength)} cur_len:{len(self.cur_strength)}")
# print("Prev", self.prev_strength)
# print("Cur", self.cur_strength)
# ひとつ前の結果とサイズが変わるため、記録は消去する。
if hasattr(self, 'prev_audio1') == True:
@ -159,11 +159,11 @@ class VoiceChanger():
prev = self.prev_audio1[-1*unpackedData.shape[0]:]
cur = audio1[-2*unpackedData.shape[0]:-1*unpackedData.shape[0]]
result = prev * self.prev_strength + cur * self.cur_strength
print("merging...", prev.shape, cur.shape)
# print("merging...", prev.shape, cur.shape)
else:
cur = audio1[-2*unpackedData.shape[0]:-1*unpackedData.shape[0]]
result = cur
print("no merging...", cur.shape)
# print("no merging...", cur.shape)
self.prev_audio1 = audio1
#print(result)
@ -175,7 +175,7 @@ class VoiceChanger():
print(traceback.format_exc())
result = result.astype(np.int16)
print("on_request result size:",result.shape)
# print("on_request result size:",result.shape)
return result