| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
To get started, clone the repo:
$ git clone https://github.com/zoom/zoom-videosdk-web-processor-sample.git
Once cloned, navigate to the sample directory:
$ cd sample
Then install the dependencies:
$ npm install
Open the directory in your code editor.
Open the src/config/dev.ts file and enter required session values for the variables:
| Key | Value Description |
|---|---|
| sdkKey | Your Video SDK Key. Required. |
| sdkSecret | Your Video SDK Secret. Required. |
| topic | Required, a session name of your choice or the name of the session you are joining. |
| name | Required, a name for the participant. |
| password | Optional, a session passcode of your choice or the passcode of the session you are joining. |
Example:
{
// ...
sdkKey: 'YOUR_VIDEO_SDK_KEY',
sdkSecret: 'YOUR_VIDEO_SDK_SECRET',
topic: 'Cool Cars',
name: 'user123',
password: 'abc123'
// ...
}Reminder to not publish this sample app as is. Replace the Video SDK JWT generator with a backend Video SDK JWT generator to keep your SDK Secret safe.
Save dev.ts.
Run the app:
$ npm run dev
Navigate to http://localhost:5173/
Start video and select a processor, enjoy it.
We have two test processors now, the source code is in the lib folder and need to build and put it into a public server, you can see the bulit files on public folder.
| Back | FazBrowse Home | New Git URL |