Web RTC Streaming Library#
@nvidia/omniverse-webrtc-streaming-library v4.4.2
This package provides functionality to allow managing Omniverse Kit applications streaming from GFN, on a local machine, or from some container instance with a provided URL.
Usage#
Class AppStreamer can be used connect to, pause, resume, and terminate a streaming Omniverse Kit application session. It can also be used to send/receive custom messages to/from the streaming Kit application.
Installation#
npm install @nvidia/omniverse-webrtc-streaming-library
Importing the Package#
import { AppStreamer } from '@nvidia/omniverse-webrtc-streaming-library'
GFN#
If connecting to an application running on GFN, you must import GFN separately. The recommended method to import GFN into a project is by sourcing the CDN in the project index.html file, as shown below:
<!DOCTYPE html>
<html lang="en">
<body>
<script src="https://sdk.nvidia.com/gfn/client-sdk/1.x/gfn-client-sdk.js"></script>
</body>
</html>
Example#
Setup the config for a Kit application running locally or running in a remote container.
// This example server is localhost, but can be a valid remote IP as well.
const streamParams = {
streamSource : 'direct',
streamConfig : {
videoElementId : 'remote-video',
audioElementId : 'remote-audio',
server : '127.0.0.1',
width : 1920,
height : 1028,
fps : 60,
onUpdate : (message: StreamEvent) => {console.info('Stream status updated')},
onStart : (message: StreamEvent) => {console.info('Stream started')}
}
};
Setup the config for a Kit app running on GFN.
const streamParams = {
streamSource : 'gfn',
streamConfig : {
// GFN will be resolved by the script source discussed above.
GFN : GFN,
catalogClientId : <your value>,
clientId : <your value>,
cmsId : <your value>
onUpdate : (message: StreamEvent) => {console.info('Stream status updated.')},
onStart : (message: StreamEvent) => {console.info('Stream started')}
}
};
Use the config to connect to a running stream using the config data.
AppStreamer.connect(streamParams)
.then((result: StreamEvent) => {
// The connection request was successful. The onStart
// callback will fire when the stream is ready.
console.info(result);
})
.catch((error: StreamEvent) => {
// The connection request has failed.
console.error(error);
});