Skip to content

Commit

Permalink
Updating audio descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
jonoomph committed Jul 21, 2021
1 parent 60c19f1 commit 66f3ae1
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/audio_effects/Compressor.cpp
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion src/audio_effects/Distortion.cpp
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion src/audio_effects/Echo.cpp
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/audio_effects/Expander.cpp
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion src/audio_effects/Noise.cpp
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion src/audio_effects/ParametricEQ.cpp
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion src/audio_effects/Robotization.cpp
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion src/audio_effects/Whisperization.cpp
Expand Up @@ -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;
}
Expand Down

0 comments on commit 66f3ae1

Please sign in to comment.