Simone M
Simone M

Reputation: 687

Meteor cordova app, access local stored video

i'm developing a meteor/cordova APP. I try to play offline video stored on device memory and play it in html5 video tag but when i get file local path in format 'file:///' i cannot load it because i have a security access violation.

Upvotes: 0

Views: 303

Answers (1)

snese
snese

Reputation: 11

Here is my test environment and it works.

  • Cordova 5.4.0
  • Must Plugin: cordova-plugin-file 3.0.0 "File" (above)

You should use cdvfile:// instead of file:/// the relate config please reference the cdvfile protocol

Upvotes: 1

Related Questions