Does PhoneGap have a video player?

I noticed that PhoneGap has an audio player and recorder, but I was wondering if it has a way to play video?

thanks

+8
cordova
source share
5 answers

It doesnโ€™t. But plugins are available for use.

I just used the bottom

Telephony - video plugin - github

Telephone Communications - Video Plugin - Simon Blog

+4
source share

PhoneGap uses HTML5, so it supports the tag.

+3
source share

There are many problems in this problem. Someone advises using the aVideo plugin. But it usually does not work on PhoneGap 1.0.0. So I make small changes to make it work. Result with an example.

+1
source share

You cannot use the HTML5 tag to play local videos on your phone, so you should use the plugin instead. I have implemented a plugin for this before and I will update README soon, but this is a typical Phonegap plugin.

Telephone player

+1
source share

Try using

<video></video> 

HTML5 tag.

0
source share

All Articles