diff --git a/src/audio_effects/Compressor.cpp b/src/audio_effects/Compressor.cpp index cf706e6e8..b0cb34e0a 100644 --- a/src/audio_effects/Compressor.cpp +++ b/src/audio_effects/Compressor.cpp @@ -56,7 +56,7 @@ void Compressor::init_effect_details() /// Set the effect info info.class_name = "Compressor"; info.name = "Compressor"; - info.description = "Add compressor effect on the frame's audio. This effect reduces the volume of loud sounds or amplify quiet sounds."; + info.description = "Reduce the volume of loud sounds or amplify quiet sounds."; info.has_audio = true; info.has_video = false; diff --git a/src/audio_effects/Distortion.cpp b/src/audio_effects/Distortion.cpp index 10abf64d6..1f4d58b64 100644 --- a/src/audio_effects/Distortion.cpp +++ b/src/audio_effects/Distortion.cpp @@ -56,7 +56,7 @@ void Distortion::init_effect_details() /// Set the effect info info.class_name = "Distortion"; info.name = "Distortion"; - info.description = "Add distortion on the frame's audio. This effect alters the audio by clipping the signal."; + info.description = "Alter the audio by clipping the signal."; info.has_audio = true; info.has_video = false; } diff --git a/src/audio_effects/Echo.cpp b/src/audio_effects/Echo.cpp index 010f2d4cf..442a5df1a 100644 --- a/src/audio_effects/Echo.cpp +++ b/src/audio_effects/Echo.cpp @@ -56,7 +56,7 @@ void Echo::init_effect_details() /// Set the effect info info.class_name = "Echo"; info.name = "Echo"; - info.description = "Add echo on the frame's sound."; + info.description = "Reflection of sound with a delay after the direct sound."; info.has_audio = true; info.has_video = false; initialized = false; diff --git a/src/audio_effects/Expander.cpp b/src/audio_effects/Expander.cpp index 468988c9e..3d60974f0 100644 --- a/src/audio_effects/Expander.cpp +++ b/src/audio_effects/Expander.cpp @@ -56,7 +56,7 @@ void Expander::init_effect_details() /// Set the effect info info.class_name = "Expander"; info.name = "Expander"; - info.description = "Add Expander on the frame's audio track. Louder parts of the audio becomes relatively louder and quieter parts becomes quieter."; + info.description = "Louder parts of audio becomes relatively louder and quieter parts becomes quieter."; info.has_audio = true; info.has_video = false; diff --git a/src/audio_effects/Noise.cpp b/src/audio_effects/Noise.cpp index 357cb7694..5a329ba6c 100644 --- a/src/audio_effects/Noise.cpp +++ b/src/audio_effects/Noise.cpp @@ -55,7 +55,7 @@ void Noise::init_effect_details() /// Set the effect info info.class_name = "Noise"; info.name = "Noise"; - info.description = "Add white noise on the frame's sound."; + info.description = "Random signal having equal intensity at different frequencies."; info.has_audio = true; info.has_video = false; } diff --git a/src/audio_effects/ParametricEQ.cpp b/src/audio_effects/ParametricEQ.cpp index 46e384ea5..5f87d67eb 100644 --- a/src/audio_effects/ParametricEQ.cpp +++ b/src/audio_effects/ParametricEQ.cpp @@ -57,7 +57,7 @@ void ParametricEQ::init_effect_details() /// Set the effect info info.class_name = "ParametricEQ"; info.name = "Parametric EQ"; - info.description = "Add equalization on the frame's sound. This effect is a filter that allows you to adjust the volume level of a frequency within an audio."; + info.description = "Filter that allows you to adjust the volume level of a frequency in the audio track."; info.has_audio = true; info.has_video = false; } diff --git a/src/audio_effects/Robotization.cpp b/src/audio_effects/Robotization.cpp index 1f9c8ac0f..d16871507 100644 --- a/src/audio_effects/Robotization.cpp +++ b/src/audio_effects/Robotization.cpp @@ -57,7 +57,7 @@ void Robotization::init_effect_details() /// Set the effect info info.class_name = "Robotization"; info.name = "Robotization"; - info.description = "Add robotization effect on the frame's audio track. This effect transforms the voice present in an audio into a robotic voice effect."; + info.description = "Transform the voice present in an audio track into a robotic voice effect."; info.has_audio = true; info.has_video = false; } diff --git a/src/audio_effects/Whisperization.cpp b/src/audio_effects/Whisperization.cpp index e36fbfa02..7c235e262 100644 --- a/src/audio_effects/Whisperization.cpp +++ b/src/audio_effects/Whisperization.cpp @@ -56,7 +56,7 @@ void Whisperization::init_effect_details() /// Set the effect info info.class_name = "Whisperization"; info.name = "Whisperization"; - info.description = "Add whisperization effect on the frame's audio track. This effect transforms the voice present in an audio into a whispering voice effect."; + info.description = "Transform the voice present in an audio track into a whispering voice effect."; info.has_audio = true; info.has_video = false; }