Skip to content

Commit

Permalink
Auto Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverfriedmann committed Jul 8, 2019
1 parent 44cff11 commit 1d67868
Show file tree
Hide file tree
Showing 20 changed files with 2,015 additions and 481 deletions.
16 changes: 16 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module.exports = function(grunt) {

var pkg = grunt.file.readJSON('package.json');
var gruntHelper = require('betajs-compile');
gruntHelper.init(pkg, grunt)

.scopedclosurerevisionTask(null, "src/*.js", "dist/ziggeo.js", {
"base": "global:BetaJS",
"module": "global:ZiggeoSdk"
}, null, true);

grunt.initConfig(gruntHelper.config);

grunt.registerTask('default', ['scopedclosurerevision']);

};
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Ziggeo Node.js Server SDK 0.1.15
# Ziggeo Node.js Server SDK 0.1.16

Ziggeo API (https://ziggeo.com) allows you to integrate video recording and playback with only
two lines of code in your site, service or app. This is the Node.js Server SDK repository.
Expand Down Expand Up @@ -373,6 +373,20 @@ Arguments
- file: *Video file to be attached*


#### Attach Subtitle

Attaches a video to a new stream

```node
ZiggeoSdk.Streams.attach_subtitle(video_token_or_key, token_or_key, arguments, [callbacks])
```

Arguments
- lang: *Subtitle language*
- label: *Subtitle reference*
- data: *Actual subtitle*


#### Bind

Closes and submits the stream
Expand Down
Loading

0 comments on commit 1d67868

Please sign in to comment.