top of page

§ 1 Scope of Application

​

  • These Terms and Conditions apply to all services provided by BrightVox Studios, including but not limited to audio editing, restoration, enhancement, recording, mixing, mastering, and any communication or transactions conducted via our website, email, or other channels.

  • By using our services, whether by placing an order, submitting a file, or otherwise engaging with BrightVox Studios, you agree to these terms and conditions.

​

§ 2 Nature of Services

​

BrightVox Studios specializes in professional audio post-production with a focus on voice enhancement. We offer services such as noise reduction, voice enhancement, mastering, and other audio-related tasks. Each project is handled individually with a commitment to quality and care.

​

Unless a fixed scope of service or result is explicitly agreed in writing, BrightVox Studios reserves the right to determine the appropriate editing approach based on our professional standards.

​

§ 3 Copyright and Usage Rights

​

You confirm that:

  • You are either the copyright holder of the material submitted to us, or

  • You have obtained all necessary rights, licenses, and permissions to authorize BrightVox Studios to process the material.

You retain full ownership of your original content. You grant BrightVox Studios a non-exclusive, revocable license to process, store, and deliver the material strictly within the score of the requested service.

We reserve the right to decline any material that raises legal or ethical concerns.

​

§ 4 Confidentiality and Data Protection

​

  1. All information, files, and communications provided to us are treated as strictly confidential. BrightVox Studios does not share client or project information with third parties unless legally required or explicitly authorized by the client.

  2. In Order to ensure timely delivery and main high service quality, BrightVox Studios reserves the right to outsource editing or processing tasks to carefully selected and trusted external partners. This applies particularly to large-scare of time-sensitive projects.

  3. Any external partner engaged will be subject to confidentiality obligations and will only receive access to the data necessary to fulfill the assigned task. By using our services, you agree to this possible delegation of work.

 

Further details are outlined in our Privacy Policy.

​

§ 5 Prohibited Content

​

You agree to not submit or request the editing of any material that:

  • Violates applicable laws or intellectual property rights,

  • Contains discriminatory, offensive, or unlawful content,

  • Infringes on personal rights of third parties,

  • Contains malicious software or harmful code.

Any violation of these conditions may lead to immediate termination of the working relationship without compensation.

​

§ 7 Turnaround Time & Delivery

​

Delivery times are estimated in good faith and depend on the complexity of the project. We strive to deliver most standard projects within 24-72 hours. Specific delivery times may be agreed upon prior to confirmation.

​

Files are typically delivered via secure download link or email.

​

§ 8 Express Service

​

For urgent projects, we offer Express Delivery. Express jobs are prioritized and are subject to availability. Additional fees may apply. Delivery for express services typically occurs within 6-24 hours, depending on project score and prior agreement.

​

Exact pricing and turnaround for express services will be communicated and confirmed before work begins.

​

§ 9 Uploads via Website

​

Users may upload audio files through our website’s upload form. By doing so, you agree to the following:

​

  • All uploaded files are subject to these Terms and Conditions.

  • Files must be free of malware and prohibited content.

  • You grant us temporary permission to store and process these files solely for the purpose of evaluation or project execution.

  • You understand that no editing or delivery will take place unless a service has been confirmed and, unless otherwise agreed, paid in advance.

 

We will provide a free sample edit for evaluation purposes. These samples are offered without obligation and do not guarantee acceptance of the full project.

​

§ 10 Payment Terms

​

Unless otherwise agreed, full payment is required before final delivery. Pricing is transparent and available on our website or by direct request.

​

We offer the following payment methods:

​

  • Bank Transfer (SEPA) – available for clients within the European Union only.

  • Stripe – available for all international clients with support for all major payment cards.

  • PayPal – available worldwide. We accept payments via PayPal in EUR (€) or USD ($).

 

All prices are quoted excluding 19% VAT (Value Added Tax). Unless valid proof of business statis is provided (such as commercial register excerpt, a business license, or a valid VAT ID within the EU), we are legally required to charge 19% VAT additional to listed prices.

​

Invoices will be issued in EUR unless otherwise agreed. For long-term or recurring projects, individual billing arrangements can be made upon request.

​

§ 11 Liability Disclaimer

​

BrightVox Studios is not liable for:

​

  • Loss of data due to technical errors beyond our control,

  • Delays caused by force majeure or client-side issues,

  • Copyright disputes arising from content provided by the client,

  • Any consequential damage resulting from the use or misuse of delivered files.

 

Use of our services is at your own risk. Clients are responsible for backing up their original materials.

​

§ 12 Final Provisions

​

Should any provision of these Terms & Conditions be or become invalid, the remainder shall remain unaffected. These Terms are governed by the laws of the Federal Republic of Germany. Where legally permissible, the place of jurisdiction is Karlsruhe.

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();