Play a local video from iPad in an HTML 5 webpage

自作多情 提交于 2019-12-05 04:44:14

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.

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!