Plug in video control in Moodle

1

Does anyone know if there is any module or tool that controls access to videos in Moodle ?

I was thinking about creating something of the type, for example:
The student started watching the video number 1 and stopped watching 23:12 minutes of video and left the system, when he entered again could have the option to continue where he left off, and with that information create a web-service that would take that data and send it to any sternum system.

Could someone give me some tips on how to do this, and if it is possible?

    
asked by anonymous 23.02.2016 / 14:47

1 answer

1

You can develop a modulo plugin to solve this problem. The modules in moodle are available in the moodle/mod directory. Your idea can be based on a concept called Pseudo stream that PHP offers.

The main logic would be to manage stream em buffer .

    
03.05.2016 / 17:36