Capture linked Youtube videos

I’m trying to capture pages, such as this one, which include YouTube videos.

The page has a link to a YouTube video which is not being captured in the archive.
Currently running this basic script:

docker run --rm
–name alumni-browsertrix
-v “${CRAWL_WORKDIR}:/crawls”
–shm-size=1gb
“${IMAGE}” crawl
–url “https://www.stclares.ac.uk/”
–collection “${COLLECTION}”
–title “St Clare’s Oxford - ${DATESTAMP}”
–scopeType host
–behaviors autofetch,autoscroll,siteSpecific
–exclude “english_quotes”
–workers 2

Any thoughts on how to reliably capture the videos for playback without Youtube later?

Taking a quick look, it appears the site has a custom play video that renders the video in a popup. You can create a custom behavior that clicks this particular button, since it appears to link to youtube, but actually does something different (opens a popup), the standard autoclick behavior skips it.. but you should be able to create your own behavior script that clicks the button (and perhaps others that load videos in popups).
For more info, here are our docs for behaviors:

Thanks, let me play around with that.