Skip to main content

#question 1 : how to embed (in a course lesson) a video with the mp4 file (for instance with an address in a cloud server) ? When trying I got an error (undefined is not an object (evaluating 'e.oembed.html') and no error log.

#question 2 : how to embed the same mp4 file in a message in the feed to have a preview as when we put a YT address ?

#question 3 : what is the purpose of "Open this link in a new tab" in "Edit course/Add Custom Link". It seems to always open in a new tab.

#feature-request 1 : is it possible to have an edit button when we are in a lesson and we have the right to manage it ?

#feature-request 2 : enable/disable comments for all lesson of a course (not only one by one)

#feature-request 3 : ability to change the slug of a course when a course is in draft mode

#bug : when posting a Vimeo playlist, the player is displayed in black with a message "no video has been added"

Bast #Sén

#feature-request 4 : when clicking in center of the page and when the right panel is opened (to change settings for instance) -> close the right panel (instead of clicking the X)

Mat ‎

Try to embed video with the below code

<video width="320" height="240" controls>
 <source src="https://pathToYourVideoAndFileName.mp4" type="video/mp4">
 Your browser does not support the video tag.
</video>

<video src="https://htmlreference.io/assets/HTML%205%20Video.mp4" controls>
</video>

Make sure you dont block oembed with any plugin or custom htaccess (like I did)

Currently oembed is limited (ex. YT, Vimeo) that is why autopopulating video won't work with other video resources - for embeding video in the feed read more here in comment

We will add video options on the feed and comment editor as well :)

Ps. Open links in a new windows will work also for internal link (your domain)

Bast #Sén

Mat, Great, thank you it is working nicely :)