0.0.1 • Published 10 years ago

osc-client-theta_s v0.0.1

Weekly downloads
1
License
MIT
Repository
gitlab
Last release
10 years ago

OSC(Open Spherical Camera) APIs client for RICOH THETA S

Overview

This module is OSC(Open Spherical Camera) APIs client for RICOH THETA S, and based on osc-client.

Installation

npm install osc-client-theta_s

Usage

All of the usage of this module is the same as that of the osc-client, except capturing and download movies.

Following code is example of capturing and download movies.

var ThetaSOscClientClass = require('osc-client-theta_s').ThetaSOscClient;

var _thetaClient = new ThetaSOscClient();
var sessionId;

// 1. Get session-id
_thetaClient.startSession().then(function(res){
  sessionId = res.body.results.sessionId;
  // 2. Change captureMode to "_video"
  return _thetaClient.setOptions(_sessionId, {captureMode:"_video"})
}).then(function(res){
  // 3. Start capturing
  return _thetaClient.startCapture(_sessionId);
}).catch(function (error) {
  console.log(error);
});



// 1. Stop capturing
_thetaClient.stopCapture(_sessionId)
.then(function(res){
  // 2. Get list of contents in a device
  return _thetaClient.listAll({entryCount:1, sort:"newest"});
}).then(function(res){
  // 3. Download a movie
  return _thetaClient.getVideo(res.body.results.entries[0], "full");
}).then(function(res){
  // 4. Store the movie
  fs.writeFile(filename, res.body);
}).then(function(err){
  // 5. Close session
  return client.closeSession(sessionId);
}).catch(function (error) {
  console.log(error);
});
0.0.1

10 years ago