If specified, this provider will be used for communication and for all metadata purposes. By default, if not provided, the Metadata and RunView classes are used for this and the default GraphQLDataProvider is used which is connected to the same back-end MJAPI instance as the Metadata and RunView classes. If you want to have this component connect to a different MJAPI back-end, create an instance of a ProviderBase sub-class like GraphQLDataProvider/etc, and configure it as appropriate to connect to the MJAPI back-end you want to use, and then pass it in here.
Whether the transcript show/hide toggle button renders. Forwarded to the generic player.
Forwarded to the generic player. On by default — the streaming URL is same-origin (served by MJAPI) and a no-Range GET returns the full file, so client-side peak extraction decodes cleanly.
Transcript cues forwarded to the generic player.
Where the transcript sits. Defaults to 'bottom' (matches the generic player).
StaticɵdirStaticɵfacConvenience single-file id. Combined with FileIDs; duplicates are de-duped.
Multi-track file ids (e.g. separate meeting streams).
Returns either the default Metadata provider or the one specified in the Provider property, if it was specified
Returns either the default RunQuery provider or the one specified in the Provider property, if it was specified
Returns either the default RunReport provider or the one specified in the Provider property, if it was specified
Returns either the default RunView provider or the one specified in the Provider property, if it was specified
A callback method that is invoked immediately after the default change detector has checked the directive's data-bound properties for the first time, and before any of the view or content children have been checked. It is invoked only once when the directive is instantiated.
mj-storage-media-player— an MJStorage-bound wrapper around MJMediaPlayerComponent.Resolves one or more MJ Storage file IDs into playable MediaTracks by minting a short-lived authenticated streaming URL per file via the
CreateMediaAccessTokenGraphQL mutation, and handing those URLs to the generic player. The<audio>/<video>element streams each URL natively over HTTP Range (progressive playback + seek-before-download for large video) instead of base64'ing the whole file over GraphQL. Surfaces graceful loading / no-access / empty states.Waveform peaks: when the recording has a
peaks.jsonsidecar in storage,CreateMediaAccessTokenreturns precomputed peaks and this wrapper sets them on the MediaTrack.Peaks, so the player renders the real waveform instantly with NO client-side fetch/decode. When no sidecar exists, audio waveforms still decode client-side via the streaming URL (the waveform's one-timefetch(Url)issues a no-Range GET, which returns the full file — fine for audio). Video shows the progress bar.