html5 video playing in iPad 3.2 but not in 4.1 - ipad

I have created a web safe video by Saving for web in quicktime, now in the web page that video is playing when I select Version 3.2 for the SDK but it does not work when I select 4.0 or 4.1.
Is there any thing changed about the video?

Related

Video is not supported in iOS version

I made applications in react native, Application like Tik-Tok (Users can upload short videos and other users can view these videos all functionality is working well in the android version)
The video is not showing in the iOS version only audio is available,
I notice this video is open in chrome and other browsers except safari browsers,
When I try to play video in the default player of the Mac OS it's not working and when I try with VLC it's working well

HLS AAC 5.1 audio not working on Chromecast 2 and Chromecast Ultra with firmware 1.28.100555

I am unable to play HLS video with 5.1 audio track on Chromecast 2 and Chromecat Ultra. The same files worked just fine on previous firmware releases before 1.28.100555.
In order to avoid any Objective-C programming errors all the tests I made were done using a slightly modified "CastVideos-ios" (official sample from Google Cast SDKs github).
The only modification I made is related to "media_list_1_url" in order to make the application load a custom JSON file pointing to my video sample files.
The JSON list is available at this link:
http://144.76.13.14/GoogleCastTestList.json
When I try to play the 5.1 audio track version on Chromecast 2 and Chromecast Ultra the video simply dose not load. Both of the test files play without problems on Chromecast 1.
Can someone help me find out if this is a Chromecast firmware issue or I must modify the Cast sender app code in order to play 5.1 audio files ?

Html5 audio player won't display in iOS app using meteor

I'm am trying to build a simple music app using meteor as my framework. I'm using html5 audio tags as my player. Everything works and displays completely fine in my browser but when testing on the iOS simulator all i get is a black screen with a giant gray play button that does not work.
I'm wondering if this is a meteor problem or if iOS limitations are too robust in order for the html5 audio player to display correctly.
If anyone knows the solution to this please help.
Thanks
I had the same issues with the html5 video element. I will share my findings for that as it sounds like the same issue for the audio tag.
iOS web app and Cordova
For iOS just add “webkit-playsinline” next to your audio tag as done below for video:
<video webkit-playsinline>
<source src="mySource.mp4" type="video/mp4">
</video>
Cordova
For a Meteor Cordova iOS app you also need to add the following to mobile-config.js to set the cordova config.xml settings:
App.setPreference('AllowInlineMediaPlayback', true);
You can read up some more about this on http://blog.blairvanderhoof.com/post/78586868260/getting-the-html5-video-tag-to-work-in-cordova-for
If that does not work you can go with the following cordova plugin which supports audio playback: http://plugins.cordova.io/#/package/org.apache.cordova.media
Example from the plugin docs:
var myMedia = new Media("http://audio.ibeat.org/content/p1rj1s/p1rj1s_-_rockGuitar.mp3")
myMedia.play({ numberOfLoops: 2 })
Hope it helps.
Regards,
Riaan
HTML5 Audio is not supported on most mobile devices. Check out the documentation at: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio for more information. iOS does not support a lot of the new HTML5 Media elements and APIs at this point. The only mobile browser that supports HTML5 audio is Firefox Mobile. Hope this helps!

Swf streaming on iPAD with Flash media server

I have a swf file with dynamic data variables embedded in a html page with swfobject.js. But this will not work on iPAD since its swf. If I move this swf to Flash media server (version 5.0) will this work via HLS streaming. We have a adobe media server of version 5.0. Will this work on iOS devices if I load this via FMS with dynamic data
Yes. It is designed to work on iPad. I tried StageVideo and HLS from FMS in the past.
http://www.overdigital.com/2012/01/14/720p-video-on-ipad-and-android-tablets-with-adobe-air/

How can I use HTML5 download attr in iPhone using PhoneGap

I have a PhoneGap application that is working on Android. The app accesses mp3 audios from a server and plays for the user. It also uses HTML5 download feature to download any audio.
I am now compiling this for iPhone and I have been told that one cannot download stuff like MP3 audios on iPhone hence this HTML5 download won't work.
I am seeking confirmation if and how the download facility works on iPhone? I am totally new to iPhone.

Resources