- Posts: 4
COMMUNITY FORUM
responsive allvideo
- Boillat Jean-Philippe
-
Topic Author
- Offline
- New Member
.... but I'm not able to make it work in IE,SAFARI,IPHONE with the "responsive skin" (works in Firefox)
Can someone give a clue of what to change?
Please Log in or Create an account to join the conversation.
- macchap
-
- Offline
- New Member
- Posts: 2
Please Log in or Create an account to join the conversation.
- etw
-
- Offline
- New Member
- Posts: 3
In IPAD 1 IPAD 3, IE, SAFARI... well the rest its all broken.
I tried in Joomla 2.5 and 3.0, both with same problem.
Only in IE7 its ok, because it passes to static automatically.
I bayed the simple gallery pro, very clean and working very well in desktop computer and IPAD but the responsive mode of AllVideos its not working at all.
Please Log in or Create an account to join the conversation.
- Donnell Holness
-
- Offline
- New Member
- Posts: 1
The plugin brings up the audio-player on the iPhone, but you are not able to click it (classic works perfectly).
You can see a demo here: 174.120.137.227/~thenews/ - open on computer: everything is fine - open with iPhone: black background with 3 unclickable, cut-off arrows.
I tried to change the "classic" CSS inside /jw_allvideos/jw_allvideos/tmpl/Classic to work with % instead of px, but there is no change - the player it self will still stay the same size as difined in the plugin-backend.
Is there a workaround or any suggestion to have the allvideos plugin responsive on iPhones/iPads etc.? I don't wanna touch the js-files, if possible.
THX for every suggestion or even better the solution of this problem.
Please Log in or Create an account to join the conversation.
- macchap
-
- Offline
- New Member
- Posts: 2
Please Log in or Create an account to join the conversation.
- terk
-
- Offline
- New Member
- Posts: 7
The controlls are all messed up, so it seems the skin is broken.
Allvideos 4.5, k2 2.6.6 Joomla 3.1.1
Please Log in or Create an account to join the conversation.
- terk
-
- Offline
- New Member
- Posts: 7
10x in advance!
Please Log in or Create an account to join the conversation.
- Katia
-
- Offline
- Platinum Member
- Posts: 4696
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- JoomlaWorks
-
- Offline
- Admin
- Posts: 6227
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- terk
-
- Offline
- New Member
- Posts: 7
Thanks for all the great work in Joomlawork. All new releases are just brilliant!
K
Please Log in or Create an account to join the conversation.
- natecovington
-
- Offline
- Senior Member
- Posts: 68
When I switch to "Responsive" AllVideos skin, the player only works in Firefox... in Safari / Chrome, I am getting an array of play buttons and 'full screen' buttons... just like in the screenshots.
@Fotis, can you provide an example link to a responsive site that uses the AllVideo plugin in Responsive mode? Your AllVideos demo page is not responsive so we can't test this part:
demo.joomlaworks.net/allvideos
There is also a Joomla forum thread where people are discussing this same issue:
forum.joomla.org/viewtopic.php?f=628&t=798790&p=3040021#p3040021
Thanks in advance!
-Nate
Please Log in or Create an account to join the conversation.
- micheltorres
-
- Offline
- New Member
- Posts: 2
I have same problem here.
Allvideos responsive work 100% on every browsers, except on iOS.
Someone knows how to solve possible CSS conflicts?
Thanks
Please Log in or Create an account to join the conversation.
- Katia
-
- Offline
- Platinum Member
- Posts: 4696
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- natecovington
-
- Offline
- Senior Member
- Posts: 68
Did you check our demo site AllVideos in iOS browser?
Yes, I checked your demo site, the MP4 video file plays fine in iOS browser, but your demo site is not 'responsive' so we can only confirm that the video plays. When I set up a test page on my clients' responsive site, and link to your same MP4 video file (flvremote), it only works using the Classic player, which is a fixed-pixel-dimension and doesn't scale down to small screens. Here is a link:
www.forensicdjs.com/_new_site/index.php?option=com_k2&view=item&id=363:allvideos-demo-video-mp4&Itemid=107
You'll see it works fine in Firefox but not Safari or Chrome...
Thanks,
-Nate
Please Log in or Create an account to join the conversation.
- JoomlaWorks
-
- Offline
- Admin
- Posts: 6227
I'll investigate further.
(Either way I was considering of offering more player options in the coming update, along with a few more providers.)
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- micheltorres
-
- Offline
- New Member
- Posts: 2
I agree that problem is some CSS conflict, but I can't see how. :(
Thanks
Please Log in or Create an account to join the conversation.
- etw
-
- Offline
- New Member
- Posts: 3
Please Log in or Create an account to join the conversation.
- Katia
-
- Offline
- Platinum Member
- Posts: 4696
are your referring to FPSS or AllVideos?
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- natecovington
-
- Offline
- Senior Member
- Posts: 68
I see - the player is switching to HTML5 in Webkit browsers that support native H.264 and the player's CSS seems to get funked up…
I'll investigate further.
(Either way I was considering of offering more player options in the coming update, along with a few more providers.)
Fotis do you have an ETA on a new version of AllVideos (4.5.1) with a fix for this 'webkit responsive bug'?
Thanks!
-Nate
Please Log in or Create an account to join the conversation.
- etw
-
- Offline
- New Member
- Posts: 3
@ etw,
are your referring to FPSS or AllVideos?
Well both, for now I put disabled the FPSS, I am using other options. :-[
I really don't mind to pay for the AllVideos Extension, but I really hope that you can find solution for this big problem. I don't know if this can help you but it was the solution that I found and that I applied in one of my websites(not Joomla based).
video id="video-cont" style="width:100%; height:100%;
...
jwplayer('video-cont').setup ..... 'height':'100%','width':'100%'
$(document).ready(resizePlayer);
$(window).resize(resizePlayer);
function resizePlayer() {
var contentWidth = $("#newbox").width();
var newVideoHeight = (contentWidth * 270) / 480;
$("#video-cont").width(contentWidth);
$("#video-cont").height(newVideoHeight)
}
Please Log in or Create an account to join the conversation.