Allows administrators to configure a message that will will be displayed at the end of a kWebcast event.
npm install @playkit-js/kwebcast-ended-message

This player plugin shows a configurable message at the end of a kWebcast (Kaltura Webcast) event.
You can configure a different message if the broadcast ended early (early = at least 10 minutes ahead of the scheduled end time), such as "This event has ended earlier than scheduled, enjoy the free time!"
Note: this plugin only works with live entries created by the kWebcast module.
When a live broadcast has been watched by the user and the stream goes offline, show the "webcast ended" message (configured).
``
/* The message that shows up at the end of the broadcast /
message: string;
/* (Optional) The title /
title: string;
/* (Optional) If the broadcast ends early (10 minutes or more before the scheduled end time), show this message /
endedEarlyMessage: string;
`
`shFirst, checkout the repository and install the required dependencies
git clone https://github.com/kaltura/playkit-js-kwebcast-ended-message.git
The dev server will host files on port 8000. Once started, the demo can be found running at http://localhost:8000/.
``
npm run lint:check
Run linter with auto-fix mode:
``
npm run lint:fix
Run prettier to format code
``
npm run prettier:fix
Run type-check to verify TypeScript types
``
npm run types:check
Run all tests at once:
``
npm test
Run unit tests in watch mode:
```
npm run test:watch
This project is licensed under the AGPL-3.0 License - see the LICENSE file for details