Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Play a local video from iPad in an HTML 5 webpage

Does anyone know if you can use the HTML5 video tag to play a video from the iPad library?

Something like:

<source src="/local/path/video.mp4" type="video/mp4" />

Thanks for your time

like image 538
JeremyBeadle Avatar asked Oct 13 '10 14:10

JeremyBeadle


2 Answers

As far as I know, web pages don’t have access the iOS devices’ filesystems (hence the lack of support for <input type="file"> on iOS).

The user doesn’t have direct access to the filesystem, so it would be odd if web pages did.

like image 100
Paul D. Waite Avatar answered Oct 21 '22 18:10

Paul D. Waite


There is a solution even though it is not the most convenient.

You can Jailbreak your iOS device, install Cydia and download/install a web server like iFile.

Then you can reference any file of the devices' filesystem by referencing the IP of the device like:

<source src="http://192.168.x.x:10000/local/path/video.mp4" type="video/mp4" />

iFile will also provide you direct access to your filesystem. As an alternative you can use OpenSSH to access your filesystem remotely via programs like WinSCP.

like image 1
Marvin Strenger Avatar answered Oct 21 '22 18:10

Marvin Strenger