Display Youtube Video for LMS app

I’m trying to build an LMS app and want to display a lesson video. But I don’t find preview option for video url. May I know the ETA for this feature?

LMS app on other platform:
How to build a Udemy Style LMS App With GlideApp part 1

There is currently no option for a preview video.

This is a must have feature and enables lot of usecases for nocobase.

May I know when this is planned to release?

hi, I also create LMS with nocobase.
if you use pageV2, add a JSfield for URL and paste this code in the editor:

const iframe = document.createElement('iframe');
iframe.src = ctx.value;
iframe.setAttribute('allow-same-origin', true);
iframe.setAttribute('allowfullscreen', true);
iframe.setAttribute('referrerpolicy', 'strict-origin-when-cross-origin');
ctx.render(iframe);

if you dont want to use pageV2, there’s also alternative.