symbl-transcription
/
1.0.2
symbl-transcription 1.0.2
Install from the command line:
Learn more about npm packages
$ npm install @dyte-in/symbl-transcription@1.0.2
Install via package.json:
"@dyte-in/symbl-transcription": "1.0.2"
About this version
Find the Dyte integration logic in your codebase which may look like this
// Somewhere in your codebase
const meeting = DyteClient.init(...)
On top of the file where integration was found, import this package.
import { activateTranscriptions, deactivateTranscriptions } from '@dytesdk/symbl-transcription';
Now activate transcriptions.
activateTranscriptions({
meeting: meeting, // From DyteClient.init
symblAccessToken: 'ACCESS_TOKEN_FROM_SYMBL_AI',
noOfTranscriptionsToShow: 3,
noOfTranscriptionsToCache: 200,
transcriptionDivId: 'CREATE_A_DIV_AND_PUT_THE_ID_HERE',
});
Once done, deactivate the transcriptions.
deactivateTranscriptions({
meeting: meeting, // From DyteClient.init
symblAccessToken: 'ACCESS_TOKEN_FROM_SYMBL_AI',
noOfTranscriptionsToShow: 3,
noOfTranscriptionsToCache: 200,
transcriptionDivId: 'CREATE_A_DIV_AND_PUT_THE_ID_HERE',
});
- Go to https://symbl.ai/ and register.
- Find your appId and appSecret on Symbl.ai post registeration in account settings.
- Run this CURL.
curl -k -X POST "https://api.symbl.ai/oauth2/token:generate" \
-H "accept: application/json" \
-H "Content-Type: application/json" \
-d $'{
"type" : "application",
"appId": "YOUR_APP_ID",
"appSecret": "YOUR_APP_SECRET"
}'
Details
- symbl-transcription
- dyte-in
- over 2 years ago
- 1 dependencies
Assets
- symbl-transcription-1.0.2-npm.tgz
Download activity
- Total downloads 0
- Last 30 days 0
- Last week 0
- Today 0