After installing the plugin using command:
cordova plugin add com.hutchind.cordova.plugins.streamingmedia
and then calling it from AngularJs app from
ng-click="playBack(movie.MovieID)"
$scope.playBack = function (movieId) {
//console.log(movieId);
var url = 'http://<someurl>';
window.plugins.streamingMedia.playVideo(url); //error
}
Am I missing something? And also would it play m3u8 live stream as well?