The whole diff: swap the import and give the player a URL instead of a Vimeo id.
// before: an id that only means something inside Vimeo
import Player from '@vimeo/player';
const player = new Player('container', { id: 123456789 });
// after: a URL you control. Everything below this line is unchanged.
import Player from '@player/static';
const player = new Player('container', { url: 'https://cdn.example.com/video.mp4' });
Shared from Little Bird Electronics curriculum.