You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Adds opt-in support mp4 generation (refs #10)
This update exposes a `mux-input.json` config file where users can opt-in to mp4 support. Polling behaviour has been updated to listen for static renditions completed on MUX's end. If a user has opted in, a small badge / reminder is also displayed over the video input when static generation is still in progress.
Copy file name to clipboardExpand all lines: README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,6 +59,18 @@ To enable [signed urls](https://docs.mux.com/docs/security-signed-urls) with con
59
59
60
60
More information for this feature of the plugin can be found on Mux's [documentation](https://docs.mux.com/docs/headless-cms-sanity#advanced-signed-urls)
61
61
62
+
# Enabling MP4 support
63
+
64
+
To enable [static MP4 renditions](https://docs.mux.com/guides/video/enable-static-mp4-renditions), create or open the config file found in `config/mux-input.json` in your studio folder. This file is automatically created the first time the studio starts after adding the plugin.
65
+
66
+
```
67
+
{
68
+
"mp4_support": "standard"
69
+
}
70
+
```
71
+
72
+
Currently `mp4_support` is the only supported MUX option and this supports a value of either `standard` or `none` (the default).
73
+
62
74
# Contributing
63
75
64
76
Issues are actively monitored and PRs are welcome. When developing this plugin the easiest setup is:
0 commit comments