This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Player } from '@gcorevideo/player' | |
import { PlaybackSettings } from './plugins/PlaybackSettings' | |
Player.registerPlugin(PlaybackSettings) | |
const player = new Player({ | |
playbackSettings: { | |
restrictResolution: 360, | |
}, | |
sources: [{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fix publishing pipeline | |
First public release | |
Publish media controls | |
Refactor closed captions plugin | |
Fix audio tracks and picture-in-picture alignment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { setTracer, version } from '@gcorevideo/player' | |
import { setTracer as setTracerPlugins } from '@gcorevideo/player-plugins' | |
import {SentryTracer } from '@gcorevideo/utils' | |
import * as Sentry from '@sentry/vue' | |
if (import.meta.client) { | |
const tags = { | |
client: '%s', | |
// build_id: import.meta.env.MY_APP_BUILD_ID, | |
} |