- Introduction to Video
- Stream video files
- Start live streaming
- Make API requests
- Play your videos
- Enable static MP4 renditions
- Download for offline editing
- Embed videos for social media
- Listen for webhooks
- Secure video playback
- Create clips from your videos
- Get images from a video
- Create timeline hover previews
- Adjust audio levels
- Add watermarks to your videos
- Add subtitles to your videos
- Minimize processing time
- Upload files directly
- Autoplay your videos
- Stream an audio-only version of your video
- Synchronize video playback
- Integrate with your CMS
Download for offline editing
Learn how to download a master quality video for editing and post production or archiving
In this guide:
Why download the master
Why download the master
Learn common use cases
Enable master access
Enable master access
Enable master access when creating your asset
Retrieving the url to the master
Retrieving the url to the master
New master object on asset object
Webooks for master access
Webooks for master access
Get notifications of master access status
When a video is ingested into Mux we store a version of the video that's equivalent in quality to the original video (currently up to 1920x1080 pixels in frame size), we call this the master. All of the streamed versions of the video are created from the master, and the master itself is never streamed to a video player because it's not optimized for streaming.
There are a few common use cases where Mux may have the only copy of the original video:
- You're using Mux live streaming and the only copy is the recorded asset after the event
- You're using Mux's direct upload feature so Mux has the only copy
- You deleted the original version from your own cloud storage because Mux is already storing a high quality version for you
When this is the case, there are a number of reasons you may want to retrieve the master version from Mux, including:
- Allowing users to download the video and edit it in a tool like Final Cut Pro
- Archiving the video for the future, for example if you're un-publishing (deleting) a video asset from Mux
- Moving your videos to another service
Enabling master access will create a temporary URL to the master version as an MP4 file. You can use this URL to download the video to your own hosting, or provide the URL to a user to download directly from Mux.
The URL will expire after 24 hours, but you can enable master access on any asset at any time.
Enable master access
If you want the master be available soon after a video is uploaded, use the master_access
property when creating an assetAPI.
{ "input": "VIDEO_URL", "playback_policy": [ "public" ], "master_access": "temporary" }
You can also add it afterward by updating the assetAPI.
Enable master access when a live stream finishes
If you want to download the recorded version of a live stream soon after the live stream is finished, use the master_access
property in the new_asset_settings
when creating the live streamAPI.
{ "playback_policy": "public", "new_asset_settings": { "playback_policy": "public", "master_access": "temporary" } }
Retrieving the URL to the master
After master access has been requested, a new object called master
will exist on the asset details object.
{ ...all asset details... "master_access": "temporary", "master": { "status": "preparing" } }
Making the master available is an asynchronous process that happens after an Asset is ready
, or in the case of a live streamed asset, after the live_stream_completed
event. Because of this, the master
object has a status
property that gives the current state of the master, starting with preparing
.
In most cases, the master will be available very quickly. When it's ready the status
will be updated to ready
, and a new url
property will exist on the object. This is the URL you can use to download the master yourself, or to let a user download the master.
{ ...all asset details... "master_access": "temporary", "master": { "status": "ready", "url": "https://temporary.url.to.the.master.mp4" } }
Webhooks for master access
Your application can be automatically updated with the status of master access for an asset through webhooks.
There are four related events you can receive.
Webhook | Description |
---|---|
video.asset.master.preparing | Received when master access is first requested |
video.asset.master.ready | Received when the URL to the master is available |
video.asset.master.deleted | Received if master access has been set to none via a PUT to the master-access endpoint |
video.asset.master.errored | Received if an unexpected error happens while making the master available |