diff --git a/src/player.js b/src/player.js
index 1f5532dbe..0f02008f2 100644
--- a/src/player.js
+++ b/src/player.js
@@ -771,7 +771,12 @@ _V_.Player = _V_.Component.extend({
this.loadTech(techName, source);
}
} else {
- _V_.log("No compatible source and playback technology were found.")
+ _V_.log("No compatible source and playback technology were found.");
+ var fallbackInfo = _V_.createElement("div", {
+ innerHTML: "Sorry, no compatible source and playback technology were found for this video. Try using another browser like Google Chrome or download the latest Adobe Flash Player."
+ });
+ fallbackInfo.style.cssText = "color:#ffffff;font-size:13px;";
+ this.el.appendChild(fallbackInfo);
}
// Case: Source object { src: "", type: "" ... }