Enhanced Media Embed plugin
The Enhanced Media Embed plugin is a premium TinyMCE plugin that will take a URL, send it to a backend service that returns an embeddable snippet of code, and add that code to the editor. That typically takes the form of rich media such as audio, video and social media cards.
Installation
For the moment the Enhanced Media Embed plugin has to be used in conjunction with the media plugin, so:
- Make sure you have the
media
plugin added to theplugins
list. - Add the
mediaembed
plugin to theplugins
list.
Example Cloud Configuration
The service URL is already configured with TinyMCE Cloud. Simply specify the media
and mediaembed
plugins, and optionally a mediaembed_max_width
tinymce.init({
selector: "textarea",
plugins: "media mediaembed",
mediaembed_max_width: 450
});
Example Self-hosted Configuration
In a Self-hosted installation, please ensure you configure the URL to the service with the mediaembed_service_url
parameter.
tinymce.init({
selector: "textarea",
plugins: "media mediaembed",
mediaembed_service_url: "SERVICE_URL",
mediaembed_max_width: 450
});
Usage
The plugin can be used in two ways, either by simply entering a URL on an empty line and pressing the enter key - or by entering the URL into the media plugin’s dialog window. Either way the URL will be handled by the service backend and the returned code will be embedded into the editor.
Configuration Options
mediaembed_service_url
This setting specifies the URL to the service that will handle your requests and return the embeddable snippets used by the Media Embed plugin. Please follow these instructions to configure the WAR file that you will get as a part of your premium TinyMCE plugin subscription. This option is not required for TinyMCE Cloud.
mediaembed_max_width
This optional setting specifies a maximum width in pixels of the embedded content. Defaults to 650
.
Downloading Enhanced Media Embed plugin
A premium TinyMCE plugin subscription includes the ability to download and install the Media Embed plugin and a WAR file to access the service backend. Please follow these instructions to configure the WAR file.