top of page

ABOUT US

At BrightVox Studios, we started with one belief: every production deserves superb-sounding audio. Vocal-based productions in particular, including interviews, podcasts, and films, depend on a clear, confident, and pleasing tone. And we’re on a mission to ensure every client gets just that, without fuss or significant expense.

​

What began as a single-player mission to enhance audio recordings has morphed into a brand that has already served over 150 clients in 12 countries. And that was only during the last nine months!

​

With a deep-rooted background in music and media production, we understand that every voice matters. That’s why we don’t just fix audio files—we perfect them. From international video producers to podcasters and educators, our clients rely on us to shape broken recordings and turn them into crisp, clean, broadcast-ready audio.

​

Our lead engineer is Johannes “John” Riedl, and he’s the brains behind BrightVox. Over the last few years, he has refined vocal recordings on a daily basis, from songs to radio plays. But that’s not all!

 

Besides his work in audio editing, Johannes also composes and produces original film scores for independent filmmakers. And his work has already earned him multiple awards. His recent creations are dazzling audiences at international film festivals and broadcast stations around the world.

WHY DO WE CALL OURSELVES BRIGHTVOX?

Well, in the audio world, the English word “Bright” is commonly used to describe that something sounds clear and polished. So if a voice sounds bright, it’s having a good amount of high frequencies, and has a clean and smooth sound.

​

And the other term called Vox is latin and stand for Voice. In many studios up until today, many engineers are naming any vocal related track VOX. Both, because it’s shorter and also because it literally means voice.

CONTACT

Have some questions?

Successfull. We will get back to you shortly.

Contact

Opening Hours

Appointments by Arrangement

Social Media:

  • BrightVox Studios Facebook
  • BrightVox Studios Instagram

© 2025 by BrightVox Studios & RIEDL CONSULTING | Vocal Editing / Vocal Enhancment near Stuttgart, Karlsruhe and Pforzheim |

Pictures taken by TheHorizonMedia | Legal Notice | Privacy Policy (GDPR) | T&C's |

bottom of page
let rawAudio = [ "raw1.mp3", "raw2.mp3", "raw3.mp3" ] let masteredAudio = [ "mastered1.mp3", "mastered2.mp3", "mastered3.mp3" ] const audio1 = document.getElementById('audio1'); const audio1Src = audio1.querySelector("source"); const audio2 = document.getElementById('audio2'); const audio2Src = audio2.querySelector("source"); const toggleCheckbox = document.getElementById('toggleCheckbox'); const albums = document.querySelectorAll(".album-grid .album"); toggleCheckbox.checked = true; let selectedAlbum = null; document.addEventListener("DOMContentLoaded", function () { var albumImages = document.querySelectorAll(".album-grid .album"); albumImages.forEach(function (image, index) { image.addEventListener("click", function () { playAudio(index) }); }); let button = document.querySelector("#toggleCheckbox"); button.addEventListener("click", (e) => { toggleAudio(); }); }); audio1.addEventListener("ended", () => { deselectAllAlbums(); }) function deselectAllAlbums() { albums.forEach((album) => { album.classList.remove("selected"); }); selectedAlbum = null; } function playAudio(idx) { if (selectedAlbum === idx) { deselectAllAlbums(); audio1.volume = 0; audio2.volume = 0; audio1.pause(); audio2.pause(); return; } deselectAllAlbums(); albums[idx].classList.add("selected"); selectedAlbum = idx; audio1.volume = 0; audio2.volume = 0; audio1.pause(); audio2.pause(); audio1Src.src = rawAudio[idx]; audio2Src.src = masteredAudio[idx]; audio1.load() audio2.load() if (toggleCheckbox.checked) { audio1.volume = 1; audio2.volume = 0; } else { audio1.volume = 0; audio2.volume = 1; } audio1.play(); audio2.play(); } function toggleAudio() { event.stopPropagation() if (toggleCheckbox.checked) { audio2.volume = 0; audio1.volume = 1; } else { audio2.volume = 1; audio1.volume = 0; } const toggleContainer = document.querySelector('.toggle-container'); toggleContainer.classList.toggle('checked'); } function isElementInViewport(element) { const rect = element.getBoundingClientRect(); return ( rect.top >= 0 && rect.left >= 0 && rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) && rect.right <= (window.innerWidth || document.documentElement.clientWidth) ); } // Function to handle the scroll event and check if the element is in the viewport function handleScroll() { const element = document.querySelector(".fade-in"); if (isElementInViewport(element)) { console.log("Element is in the viewport."); // element.classList.add("fade-effect"); } else { console.log("Element is not in the viewport."); // element.classList.remove("fade-effect"); } } // Add a scroll event listener to check when the element enters/leaves the viewport window.addEventListener("scroll", handleScroll); // Initial check to see if the element is in the viewport when the page loads handleScroll();