From 137ce828ebf4c568f9ff96e61c3c3dcabf0a5724 Mon Sep 17 00:00:00 2001 From: Jeff Shillitto Date: Wed, 14 Dec 2022 21:42:55 +1000 Subject: [PATCH] Update Mux demo comment --- examples/mux.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/mux.js b/examples/mux.js index 8974d27..2faba63 100644 --- a/examples/mux.js +++ b/examples/mux.js @@ -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'); @@ -73,7 +73,7 @@ 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 @@ -81,7 +81,7 @@ output .setResolution('sd') .setDestinations([ shotstackDestination, - muxDestination + muxDestination, ]); let edit = new Shotstack.Edit;