来自url的文件开启者in ionic

时间:2015-12-01 14:12:29

标签: cordova ionic

我有一个视频文件:
http://sabakuch.com/public/education/m_video/agriculture_technology.webm
我想通过android的默认播放器打开这个文件,如mxplayer,vlc 我怎么能实现它? 我是离子的初学者,请帮助我。

1 个答案:

答案 0 :(得分:0)

我首选的插件是file-opener2,您应该将文件下载到设备,然后使用插件打开它,如果您正在使用离子使用ngCordova

cordova.plugins.fileOpener2.open(
    '/sdcard/Download/video.mp4', // You can also use a Cordova-style file uri: cdvfile://localhost/persistent/Download/starwars.pdf
    'video/webm', 
    { 
        error : function(e) { 
            console.log('Error status: ' + e.status + ' - Error message: ' + e.message);
        },
        success : function () {
            console.log('file opened successfully');                
        }
    }
);