Activities: Pcast
mod_pcast
Maintained by
Stephen Bourget
Activity module to create podcasts in Moodle
674 sites
260 downloads
37 fans
The Pcast module makes it simple to create podcasts in moodle. Podcast episodes can be instructor created or added by course participants.
Contributors
Stephen Bourget (Lead maintainer)
Please login to view contributors details and/or to contact them
the video size is bigger than my web tile width (I'm using campus theme) and so the users are unable to see the video thumbnail and also the file descriptions
how can I limit the video module size in percent of the tile width or pixel ?
The other feeds (from forum) works as expected. Anyone else here having RSS feed problems or any idea about this?
I use Moodle 3.2.4 and Podcast 3.2 (2016111000)
see: (https://docs.moodle.org/33/en/Pcast_FAQ)
< item>< title>RSS Error< link>http://192.168.251.139/moodle< pubDate>Tue, 20 Nov 2018 10:04:17 GMT< description>Error reading RSS data< guid isPermaLink="true">http://192.168.251.139/moodle< /item>
https://docs.moodle.org/35/en/Pcast_FAQ
the video size is bigger than my web tile width (I'm using campus theme) and so the users are unable to see the video thumbnail and also the file descriptions
https://tracker.moodle.org/browse/CONTRIB
There is a conditional on line 1666 in mod/pcast/lib.php attempting to instantiate/use the object class which is no longer relevant in PHP7
...
else if ($userid and $nullifnone) {
$grade = new object();
$grade->userid = $userid;
$grade->rawgrade = null;
pcast_grade_item_update($pcast, $grade);
Replaced with stdClass() to resolve. I see you use stdClass through your plugin so supsect this block was omitted.
plugin ver: 3.5 (2018051602) (2018051602)
mdl_ver: 3.6
It will be available in the next release. (If you need the fix sooner you can download the updated plugin directly from GitHub.)