description property
String
get
description
Description for UI
Implementation
String get description {
switch (this) {
case VoiceEffect.none:
return 'Original audio without modifications';
case VoiceEffect.noiseReduction:
return 'Reduces ambient background noise';
case VoiceEffect.voiceEnhancement:
return 'Enhances voice clarity and presence';
case VoiceEffect.broadcast:
return 'Professional radio/podcast sound';
case VoiceEffect.warmth:
return 'Adds warmth and intimacy';
case VoiceEffect.brightness:
return 'Adds clarity and air';
case VoiceEffect.deepVoice:
return 'Makes voice deeper and fuller';
case VoiceEffect.telephone:
return 'Vintage telephone effect';
case VoiceEffect.echo:
return 'Adds echo/delay effect';
case VoiceEffect.hallReverb:
return 'Large concert hall reverb';
case VoiceEffect.roomReverb:
return 'Small room ambience';
case VoiceEffect.whisper:
return 'Soft whisper effect';
case VoiceEffect.robotic:
return 'Metallic robotic voice';
case VoiceEffect.chipmunk:
return 'Higher pitched voice';
case VoiceEffect.deepPitch:
return 'Lower pitched voice';
case VoiceEffect.deBreath:
return 'Removes breath sounds';
case VoiceEffect.dePlosive:
return 'Reduces plosive sounds';
case VoiceEffect.normalizer:
return 'Consistent volume levels';
case VoiceEffect.compressor:
return 'Reduces dynamic range';
case VoiceEffect.limiter:
return 'Prevents audio clipping';
}
}