在cocos creator 2.3.3上面,不能播放缓存中的视频文件!

cocos creator 2.3.3版本,VideoPlayer加载缓存中的视频播放不了
this.fullFilePath = _filePath + _fileName;
console.log(“this.fullFilePath =” + this.fullFilePath);
if (jsb.fileUtils.isFileExist(this.fullFilePath)) {
this.player.resourceType = cc.VideoPlayer.ResourceType.LOCAL;
var self = this;
cc.loader.load(this.fullFilePath, function (err, clip) {
self.player.clip = clip;
self.scheduleOnce(function () {
self.player.play();
}, 0.5);
});
播放不了,请大家指导下