Calculator Tools Calculator Tools
Create

Vegas Pro 13 THX Maker

Dec 12, 2025

About this app

Create amazing THX sound logos with our Vegas Pro 13 THX Maker. Generate exciting sound sequences and customize them to your liking.

Vegas Pro 13 THX Maker

Related apps

Put this on your site

Source

                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>Vegas Pro 13 THX Maker</title>
<meta name="description" content="Create amazing THX sound logos with our Vegas Pro 13 THX Maker. Generate exciting sound sequences and customize them to your liking.">
<meta name="keywords" content="Vegas Pro, THX Maker, sound logo, audio editing, sound design">

<!-- Libraries -->
<!-- jQuery (3.6.0) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<!-- Bootstrap CSS (5.3.3) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<!-- Bootstrap JS (5.3.3) -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<!-- Font Awesome (6.6.0) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/fontawesome.min.css" crossorigin="anonymous">

<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.

let audioContext = null;
let thxSound = null;

// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
const playButton = document.getElementById('play-sound');
const stopButton = document.getElementById('stop-sound');

playButton.addEventListener('click', playTHX);
stopButton.addEventListener('click', stopTHX);

initAudio();
});

function initAudio() {
audioContext = new (window.AudioContext || window.webkitAudioContext)();
createTHXSound();
}

function createTHXSound() {
const length = 2; // 2 seconds length

const oscillator = audioContext.createOscillator();
oscillator.type = 'sine';
oscillator.frequency.setValueAtTime(440, audioContext.currentTime); // A4 note

const gainNode = audioContext.createGain();
gainNode.gain.setValueAtTime(1, audioContext.currentTime);
gainNode.gain.setValueAtTime(0.5, audioContext.currentTime + length); // fades out

oscillator.connect(gainNode);
gainNode.connect(audioContext.destination);

oscillator.start();
oscillator.stop(audioContext.currentTime + length);

thxSound = gainNode;
}

function playTHX() {
if (audioContext) {
initAudio();
audioContext.resume().then(() => {
playTHXSound();
});
}
}

function playTHXSound() {
thxSound.connect(audioContext.destination);
}

function stopTHX() {
if (thxSound) {
thxSound.disconnect();
}
}

} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>

<style>
/* App CSS Goes Here */
body {
background: linear-gradient(to right, #2c3e50, #4ca1af);
color: #ffffff;
font-family: Arial, sans-serif;
}
#main-container {
margin-top: 50px;
text-align: center;
}
button {
background-color: #2980b9;
border: none;
color: white;
padding: 12px 24px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 10px;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s, transform 0.3s;
}
button:hover {
background-color: #3498db;
transform: scale(1.1);
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1 Vegas Pro 13 THX Maker</h1>
<p>Generate an exciting THX sound logo right here. Click the buttons below to play or stop the audio.</p>
<button id="play-sound"><i class="fas fa-play"></i> Play THX Sound</button>
<button id="stop-sound"><i class="fas fa-stop"></i> Stop THX Sound</button>
</div>
</body>
</html>