jwplayer

jwplayer in fancybox not playing on ipad/iphone

▼魔方 西西 提交于 2019-11-28 13:13:20
I'm using the following code but videos won't play with jwplayer inside fancybox on iOS (ipad/iphone)...works fine otherwise. I appreciate that iOS doesn't handle flash, but I'm unsure of how to modify this code to provide for the html5 fallback... <script type="text/javascript" src="scripts/jwplayer/html5/jwplayer.html5.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $(".video_popup").fancybox({ fitToView: false, // to show videos in their own size content: '<span></span>', // create temp content scrolling: 'no', // don't show scrolling bars in fancybox

Start local video in fancybox mit JWPlayer, video ID in url

旧时模样 提交于 2019-11-28 13:11:22
This is how I usually start a video file with fancybox and jwplayer. Head: <head> /* ... */ <script type="text/javascript" src="jwplayer/jwplayer.js"></script> <script type="text/javascript" src="fancybox/lib/jquery-1.8.2.min.js"></script> <script type="text/javascript" src="fancybox/source/jquery.fancybox.js?v=2.1.3"></script> <link rel="stylesheet" type="text/css" href="fancybox/source/jquery.fancybox.css?v=2.1.3" media="screen" /> <script type="text/javascript"> $(document).ready(function() { $(".fancybox").fancybox(); }); </script> <script type="text/javascript"> $(document).ready(function

Changing video content type (mime type) in CDN in drupal 7

二次信任 提交于 2019-11-28 09:32:23
问题 I am using media module to save media in CDN. To play videos, we are using jwplayer in Drupal 7. Jwplayer throws error in IE, If video is not of content type [mime type] * video/mp4 *. I have changed the existing CDN videos mime type from application/octet-stream to video/mp4 . Now whatever mp4 videos are being uploaded/saved to cdn should only be of video/mp4 mime type but when I upload mp4 videos in media module it is saved in CDN with mime type application/octet-stream, How do I change the

JW-Player and Rails 3.2

家住魔仙堡 提交于 2019-11-28 08:58:53
问题 I'm trying to use JW-Player in my application. Researching the issue a bit, there seems to be several abandoned efforts to produce a gem, and the latest is undocumented. So, here's how I'm going about it: I downloaded the JW-Player version 6, unzipped and copied the files in my /app/assets/javascripts directory as follows: app/assets/javascripts/jwplayer/jwplayer.js app/assets/javascripts/jwplayer.html5.js app/assets/javascripts/jwplayer.flash.swf In my app/views/layouts/application.html.erb,

Error loading media: File could not be played error in jw_player rails

ε祈祈猫儿з 提交于 2019-11-28 06:20:57
问题 I am using the below mentioned code to play a video from my local disk. But its not working instead of that it's throwing Error loading media: File could not be played error error. I have mentioned the code below. <%= jwplayer_assets %> <%= jwplayer ({:file => "/home/user/Downloads/digital.mp4", :image => "/home/user/Downloads/Retreats_21.jpg"}) %> I'am new to this jw_player. so please help me to solve this issue. Thanks in advance.. 回答1: Download jwplayer from http://www.longtailvideo.com/jw

show subtitle outside of player

故事扮演 提交于 2019-11-28 04:07:11
问题 I want subtitles to be shown outside of jwplayer . Can we have a separate division in player skin and have separate place for subtitle? I don't want the subtitles to be shown in the video, but we want the subtitle in separate place in outside the player. Is it possible to do with JWplayer? (or any player) I will be using JWplayer to do this so please tell the answers keeping that in mind it is urgent. I will really be thankful if there is any code or logic or anything though i am using

Set Content-type of media files stored on Blob

不想你离开。 提交于 2019-11-27 11:52:28
We have a website hosted on Azure. It is media based, and we are using JWPlayer to playback media with HTTP pseudostreaming. The media files are stored on blob in 3 formats - mp4, ogg, webm. The issue is the content type of media files is set as application/octet-stream for all types. Due to this there are some issues in media playback and progress bar. How can I set the appropriate Content-type of files stored on blob (like - video/mp4, video/ogg, video/webm)? I do not want to do it manually for each file by going in blob interface. There must be some other way to do it which I am not aware

Start local video in fancybox mit JWPlayer, video ID in url

青春壹個敷衍的年華 提交于 2019-11-27 07:31:19
问题 This is how I usually start a video file with fancybox and jwplayer. Head: <head> /* ... */ <script type="text/javascript" src="jwplayer/jwplayer.js"></script> <script type="text/javascript" src="fancybox/lib/jquery-1.8.2.min.js"></script> <script type="text/javascript" src="fancybox/source/jquery.fancybox.js?v=2.1.3"></script> <link rel="stylesheet" type="text/css" href="fancybox/source/jquery.fancybox.css?v=2.1.3" media="screen" /> <script type="text/javascript"> $(document).ready(function(

jwplayer in fancybox not playing on ipad/iphone

自古美人都是妖i 提交于 2019-11-27 07:31:08
问题 I'm using the following code but videos won't play with jwplayer inside fancybox on iOS (ipad/iphone)...works fine otherwise. I appreciate that iOS doesn't handle flash, but I'm unsure of how to modify this code to provide for the html5 fallback... <script type="text/javascript" src="scripts/jwplayer/html5/jwplayer.html5.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $(".video_popup").fancybox({ fitToView: false, // to show videos in their own size content: '

Set Content-type of media files stored on Blob

北慕城南 提交于 2019-11-26 15:48:51
问题 We have a website hosted on Azure. It is media based, and we are using JWPlayer to playback media with HTTP pseudostreaming. The media files are stored on blob in 3 formats - mp4, ogg, webm. The issue is the content type of media files is set as application/octet-stream for all types. Due to this there are some issues in media playback and progress bar. How can I set the appropriate Content-type of files stored on blob (like - video/mp4, video/ogg, video/webm)? I do not want to do it manually