Skip to content

Commit dc75fda

Browse files
committed
doc(README): update render-project and delete-project-videos examples.
1 parent 108d43d commit dc75fda

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ const renderforest = new Renderforest({ signKey: '<signKey>', clientId: -1 })
216216

217217
const payload = {
218218
projectId: 5000658,
219-
quality: 360
219+
quality: 360 // optional argument
220220
}
221221
renderforest.deleteProjectVideos(payload)
222222
.then(console.log) // handle the success
@@ -271,7 +271,8 @@ const renderforest = new Renderforest({ signKey: '<signKey>', clientId: -1 })
271271

272272
const payload = {
273273
projectId: 5000658,
274-
quality: 1080
274+
quality: 360,
275+
watermark: 'https://example.com/watermark.png' // optional argument
275276
}
276277
renderforest.renderProject(payload)
277278
.then(console.log) // handle the success

0 commit comments

Comments
 (0)