Spaces:
Sleeping
Sleeping
File size: 12,593 Bytes
2f7626f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 |
// Audio recording and playback functionality using Web Audio API
let mediaRecorder = null;
let audioChunks = [];
let recordingStream = null;
let recordingStartTime = null;
let recordingTimer = null;
let isRecording = false;
// Initialize audio recording functionality
document.addEventListener('DOMContentLoaded', () => {
if (document.body.classList.contains('chat-page')) {
initializeAudioRecording();
}
});
async function initializeAudioRecording() {
try {
// Check if getUserMedia is supported
if (!navigator.mediaDevices || !navigator.mediaDevices.getUserMedia) {
console.warn('getUserMedia not supported');
return;
}
console.log('Audio recording initialized');
} catch (error) {
console.error('Error initializing audio recording:', error);
}
}
async function toggleAudioRecording() {
if (isRecording) {
stopAudioRecording();
} else {
startAudioRecording();
}
}
async function startAudioRecording() {
if (!window.currentConversation) {
MainJS.showError('Please select a conversation first');
return;
}
try {
// Request microphone permission
recordingStream = await navigator.mediaDevices.getUserMedia({
audio: {
echoCancellation: true,
noiseSuppression: true,
sampleRate: 44100
}
});
// Create MediaRecorder
const options = {
mimeType: 'audio/webm;codecs=opus'
};
// Fallback to other formats if webm is not supported
if (!MediaRecorder.isTypeSupported(options.mimeType)) {
options.mimeType = 'audio/webm';
if (!MediaRecorder.isTypeSupported(options.mimeType)) {
options.mimeType = 'audio/mp4';
if (!MediaRecorder.isTypeSupported(options.mimeType)) {
options.mimeType = 'audio/wav';
}
}
}
mediaRecorder = new MediaRecorder(recordingStream, options);
audioChunks = [];
// Set up event handlers
mediaRecorder.ondataavailable = (event) => {
if (event.data.size > 0) {
audioChunks.push(event.data);
}
};
mediaRecorder.onstop = () => {
handleRecordingStop();
};
mediaRecorder.onerror = (event) => {
console.error('MediaRecorder error:', event.error);
MainJS.showError('Recording failed: ' + event.error.message);
resetRecordingUI();
};
// Start recording
mediaRecorder.start(100); // Collect data every 100ms
isRecording = true;
recordingStartTime = Date.now();
// Update UI
updateRecordingUI(true);
// Start timer
startRecordingTimer();
console.log('Audio recording started');
} catch (error) {
console.error('Error starting audio recording:', error);
if (error.name === 'NotAllowedError') {
MainJS.showError('Microphone access denied. Please allow microphone access to record voice messages.');
} else if (error.name === 'NotFoundError') {
MainJS.showError('No microphone found. Please connect a microphone and try again.');
} else {
MainJS.showError('Failed to start recording: ' + error.message);
}
resetRecordingUI();
}
}
function stopAudioRecording() {
if (!isRecording || !mediaRecorder) {
return;
}
try {
mediaRecorder.stop();
isRecording = false;
// Stop all tracks
if (recordingStream) {
recordingStream.getTracks().forEach(track => track.stop());
recordingStream = null;
}
// Stop timer
if (recordingTimer) {
clearInterval(recordingTimer);
recordingTimer = null;
}
console.log('Audio recording stopped');
} catch (error) {
console.error('Error stopping audio recording:', error);
MainJS.showError('Failed to stop recording');
resetRecordingUI();
}
}
function cancelAudioRecording() {
if (isRecording && mediaRecorder) {
mediaRecorder.stop();
isRecording = false;
// Stop all tracks
if (recordingStream) {
recordingStream.getTracks().forEach(track => track.stop());
recordingStream = null;
}
// Stop timer
if (recordingTimer) {
clearInterval(recordingTimer);
recordingTimer = null;
}
// Clear chunks
audioChunks = [];
// Reset UI
resetRecordingUI();
console.log('Audio recording cancelled');
}
}
async function handleRecordingStop() {
if (audioChunks.length === 0) {
console.warn('No audio data recorded');
resetRecordingUI();
return;
}
try {
// Create blob from chunks
const audioBlob = new Blob(audioChunks, { type: 'audio/webm' });
const duration = (Date.now() - recordingStartTime) / 1000; // Duration in seconds
// Validate minimum duration
if (duration < 0.5) {
MainJS.showError('Recording too short. Please record for at least 0.5 seconds.');
resetRecordingUI();
return;
}
// Validate maximum duration (5 minutes)
if (duration > 300) {
MainJS.showError('Recording too long. Maximum duration is 5 minutes.');
resetRecordingUI();
return;
}
console.log(`Audio recorded: ${duration.toFixed(2)} seconds, size: ${audioBlob.size} bytes`);
// Upload audio
await uploadAudioMessage(audioBlob, duration);
} catch (error) {
console.error('Error handling recording stop:', error);
MainJS.showError('Failed to process recording');
} finally {
resetRecordingUI();
}
}
async function uploadAudioMessage(audioBlob, duration) {
if (!window.currentConversation) {
MainJS.showError('No conversation selected');
return;
}
try {
// Create form data
const formData = new FormData();
formData.append('audio', audioBlob, 'voice_message.webm');
formData.append('conversation_id', window.currentConversation);
formData.append('duration', duration.toString());
// Show uploading indicator
MainJS.showSuccess('Sending voice message...');
// Upload audio
const response = await fetch('/api/upload_audio', {
method: 'POST',
body: formData
});
const result = await response.json();
if (result.success) {
MainJS.showSuccess('Voice message sent!');
// Reload messages and conversations
await loadMessages(window.currentConversation);
await loadConversations();
} else {
MainJS.showError('Failed to send voice message: ' + result.message);
}
} catch (error) {
console.error('Error uploading audio:', error);
MainJS.showError('Failed to send voice message');
}
}
function startRecordingTimer() {
recordingTimer = setInterval(() => {
if (!isRecording) return;
const elapsed = (Date.now() - recordingStartTime) / 1000;
const minutes = Math.floor(elapsed / 60);
const seconds = Math.floor(elapsed % 60);
const timeString = `${minutes}:${seconds.toString().padStart(2, '0')}`;
const timeElement = document.getElementById('recordingTime');
if (timeElement) {
timeElement.textContent = timeString;
}
// Auto-stop at 5 minutes
if (elapsed >= 300) {
stopAudioRecording();
}
}, 100);
}
function updateRecordingUI(recording) {
const audioButton = document.getElementById('audioButton');
const audioRecording = document.getElementById('audioRecording');
const messageForm = document.getElementById('messageForm');
if (!audioButton || !audioRecording || !messageForm) return;
if (recording) {
audioButton.innerHTML = '<i class="fas fa-stop text-danger"></i>';
audioButton.classList.add('btn-danger');
audioButton.classList.remove('btn-outline-success');
audioRecording.style.display = 'block';
messageForm.style.display = 'none';
} else {
resetRecordingUI();
}
}
function resetRecordingUI() {
const audioButton = document.getElementById('audioButton');
const audioRecording = document.getElementById('audioRecording');
const messageForm = document.getElementById('messageForm');
const recordingTime = document.getElementById('recordingTime');
if (audioButton) {
audioButton.innerHTML = '<i class="fas fa-microphone"></i>';
audioButton.classList.remove('btn-danger');
audioButton.classList.add('btn-outline-success');
}
if (audioRecording) {
audioRecording.style.display = 'none';
}
if (messageForm) {
messageForm.style.display = 'flex';
}
if (recordingTime) {
recordingTime.textContent = '00:00';
}
}
// Audio playback functionality
const audioElements = new Map();
async function playAudioMessage(messageId) {
try {
// Stop any currently playing audio
audioElements.forEach(audio => {
if (!audio.paused) {
audio.pause();
audio.currentTime = 0;
}
});
// Get or create audio element for this message
let audio = audioElements.get(messageId);
if (!audio) {
// Fetch audio data
const response = await fetch(`/api/download/${messageId}`);
if (!response.ok) {
throw new Error('Failed to load audio');
}
const blob = await response.blob();
const audioUrl = URL.createObjectURL(blob);
// Create audio element
audio = new Audio(audioUrl);
audioElements.set(messageId, audio);
// Update play button when audio ends
audio.addEventListener('ended', () => {
updateAudioButton(messageId, false);
URL.revokeObjectURL(audioUrl);
audioElements.delete(messageId);
});
// Handle errors
audio.addEventListener('error', (e) => {
console.error('Audio playback error:', e);
MainJS.showError('Failed to play audio message');
updateAudioButton(messageId, false);
URL.revokeObjectURL(audioUrl);
audioElements.delete(messageId);
});
}
// Toggle play/pause
if (audio.paused) {
updateAudioButton(messageId, true);
await audio.play();
} else {
audio.pause();
updateAudioButton(messageId, false);
}
} catch (error) {
console.error('Error playing audio message:', error);
MainJS.showError('Failed to play audio message');
}
}
function updateAudioButton(messageId, playing) {
const button = document.querySelector(`[onclick*="${messageId}"]`);
if (button) {
const icon = button.querySelector('i');
if (icon) {
if (playing) {
icon.className = 'fas fa-pause';
button.style.background = '#128c7e';
} else {
icon.className = 'fas fa-play';
button.style.background = '#25d366';
}
}
}
}
// Cleanup audio elements on page unload
window.addEventListener('beforeunload', () => {
audioElements.forEach(audio => {
if (!audio.paused) {
audio.pause();
}
// URLs will be automatically revoked when the page unloads
});
audioElements.clear();
});
// Export functions for global access
window.AudioJS = {
toggleAudioRecording,
cancelAudioRecording,
stopAudioRecording,
playAudioMessage
};
|