Blings MP5 videos are most commonly shared via email, SMS, and web links, using a simple URL that opens a personalized video page in the browser.
In some cases, companies also need a way to embed the same MP5 video experience directly inside their mobile apps (Android or iOS), without rebuilding the video logic or hosting custom pages.
To support this, Blings provides a ready-made hosted video page (for example: https://account.mp5.live/video).
This hosted page already includes the Blings Web SDK and all required setup.
Alternatively, you can host your own HTML page with the Blings SDK and follow the same integration logic inside your native apps.
Once you have a video page (hosted by Blings or your own), you only need to:
Open it inside a WebView
Pass personalization data using URL query parameters
This article explains how to do exactly that.
Two ways to use Blings MP5 videos
Option 1: Use the Blings-hosted page (recommended)
Blings provides a hosted video page on mp5.live that you can use out of the box.
Benefits
No HTML or SDK setup required
Same link works for email, SMS, web, and mobile apps
class AndroidBridge {
@JavascriptInterface
fun postMessage(message: String) {
// Parse the message and act on it
// Example: navigate, track analytics, close WebView, etc.
}
}
func userContentController(_ userContentController: WKUserContentController,
didReceive message: WKScriptMessage) {
// message.body contains the payload sent from the video
}