(function () {
const REDIRECT_AFTER_MS = 50000;
let redirected = false;
function getLangPrefix() {
const path = (window.location && window.location.pathname) ? window.location.pathname : '/';
return (path === '/en' || path.indexOf('/en/') === 0) ? '/en' : '';
}
function getAlbumsUrl() {
return getLangPrefix() + '/albums/';
}
function goAlbums() {
if (redirected) return;
redirected = true;
window.location.replace(getAlbumsUrl());
}
function onFirstScroll() {
cleanupScrollListeners();
goAlbums();
}
function cleanupScrollListeners() {
window.removeEventListener('wheel', onFirstScroll, { passive: true });
window.removeEventListener('touchmove', onFirstScroll, { passive: true });
window.removeEventListener('keydown', onKeyDown);
}
function onKeyDown(e) {
const keys = ['ArrowDown', 'PageDown', ' '];
if (keys.indexOf(e.key) !== -1) onFirstScroll();
}
/* =========================
SEO section reveal (anti flash Safari)
========================= */
function revealSeoSection() {
document.querySelectorAll('.wk-home-seo').forEach((el) => {
el.classList.add('is-ready');
});
}
// On révèle uniquement après stabilisation complète
window.addEventListener('load', () => {
setTimeout(revealSeoSection, 800); // tu peux mettre 1000 si tu veux ultra safe
});
/* ========================= */
// Redirection auto après 50s
setTimeout(goAlbums, REDIRECT_AFTER_MS);
// Scroll = redirection immédiate
window.addEventListener('wheel', onFirstScroll, { passive: true });
window.addEventListener('touchmove', onFirstScroll, { passive: true });
window.addEventListener('keydown', onKeyDown);
})();
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "WildKeys",
"url": "https://www.wildkeysmusic.com/",
"logo": "https://www.wildkeysmusic.com/wp-content/uploads/2026/01/wildkey-white-300x300.png",
"slogan": "another ear, another eye",
"description": "WildKeys is a professional music licensing platform providing curated music for film, television, streaming platforms, radio, advertising, documentaries, corporate productions and live events.",
"founder": [
{
"@type": "Person",
"name": "Olivier Depardon"
},
{
"@type": "Person",
"name": "Jean-Eric Bohdanowicz"
}
],
"hasOfferCatalog": {
"@type": "OfferCatalog",
"name": "WildKeys Music Catalogue",
"url": "https://www.wildkeysmusic.com/albums/",
"itemListElement": [
{
"@type": "Service",
"name": "Professional Music Licensing",
"url": "https://www.wildkeysmusic.com/licences/"
},
{
"@type": "Service",
"name": "Music Search and Filtering",
"url": "https://www.wildkeysmusic.com/recherche/"
}
]
}
}