Skip to content

Instantly share code, notes, and snippets.

@scottgwald
Created June 6, 2014 18:31
Show Gist options
  • Save scottgwald/3071a053e9753c203672 to your computer and use it in GitHub Desktop.
Save scottgwald/3071a053e9753c203672 to your computer and use it in GitHub Desktop.
[wearscript] Media example
<html style="width:100%; height:100%; overflow:hidden">
<body style="width:100%; height:100%; overflow:hidden; margin:0">
<script>
function main() {
if (WS.scriptVersion(1)) return;
WS.cameraVideo(function (x) {
setTimeout(function () {
WS.createMedia('file://' + x, false)
}, 5000);
});
}
window.onload = main;
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment