Really Simple Cordova Video Example
This repo is a really simple example of the Cordova Streaming Media Plugin (version by krisrandall).
I use this simple demo for testing or making changes to the Streaming Media Plugin.
Cordova
$ git clone https://github.com/krisrandall/Streaming-Media-Cordova-Plugin.git # get the plugin locally
$ cordova create video-demo # create a cordova app
$ cd video-demo/
$ cordova platform add ios android
$ cordova plugin add ../Streaming-Media-Cordova-Plugin/ # add local version of plugin to app
$ cd www
$ git clone https://github.com/krisrandall/streaming-media-plugin-demo.git # get the source from this repo
$ cp streaming-media-plugin-demo/index.html . # and add it into your app
$ cd ..
$ rm -rf www/streaming-media-plugin-demo # tidy up
$ cordova build
$ cordova plugin rm com.hutchind.cordova.plugins.streamingmedia; cordova plugin add ../Streaming-Media-Cordova-Plugin/; cordova build