-
Notifications
You must be signed in to change notification settings - Fork 519
Description
In Chamilo 1.11.x of 2025/03/11 it manage different format of recording.
If the video format is configured in BBB then you have a "video" button that appears next to the "presentation" in the recording columns in the BBB tool in Chamilo.
This works fine.
In the action column there is a recording icon
The link for this recording icon is generated by the getActionLinks function in plugin/bbb/lib/bbb.lib.php
The problem is that when this function is called it only gets the information of the first recording which is not necessarily the one having the record. So we should make sure to use the information of the meeting in the video format.
Also since BBB 3.0 the name of the mp4 file is different.
Before it was this format :
$recordInfo['playbackFormatUrl'].'/capture.m4v',
Now it is :
$recordInfo['playbackFormatUrl'].'/'video-0.m4v,