Spaces:
Running
Running
File size: 9,856 Bytes
6ce4ca6 |
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 |
import type {
ProducerSensorDriver,
ConnectionStatus,
SensorFrame,
SensorStream,
VideoStreamConfig,
MediaRecorderProducerConfig,
FrameCallback,
StreamUpdateCallback,
StatusChangeCallback,
UnsubscribeFn
} from "../types/index.js";
/**
* MediaRecorder Producer Driver
*
* Captures video/audio from browser MediaDevices using MediaRecorder API.
* Simplified with best practices - uses WebM format and optimized settings.
*/
export class MediaRecorderProducer implements ProducerSensorDriver {
readonly type = "producer" as const;
readonly id: string;
readonly name: string;
private _status: ConnectionStatus = { isConnected: false };
private config: MediaRecorderProducerConfig;
// MediaRecorder state
private mediaStream: MediaStream | null = null;
private mediaRecorder: MediaRecorder | null = null;
private recordingDataChunks: Blob[] = [];
// Stream management
private activeStreams = new Map<string, SensorStream>();
// Event callbacks
private frameCallbacks: FrameCallback[] = [];
private streamUpdateCallbacks: StreamUpdateCallback[] = [];
private statusCallbacks: StatusChangeCallback[] = [];
constructor(config: MediaRecorderProducerConfig) {
this.config = config;
this.id = `media-recorder-${Date.now()}`;
this.name = "MediaRecorder Producer";
console.log("π₯ Created MediaRecorder producer driver");
}
get status(): ConnectionStatus {
return this._status;
}
async connect(): Promise<void> {
console.log("π₯ Connecting MediaRecorder producer...");
try {
// Check if browser supports MediaRecorder
if (!MediaRecorder.isTypeSupported) {
throw new Error("MediaRecorder not supported in this browser");
}
// Test basic media access
const testStream = await navigator.mediaDevices.getUserMedia({
video: true,
audio: true
});
// Close test stream immediately
testStream.getTracks().forEach(track => track.stop());
this._status = {
isConnected: true,
lastConnected: new Date(),
error: undefined
};
this.notifyStatusChange();
console.log("β
MediaRecorder producer connected successfully");
} catch (error) {
this._status = {
isConnected: false,
error: `Connection failed: ${error}`
};
this.notifyStatusChange();
throw error;
}
}
async disconnect(): Promise<void> {
console.log("π₯ Disconnecting MediaRecorder producer...");
// Stop all active streams
for (const streamId of this.activeStreams.keys()) {
await this.stopStream(streamId);
}
this._status = { isConnected: false };
this.notifyStatusChange();
console.log("β
MediaRecorder producer disconnected");
}
async startStream(config: VideoStreamConfig): Promise<SensorStream> {
if (!this._status.isConnected) {
throw new Error("Cannot start stream: producer not connected");
}
console.log("π₯ Starting MediaRecorder stream...", config);
try {
// Prepare media constraints with best practices
const constraints: MediaStreamConstraints = {
video: {
width: config.width || 1280,
height: config.height || 720,
frameRate: config.frameRate || 30,
facingMode: config.facingMode || "user",
...(config.deviceId && { deviceId: config.deviceId })
},
audio: true,
...this.config.constraints
};
// Get media stream
this.mediaStream = await navigator.mediaDevices.getUserMedia(constraints);
// Create MediaRecorder with optimized WebM settings
const mimeType = this.getBestWebMType();
this.mediaRecorder = new MediaRecorder(this.mediaStream, {
mimeType,
videoBitsPerSecond: this.config.videoBitsPerSecond || 2500000,
audioBitsPerSecond: this.config.audioBitsPerSecond || 128000
});
// Create stream object
const stream: SensorStream = {
id: `stream-${Date.now()}`,
name: `MediaRecorder Stream ${config.width}x${config.height}`,
type: "video",
config,
active: true,
startTime: new Date(),
totalFrames: 0
};
this.activeStreams.set(stream.id, stream);
// Set up MediaRecorder event handlers
this.setupMediaRecorderEvents(stream);
// Start recording with optimized interval
const recordingInterval = this.config.recordingInterval || 100;
this.mediaRecorder.start(recordingInterval);
// Update status with stream info
this._status.frameRate = config.frameRate;
this._status.bitrate = this.config.videoBitsPerSecond;
this.notifyStatusChange();
this.notifyStreamUpdate(stream);
console.log(`β
MediaRecorder stream started: ${stream.id}`);
return stream;
} catch (error) {
console.error("β Failed to start MediaRecorder stream:", error);
throw error;
}
}
async stopStream(streamId: string): Promise<void> {
console.log(`π₯ Stopping MediaRecorder stream: ${streamId}`);
const stream = this.activeStreams.get(streamId);
if (!stream) {
throw new Error(`Stream not found: ${streamId}`);
}
try {
// Stop MediaRecorder
if (this.mediaRecorder && this.mediaRecorder.state !== "inactive") {
this.mediaRecorder.stop();
}
// Stop media stream tracks
if (this.mediaStream) {
this.mediaStream.getTracks().forEach(track => track.stop());
this.mediaStream = null;
}
// Update stream
stream.active = false;
stream.endTime = new Date();
this.activeStreams.delete(streamId);
this.notifyStreamUpdate(stream);
console.log(`β
MediaRecorder stream stopped: ${streamId}`);
} catch (error) {
console.error(`β Failed to stop stream ${streamId}:`, error);
throw error;
}
}
async pauseStream(streamId: string): Promise<void> {
console.log(`βΈοΈ Pausing MediaRecorder stream: ${streamId}`);
const stream = this.activeStreams.get(streamId);
if (!stream) {
throw new Error(`Stream not found: ${streamId}`);
}
if (this.mediaRecorder && this.mediaRecorder.state === "recording") {
this.mediaRecorder.pause();
this.notifyStreamUpdate(stream);
}
}
async resumeStream(streamId: string): Promise<void> {
console.log(`βΆοΈ Resuming MediaRecorder stream: ${streamId}`);
const stream = this.activeStreams.get(streamId);
if (!stream) {
throw new Error(`Stream not found: ${streamId}`);
}
if (this.mediaRecorder && this.mediaRecorder.state === "paused") {
this.mediaRecorder.resume();
this.notifyStreamUpdate(stream);
}
}
getActiveStreams(): SensorStream[] {
return Array.from(this.activeStreams.values());
}
// Event subscription methods
onFrame(callback: FrameCallback): UnsubscribeFn {
this.frameCallbacks.push(callback);
return () => {
const index = this.frameCallbacks.indexOf(callback);
if (index >= 0) {
this.frameCallbacks.splice(index, 1);
}
};
}
onStreamUpdate(callback: StreamUpdateCallback): UnsubscribeFn {
this.streamUpdateCallbacks.push(callback);
return () => {
const index = this.streamUpdateCallbacks.indexOf(callback);
if (index >= 0) {
this.streamUpdateCallbacks.splice(index, 1);
}
};
}
onStatusChange(callback: StatusChangeCallback): UnsubscribeFn {
this.statusCallbacks.push(callback);
return () => {
const index = this.statusCallbacks.indexOf(callback);
if (index >= 0) {
this.statusCallbacks.splice(index, 1);
}
};
}
// Private helper methods
private setupMediaRecorderEvents(stream: SensorStream): void {
if (!this.mediaRecorder) return;
this.mediaRecorder.ondataavailable = (event) => {
if (event.data && event.data.size > 0) {
this.recordingDataChunks.push(event.data);
// Create frame from chunk
const frame: SensorFrame = {
timestamp: Date.now(),
type: "video",
data: event.data,
metadata: {
width: stream.config.width,
height: stream.config.height,
frameRate: stream.config.frameRate,
codec: "webm",
bitrate: this.config.videoBitsPerSecond
}
};
// Update stream stats
stream.totalFrames = (stream.totalFrames || 0) + 1;
// Notify frame callbacks
this.notifyFrame(frame);
}
};
this.mediaRecorder.onstop = () => {
console.log("π₯ MediaRecorder stopped");
// Create final frame with complete recording
if (this.recordingDataChunks.length > 0) {
const finalBlob = new Blob(this.recordingDataChunks, {
type: "video/webm"
});
const finalFrame: SensorFrame = {
timestamp: Date.now(),
type: "video",
data: finalBlob,
metadata: {
width: stream.config.width,
height: stream.config.height,
codec: "webm",
isComplete: true,
totalSize: finalBlob.size
}
};
this.notifyFrame(finalFrame);
}
// Clear chunks
this.recordingDataChunks = [];
};
this.mediaRecorder.onerror = (event) => {
console.error("β MediaRecorder error:", event);
this._status.error = "Recording error occurred";
this.notifyStatusChange();
};
}
private getBestWebMType(): string {
// Best WebM types in order of preference
const types = [
"video/webm;codecs=vp9,opus",
"video/webm;codecs=vp8,opus",
"video/webm"
];
for (const type of types) {
if (MediaRecorder.isTypeSupported(type)) {
return type;
}
}
return "video/webm"; // Fallback
}
private notifyFrame(frame: SensorFrame): void {
this.frameCallbacks.forEach((callback) => {
try {
callback(frame);
} catch (error) {
console.error("Error in frame callback:", error);
}
});
}
private notifyStreamUpdate(stream: SensorStream): void {
this.streamUpdateCallbacks.forEach((callback) => {
try {
callback(stream);
} catch (error) {
console.error("Error in stream update callback:", error);
}
});
}
private notifyStatusChange(): void {
this.statusCallbacks.forEach((callback) => {
try {
callback(this._status);
} catch (error) {
console.error("Error in status change callback:", error);
}
});
}
} |