|
<!DOCTYPE html> |
|
<html lang="en"> |
|
|
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Godot Export with Audio Recording</title> |
|
<style> |
|
html, |
|
body { |
|
margin: 0; |
|
padding: 0; |
|
width: 100%; |
|
height: 100%; |
|
overflow: hidden; |
|
} |
|
|
|
iframe { |
|
width: 100%; |
|
height: 100%; |
|
border: none; |
|
display: block; |
|
} |
|
</style> |
|
</head> |
|
|
|
<body> |
|
|
|
|
|
<iframe src="godot/index.html"></iframe> |
|
|
|
<script> |
|
|
|
const serverUrl = "./api/process" |
|
|
|
|
|
fetch("./api/data", { |
|
method: 'GET' |
|
}) |
|
.then(response => { |
|
if (!response.ok) { |
|
throw new Error(`Server check failed: ${response.status}`) |
|
} |
|
console.log('Server check successful') |
|
setupAudioRecording() |
|
}) |
|
.catch(error => { |
|
console.error('Server check failed:', error) |
|
alert('Could not connect to the server. Please try again later.') |
|
throw error |
|
}) |
|
|
|
|
|
function setupAudioRecording() { |
|
|
|
if (!navigator.mediaDevices?.getUserMedia) { |
|
console.error('Your browser does not support audio recording.') |
|
alert('Your browser does not support audio recording. Please try using a modern browser like Chrome, Firefox, or Edge.') |
|
throw new Error('Audio recording not supported') |
|
} |
|
|
|
navigator.mediaDevices.getUserMedia({ audio: true }) |
|
.then(stream => { |
|
const audioContext = new (window.AudioContext || window.webkitAudioContext)() |
|
const mediaRecorder = new MediaRecorder(stream) |
|
const audioChunks = [] |
|
|
|
mediaRecorder.ondataavailable = event => { |
|
audioChunks.push(event.data) |
|
} |
|
|
|
mediaRecorder.onstop = () => { |
|
const audioBlob = new Blob(audioChunks, { type: 'audio/webm' }) |
|
audioChunks.length = 0 |
|
|
|
|
|
const reader = new FileReader() |
|
reader.readAsDataURL(audioBlob) |
|
reader.onloadend = () => { |
|
|
|
const base64Audio = reader.result.split(',')[1] |
|
|
|
|
|
fetch(serverUrl, { |
|
method: 'POST', |
|
headers: { |
|
'Content-Type': 'application/json' |
|
}, |
|
body: JSON.stringify({ |
|
audio_chunk: base64Audio |
|
}) |
|
}).then(response => { |
|
console.log('Audio chunk sent successfully') |
|
}).catch(error => { |
|
console.error('Error sending audio chunk:', error) |
|
}) |
|
} |
|
} |
|
|
|
|
|
const chunkInterval = 300 |
|
setInterval(() => { |
|
if (mediaRecorder.state === 'recording') { |
|
mediaRecorder.stop() |
|
mediaRecorder.start() |
|
} else { |
|
mediaRecorder.start() |
|
} |
|
}, chunkInterval) |
|
}) |
|
.catch(error => { |
|
console.error('Error accessing microphone:', error) |
|
}) |
|
} |
|
</script> |
|
</body> |
|
|
|
</html> |