I wanna use embedded windows media player on our alfresco system for displaying .mkv etc. I already defined windows media player on alfresco but it doesn't resolve the video url different than internet explorer. I use as default the url from web-preview.js which is also provide url for the other players. When I try the use share button and then view button I can watch the videos on each browser.
So, I give up the trying adjust url from web-preview.js. I just wanna take quick share's source url for the video details page.
Is it possible? This is my super class. It is default never changed:
getContentUrl: function WP_getContentUrl(download)
{
var proxy = window.location.protocol + "//" + window.location.host + Alfresco.constants.URL_CONTEXT + "proxy/" + this.options.proxy + "/",
nodeRefAsLink = this.options.nodeRef.replace(":/", ""),
noCache = "noCache=" + new Date().getTime();
download = download ? "a=true" : "a=false";
return proxy + this.options.api + "/node/" + nodeRefAsLink + "/content/" + encodeURIComponent(this.options.name) + "?c=force&" + noCache + "&" + download
},
getContentUrl: function WP_getContentUrl(download)
{
var proxy = window.location.protocol + "//" + window.location.host + Alfresco.constants.URL_CONTEXT + "proxy/" + this.options.proxy + "/",
nodeRefAsLink = this.options.nodeRef.replace(":/", ""),
noCache = "noCache=" + new Date().getTime();
download = download ? "a=true" : "a=false";
return proxy + this.options.api + "/node/" + nodeRefAsLink + "/content/" + encodeURIComponent(this.options.name) + "?c=force&" + noCache + "&" + download
},
getThumbnailUrl: function WP_getThumbnailUrl(thumbnail, fileSuffix)
{
var proxy = window.location.protocol + "//" + window.location.host + Alfresco.constants.URL_CONTEXT + "proxy/" + this.options.proxy + "/",
nodeRefAsLink = this.options.nodeRef.replace(":/", ""),
noCache = "noCache=" + new Date().getTime(),
force = "c=force";
// Check to see if last modification data is available for the thumbnail...
for (var i = 0; i < this.options.thumbnailModification.length; i++)
{
if (this.options.thumbnailModification[i].indexOf(thumbnail) != -1)
{
noCache = "lastModified=" + encodeURIComponent(this.options.thumbnailModification[i]) + "&" + noCache;
break;
}
}
return proxy + this.options.api + "/node/" + nodeRefAsLink + "/content/thumbnails/" + thumbnail + (fileSuffix ? "/suffix" + fileSuffix : "") + "?" + force + "&" + noCache
}
and thats the my code's display method which is not work for firefox,chrome,opera etc. :
display: function Video_display()
{
var src = this.attributes.src ? this.wp.getThumbnailUrl(this.attributes.src) : this.wp.getContentUrl();
var height=240;
var width=320;
var player = '<object ';
player += 'height="' + height.toString() + '" ';
player += 'width="' + width.toString() + '" ';
if (navigator.userAgent.indexOf("MSIE") < 0) {
// Chrome, Firefox, Opera, Safari
player += 'type="application/x-ms-wmp" ';
player += 'data="' + src + '" >';
}
else {
// Internet Explorer
player += 'classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" >';
player += '<param name="url" value="' + src + '" />';
}
player += '<param name="autoStart" value="false" />';
player += '<param name="playCount" value="1" />';
player += '</object>';
return player;
}