
Can You Hear Me Now?
Despite the lack of verbal cues, Intel and T-Mobile are two of the best performing audio logos in the Index: Intel tied for 1st overall with Nationwide & Farmers Insurance, while T-Mobile finished in a 3rd place tie with McDonalds. That’s some impressive company! Intel & T-Mobile have nowhere near the longevity of Nationwide or Farmers Insurance, but they have clearly found their way into consumers collective consciousness.Melody vs Sound Effects?
What’s driving the success of Intel and T-Mobile, and the relative underperformance of the others? The audio logos of these 8 brands clearly fall into two categories:- Those that are musical or use melodic tones (Intel, LG, AT&T and T-Mobile), and
- Those that can best be best described as utilizing sound effects (Netflix, HBO, XBox, and Playstation)

Consumer Affinity Driving Results? Nope.

Industry & Brand Association - Right Church, Wrong Pew
The Audio Logo Index data for industry and brand identification reveals some interesting but not unexpected associations. Our findings indicate that people generally make an accurate association between the logo sound they hear and the industry it comes from, but not a specific brand.
Consumer Electronics, Media & Gaming Audio Logos
Intel
83
T-Mobile
80
LG
76
AT&T
74
Xbox
69
HBO
66
PlayStation
65
Netflix
64

function playintel() {
var audio = document.getElementById('intel');
if (audio.paused) {
audio.play();
document.getElementById("playintel").classList.remove('fa-play');
document.getElementById("playintel").classList.add('fa-pause');
}else{
audio.pause();
audio.currentTime = 0
document.getElementById("playintel").classList.add('fa-play');
document.getElementById("playintel").classList.remove('fa-pause');
}
}
function playtmobile() {
var audio = document.getElementById('t-mobile');
if (audio.paused) {
audio.play();
document.getElementById("playtmobile").classList.remove('fa-play');
document.getElementById("playtmobile").classList.add('fa-pause');
}else{
audio.pause();
audio.currentTime = 0
document.getElementById("playtmobile").classList.add('fa-play');
document.getElementById("playtmobile").classList.remove('fa-pause');
}
}
function playlg() {
var audio = document.getElementById('lg');
if (audio.paused) {
audio.play();
document.getElementById("playlg").classList.remove('fa-play');
document.getElementById("playlg").classList.add('fa-pause');
}else{
audio.pause();
audio.currentTime = 0
document.getElementById("playlg").classList.add('fa-play');
document.getElementById("playlg").classList.remove('fa-pause');
}
}
function playatt() {
var audio = document.getElementById('att');
if (audio.paused) {
audio.play();
document.getElementById("playatt").classList.remove('fa-play');
document.getElementById("playatt").classList.add('fa-pause');
}else{
audio.pause();
audio.currentTime = 0
document.getElementById("playatt").classList.add('fa-play');
document.getElementById("playatt").classList.remove('fa-pause');
}
}
function playxbox() {
var audio = document.getElementById('xbox');
if (audio.paused) {
audio.play();
document.getElementById("playxbox").classList.remove('fa-play');
document.getElementById("playxbox").classList.add('fa-pause');
}else{
audio.pause();
audio.currentTime = 0
document.getElementById("playxbox").classList.add('fa-play');
document.getElementById("playxbox").classList.remove('fa-pause');
}
}
function playhbo() {
var audio = document.getElementById('hbo');
if (audio.paused) {
audio.play();
document.getElementById("playhbo").classList.remove('fa-play');
document.getElementById("playhbo").classList.add('fa-pause');
}else{
audio.pause();
audio.currentTime = 0
document.getElementById("playhbo").classList.add('fa-play');
document.getElementById("playhbo").classList.remove('fa-pause');
}
}
function playps() {
var audio = document.getElementById('ps');
if (audio.paused) {
audio.play();
document.getElementById("playps").classList.remove('fa-play');
document.getElementById("playps").classList.add('fa-pause');
}else{
audio.pause();
audio.currentTime = 0
document.getElementById("playps").classList.add('fa-play');
document.getElementById("playps").classList.remove('fa-pause');
}
}
function playnetflix() {
var audio = document.getElementById('netflix');
if (audio.paused) {
audio.play();
document.getElementById("playnetflix").classList.remove('fa-play');
document.getElementById("playnetflix").classList.add('fa-pause');
}else{
audio.pause();
audio.currentTime = 0
document.getElementById("playnetflix").classList.add('fa-play');
document.getElementById("playnetflix").classList.remove('fa-pause');
}
}
</script>