I stumped upon an antivirus lander today, and when I opened it, there was a voice telling me 'Your device is infected by 7 viruses!'. I thought, woah, this guy really invested in his landers by using voice recordings. And then after several times of thorough searchs I still couldn't find the audio 'src=' code. It got me curious, so after some digging,I found this code snippet:
<script type="text/javascript">
function speak(text) {
var msg = new SpeechSynthesisUtterance();
var voices = speechSynthesis.getVoices();
msg.voice = voices[2];
msg.voiceURI = 'native';
msg.volume = 1;
msg.rate = 1;
msg.pitch = 1;
msg.text = text;
msg.lang = 'en';
speechSynthesis.speak(msg);
}
speak('Your device is infected by 7 viruses!');
</script>
Thanks for the share duiyao.
I've seen it's being used for a while especially on AV and sweeps campaigns.
Have you done any split tests how it performs with and without the audio?
Whoa!
I've seen such kinda LP that use the audio to get attention, I'm petty sure this technique work for them but we need to split test to be 100% sure!
Thanks a lot for sharing it with the community....
I have tried it in several campaigns, so far, nothing noteworthy, almost no impact to the conversions. But I think it is a cool and fun trick to know about.
Awesome