Skip to content

Commit

Permalink
Update readme with Mux node v8 example
Browse files Browse the repository at this point in the history
  • Loading branch information
davekiss committed Feb 6, 2024
1 parent de6f2ea commit 1bf85fd
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,17 @@ You'll need to have a route in your application that returns an upload URL from

```javascript
const Mux = require('@mux/mux-node');
const { Video } = new Mux();
const mux = new Mux({
tokenId: process.env.MUX_TOKEN_ID,
tokenSecret: process.env.MUX_TOKEN_SECRET
});

module.exports = async (req, res) => {
// This ultimately just makes a POST request to https://api.mux.com/video/v1/uploads with the supplied options.
const upload = await Video.Uploads.create({
const upload = await mux.video.uploads.create({
cors_origin: 'https://your-app.com',
new_asset_settings: {
playback_policy: 'public',
playback_policy: ['public'],
},
});

Expand Down

0 comments on commit 1bf85fd

Please sign in to comment.