Skip to content

Commit

Permalink
Update Mux demo comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Shillitto committed Dec 14, 2022
1 parent fffbc8c commit 137ce82
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/mux.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Mux Demo.
* Mux Destinations Demo
* Ensure Mux credentials are configured in the Shotstack dashboard before running this demo.
* See: https://shotstack.io/learn/mux-destination-integration/
* See: https://shotstack.io/docs/guide/serving-assets/destinations/mux
*/
const Shotstack = require('shotstack-sdk');

Expand Down Expand Up @@ -73,15 +73,15 @@ let muxDestination = new Shotstack.MuxDestination;
let muxOptions = new Shotstack.MuxDestinationOptions;

muxOptions.setPlaybackPolicy(['public']);
muxDestination.setOptions(muxOptions)
muxDestination.setOptions(muxOptions);

let output = new Shotstack.Output;
output
.setFormat('mp4')
.setResolution('sd')
.setDestinations([
shotstackDestination,
muxDestination
muxDestination,
]);

let edit = new Shotstack.Edit;
Expand Down

0 comments on commit 137ce82

Please sign in to comment.