You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lately I've encountered use case when I needed to stream from a file. Actual class MediaStream have an internal constructor, so I wasn't able to create it with JS stream. Would it be possible to add some kind of factory method to JS implementation of MediaStream? For example:
The text was updated successfully, but these errors were encountered:
DFedonnikov
changed the title
Add getUserMedia with JS media stream as parameter
Add factory method to get JS media stream as libraries MediaStream
Sep 3, 2023
DFedonnikov
changed the title
Add factory method to get JS media stream as libraries MediaStream
Add factory method to get JS media stream as librarie's MediaStream
Sep 3, 2023
DFedonnikov
changed the title
Add factory method to get JS media stream as librarie's MediaStream
Add factory method to get JS media stream as library MediaStream
Sep 3, 2023
Lately I've encountered use case when I needed to stream from a file. Actual class MediaStream have an internal constructor, so I wasn't able to create it with JS stream. Would it be possible to add some kind of factory method to JS implementation of MediaStream? For example:
MediaStream.fromSource(stream: org.w3c.dom.mediacapture.MediaStream): MediaStream { return MediaStream(stream) }
The text was updated successfully, but these errors were encountered: