Open Media Ad Player Single Decoder Dash.js Binder
npm install @ygoto3/omap-dashjs-sd-binderAn OMAP binder implementation to bind dash.js to an OMAP client. This binder is implemented to manage an environment where only a single decoder is available.
API document is available.
To install @ygoto3/omap-dashjs-sd-binder, run the command below.
``sh`
$ npm install @ygoto3/omap-dashjs-sd-binder --save
Then you can bind any OMAP client to dash.js.
`ts
import { OmapDashjsSDBinder } from '@ygoto3/omap-dashjs-sd-binder';
const player = dashjs.MediaPlayer().create();
const adDisplayContainer = document.getElementById('ad-display-container') as HTMLDivElement;
const omapClient = new YourOMAPClient();
const omapBinder = new OmapDashjsSDBinder(player, adDisplayContainer);
omapBinder.bind(omapClient);
``