Showing
2 changed files
with
5 additions
and
5 deletions
... | @@ -194,14 +194,14 @@ class Effector: | ... | @@ -194,14 +194,14 @@ class Effector: |
194 | global Q | 194 | global Q |
195 | 195 | ||
196 | db, main_frequency, amplitude = self.get_decibel_freq_amplitude(active_sound) | 196 | db, main_frequency, amplitude = self.get_decibel_freq_amplitude(active_sound) |
197 | - print("touched, db {:2f}, main_frequency {:2f}, amplitude {:2f}".format(db, main_frequency, amplitude)) | 197 | + print("입력소리 분석, db {:2f}, main_frequency {:2f}, amplitude {:2f}".format(db, main_frequency, amplitude)) |
198 | param = self.get_distortion_rate(db, main_frequency, amplitude) | 198 | param = self.get_distortion_rate(db, main_frequency, amplitude) |
199 | if(self.effect == "echo"): | 199 | if(self.effect == "echo"): |
200 | - print("echo 정도 :", param) | 200 | + print("echo 변형 정도 :", param) |
201 | if(self.effect == "pitch_shift"): | 201 | if(self.effect == "pitch_shift"): |
202 | - print("pitch_shift 정도 :", param*3-1,"옥타브 이동") | 202 | + print("pitch_shift 변형 정도 :", param*3-1,"옥타브 이동") |
203 | if(self.effect == "low_filter"): | 203 | if(self.effect == "low_filter"): |
204 | - print("low_filter 정도 :", param*RATE/8,"Hz 이하만 통과") | 204 | + print("low_filter 변형 정도 :", param*RATE/8,"Hz 이하만 통과") |
205 | for i in range(0, len(self.sound), CHUNK): | 205 | for i in range(0, len(self.sound), CHUNK): |
206 | temp_chunk = self.augumented_sound[self.effect][int(param*EFFECT_LEVEL)][i:i+CHUNK] | 206 | temp_chunk = self.augumented_sound[self.effect][int(param*EFFECT_LEVEL)][i:i+CHUNK] |
207 | Q.put(temp_chunk) | 207 | Q.put(temp_chunk) |
... | @@ -274,4 +274,4 @@ pa.terminate() | ... | @@ -274,4 +274,4 @@ pa.terminate() |
274 | # 실시간 face-chat | 274 | # 실시간 face-chat |
275 | # 실시간 변형을 조금더 강조하면 좋을듯 합니다. | 275 | # 실시간 변형을 조금더 강조하면 좋을듯 합니다. |
276 | # 추가적인 사용 예제나 스토리를 조금더 넣으면 좋을듯. | 276 | # 추가적인 사용 예제나 스토리를 조금더 넣으면 좋을듯. |
277 | -# 실시간으로 | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
277 | +# "실시간으로" 라는 파트를 강조하고 왜 실시간 성이 중요한지 다시한번 어필하기 | ... | ... |
-
Please register or login to post a comment