【发布时间】:2015-04-05 08:34:43
【问题描述】:
i am working on MVC5 video website with embedded jwplayer, the "file" value is assigned dynamically from @viewBag.VideoUrl to jwplayer and video plays with no problem...All videos from database loaded on the episodeList view, now for multiple videos or video_playlist, i want to play video which i select by clicking as can be seen from snapshot at the end..i been reading about doing the playlist technique via RSS feed,,,Is it the only way to create PlayList Rss feed???
播放器脚本
<div id="mediaplayer"></div>
<script type="text/javascript">
$(document).ready(function(){
jwplayer('mediaplayer').setup({
'file': 'rtmp://872083564.r.cdnsun.net/872083564/_definst_/mp4:872083564/
@ViewBag.VideoUrl',
'autostart': true,
'width': 320,
'height': 240,
rtmp: {
securetoken: "fsdf5sdfsdf43f5"
},
});
});
</script>
查看代码以在表格的 3 列中显示所有视频,使用 foreach 循环来执行每个项目,我想尝试“onclick for href”但不知道该怎么做,仅此而已强>
const int NumberOfColumns = 3; int skip = 0; var items = Model.Skip(skip).Take(NumberOfColumns);
while (items.Count() > 0) {
<tr>
@foreach (var item in items) {
<td width="450">
<table class="thumbmain">
<tr>
<td>
<a href="" />
<img src="@Url.Content(item.PosterUrl)" width="120" height="120" class="imageclass"
onclick="someAction" />
</td>
</tr>
<tr>
<td style="text-align: center; font-weight: bold; color: Teal">
@item.Title
</td>
</tr>
</table>
</td>
}
</tr>
skip += NumberOfColumns; items = Model.Skip(skip).Take(NumberOfColumns); } } </table>
</div> </div> </div>
控制器动作
public ActionResult EpisodeList(Guid? id)
{
IQueryable<VideoEpisodeDM> episodesdm = db.VideoEpisode
.Where(ve => ve.VideoId == id);
string video;
foreach (var item in episodesdm)
{
video = item.Title;
ViewBag.VideoUrl = item.VideoUrl;
}
return View(episodesdm.ToList());
}
输出:
i want to play videos accordingly like if i click "downTo" it should load/play "downTo" video, if "finaltick" then finaltick url should load in file''....if there is a way please help or reference will be appreciated...Thanks for your time
【问题讨论】:
标签: javascript jquery asp.net-mvc-5 jwplayer jwplayer6