diff --git a/src/lang/en-us.json b/src/lang/en-us.json index 4106595f..c1b9c95f 100644 --- a/src/lang/en-us.json +++ b/src/lang/en-us.json @@ -267,6 +267,7 @@ "player__sound_effect_pitch_shifter": "Pitch adjustment", "player__sound_effect_pitch_shifter_preset_semitones": "{num} semitones", "player__sound_effect_pitch_shifter_reset_btn": "Reset", + "player__sound_effect_pitch_shifter_tip": "Since ups and downs need to process audio data in real time, this will cause additional CPU usage\n\nKnown issues:\nIf the CPU resources are not enough, the processing will cause the task to accumulate and the sound will be abnormal. At this time, it is necessary to pause the playback for a period of time and wait for the accumulated tasks to be processed before playing.", "player__stop": "Paused", "player__volume": "Volume: ", "player__volume_mute_label": "Mute", diff --git a/src/lang/zh-cn.json b/src/lang/zh-cn.json index 9d7bef6a..c898d6f0 100644 --- a/src/lang/zh-cn.json +++ b/src/lang/zh-cn.json @@ -266,6 +266,7 @@ "player__sound_effect_pitch_shifter": "音调升降调节", "player__sound_effect_pitch_shifter_preset_semitones": "{num} 半音", "player__sound_effect_pitch_shifter_reset_btn": "重置", + "player__sound_effect_pitch_shifter_tip": "由于升降调需要实时处理音频数据,这会导致额外的CPU占用\n\n已知问题:\n如果CPU资源不够时将处理导致任务堆积而出现声音异常,这时需要暂停播放一段时间等堆积的任务处理完毕再播放", "player__stop": "暂停播放", "player__volume": "当前音量:", "player__volume_mute_label": "静音", diff --git a/src/lang/zh-tw.json b/src/lang/zh-tw.json index 921af8cb..353422b7 100644 --- a/src/lang/zh-tw.json +++ b/src/lang/zh-tw.json @@ -267,6 +267,7 @@ "player__sound_effect_pitch_shifter": "音調升降調節", "player__sound_effect_pitch_shifter_preset_semitones": "{num} 半音", "player__sound_effect_pitch_shifter_reset_btn": "重置", + "player__sound_effect_pitch_shifter_tip": "由於升降調需要實時處理音頻數據,這會導致額外的CPU佔用\n\n已知問題:\n如果CPU資源不夠時將處理導致任務堆積而出現聲音異常,這時需要暫停播放一段時間等堆積的任務處理完畢再播放", "player__stop": "暫停播放", "player__volume": "當前音量:", "player__volume_mute_label": "靜音", diff --git a/src/renderer/assets/svgs/information-slab-circle-outline.svg b/src/renderer/assets/svgs/information-slab-circle-outline.svg new file mode 100644 index 00000000..b3ddf086 --- /dev/null +++ b/src/renderer/assets/svgs/information-slab-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/renderer/components/common/SoundEffectBtn/PitchShifter.vue b/src/renderer/components/common/SoundEffectBtn/PitchShifter.vue index 54abc90f..7526c5ff 100644 --- a/src/renderer/components/common/SoundEffectBtn/PitchShifter.vue +++ b/src/renderer/components/common/SoundEffectBtn/PitchShifter.vue @@ -1,7 +1,10 @@