I have created small/simple a video-sharing site with videojs, but I also want to add a feature where I can download the currently playing video. But I'm struggle to get start on it. Right now, each video is playing by passing in its correct id. (in the database, i got id, filename (video source), thumbnails, duration). Could I do something like this: View:
<a href="<?= $this->url->get("index/download/".$video->id) ?>"> <button style="position:relative; right:-665px; top:-20px;" type="button" class="btn btn-primary">Download Current Video</button> </a>
and in the IndexController, have something like this
public function downloadAction($id) { //possibly needs help here? }
Thanks for any help.