Skip to Content
Mux Docs: Home

Add high-performance video to your Next.js application

Use our API and components to handle embedding, storing, and streaming video in your Next.js application

When should you use Mux with Next.js?

When adding video to your Next.js app, you'll encounter some common hurdles. First, videos are large. Storing them in your public directory can lead to excessive bandwidth consumption and poor Git repository performance. Next, it's important to compress and optimize your videos for the web. Then, as network conditions change, you might want to adapt the quality of your video to ensure a smooth playback experience for your users. Finally, you may want to integrate additional features like captions, thumbnails, and analytics.

You might consider using Mux's APIs and components to handle these challenges, and more.

Quickly drop in a video with next-video

next-video is a React component, maintained by Mux, for adding video to your Next.js application. It extends both the <video> element and your Next app with features to simplify video uploading, storage, and playback.

To get started...

  1. Run the install script: npx -y next-video init. This will install the next-video package, update your next.config.js and TypeScript configuration, and create a /videos folder in your project.
  2. Add a video to your /videos folder. Mux will upload, store, and optimize it for you.
  3. Add the component to your app:
import Video from 'next-video';
import myVideo from '/videos/my-video.mp4';
export default function Page() {
return <Video src={myVideo} />;
}

Check out the next-video docs to learn more.

Use the API and our components for full control

If you're looking to build your own video workflow that enables uploading, playback, and more in your application, you can use the Mux API and components like Mux Player and Mux Uploader.

Example: allowing users to upload video to your app

One reason you might want to build your own video workflow is when you want to allow users to upload video to your app.

Let's start by adding a new page where users can upload videos. This will involve using the Mux Uploader component, which will upload videos to a Mux Direct Uploads URLAPI.

In the code sample below, we'll create an upload URL using the Mux Node SDK and the Direct Uploads URL API. We'll pass that URL to the Mux Uploader component, which will handle uploading for us.

app/upload/page.jsx
import Mux from '@mux/mux-node';
import MuxUploader from '@mux/mux-uploader-react';
const { Video } = new Mux(process.env.MUX_TOKEN_ID, process.env.MUX_TOKEN_SECRET);
export default async function Page() {
const directUpload = await Video.Uploads.create({
cors_origin: '*',
new_asset_settings: {
playback_policy: 'public',
},
});
return <MuxUploader endpoint={directUpload.url} />;
}

In production, you'll want to apply additional security measures to your upload URL. Consider protecting the route with authentication to prevent unauthorized users from uploading videos. Also, use cors_origin and consider playback_policy to further restrict where uploads can be performed and who can view uploaded videos.

Next, we'll create an API endpoint that will listen for Mux webhooks. When we receive the notification that the video has finished uploading and is ready for playback, we'll add the video's metadata to our database.

app/mux-webhook/route.js
export async function POST(request) {
const body = await request.json();
const { type, data } = body
if (type === 'video.asset.ready') {
await saveAssetToDatabase(data);
} else {
/* handle other event types */
}
return Response.json({ message: 'ok' });
}

Finally, let's make a playback page. We retrieve the video metadata from our database, and play it by passing its playbackId to Mux Player:

app/watch/[id]/page.jsx
'use client';
import MuxPlayer from '@mux/mux-player-react';
export default async function Page({ params }) {
const asset = getAssetFromDatabase(params.id);
return <MuxPlayer streamType="on-demand" playbackId={asset.id} accentColor="#ac39f2" />;
}

And we've got upload and playback. Nice!

What's next? You can integrate with your CMS. You can optimize your loading experience. Or get started with an example project below:

Example projects

Video Course Starter Kit

If you’re a developer you’ve probably seen and used platforms like Egghead, LevelUp Tutorials, Coursera, etc. This is your starter kit to build something like that with Next.js + Mux. Complete with Github OAuth, the ability to create courses, adding video lessons, progress tracking for viewers.

with-mux-video

This is a bare-bones starter application with Next.js that uses:

stream.new

Stream.new is an open source Next.js application that does:

Was this page helpful?