@newgameplusinc/odyssey-audio-video-sdk-dev 1.0.44 â 1.0.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/MediasoupManager.js +25 -3
- package/package.json +1 -1
package/dist/MediasoupManager.js
CHANGED
|
@@ -104,6 +104,21 @@ class MediasoupManager {
|
|
|
104
104
|
async produce(track, appData) {
|
|
105
105
|
if (!this.sendTransport)
|
|
106
106
|
throw new Error("Send transport not initialized");
|
|
107
|
+
console.log(`đ [MediaSoup] Attempting to produce ${track.kind} track, transport state:`, {
|
|
108
|
+
id: this.sendTransport.id,
|
|
109
|
+
closed: this.sendTransport.closed,
|
|
110
|
+
connectionState: this.sendTransport.connectionState,
|
|
111
|
+
});
|
|
112
|
+
// Check if transport is closed or failed
|
|
113
|
+
if (this.sendTransport.closed) {
|
|
114
|
+
throw new Error("Send transport is closed");
|
|
115
|
+
}
|
|
116
|
+
// Check if this track is already being produced
|
|
117
|
+
const existingProducer = Array.from(this.producers.values()).find(p => p.track?.id === track.id);
|
|
118
|
+
if (existingProducer) {
|
|
119
|
+
console.log(`âšī¸ [MediaSoup] Track ${track.id} already being produced, returning existing producer`);
|
|
120
|
+
return existingProducer;
|
|
121
|
+
}
|
|
107
122
|
// Configure simulcast for video tracks for adaptive bitrate
|
|
108
123
|
const produceOptions = { track, appData };
|
|
109
124
|
if (track.kind === 'video') {
|
|
@@ -120,9 +135,16 @@ class MediasoupManager {
|
|
|
120
135
|
videoGoogleStartBitrate: 1000
|
|
121
136
|
};
|
|
122
137
|
}
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
138
|
+
try {
|
|
139
|
+
const producer = await this.sendTransport.produce(produceOptions);
|
|
140
|
+
this.producers.set(producer.id, producer);
|
|
141
|
+
console.log(`â
[MediaSoup] Successfully produced ${track.kind} track`);
|
|
142
|
+
return producer;
|
|
143
|
+
}
|
|
144
|
+
catch (error) {
|
|
145
|
+
console.error(`â [MediaSoup] Failed to produce ${track.kind} track:`, error);
|
|
146
|
+
throw error;
|
|
147
|
+
}
|
|
126
148
|
}
|
|
127
149
|
async consume(data) {
|
|
128
150
|
if (!this.recvTransport)
|
package/package.json
CHANGED