Hi,
I cant make it play the video of embed url with the jwplayer
in my view file i am implmenting the jwlayer with follwoing
1 <script type="text/javascript">
2jwplayer("container").setup({
3flashplayer: "/js/player.swf"
4});
5</script>
6
7</head>
8<body>
9
10<video
11src="<%=vid_url %>"
12height="270"
13id="container"
14poster="/thumbs/image.jpg"
15width="480">
16</video>
this is how am inlucding jwplayer.js file
<script type="text/javascript" src="<%=request.getContextPath()%>/js/jwplayer/jwplayer.js"></script>
but its now working...any thing am doing wrong?
here <%= vid_url%> is coming dynamically from database that is embeded url
Please sign in to flag this as inappropriate.