|
|
@ -1756,6 +1756,9 @@ if(typeof VMM != 'undefined' && typeof VMM.MediaElement == 'undefined') { |
|
|
|
} else if (m.type == "vimeo") { |
|
|
|
} else if (m.type == "vimeo") { |
|
|
|
mediaElem = "<div class='thumbnail vimeo'></div>"; |
|
|
|
mediaElem = "<div class='thumbnail vimeo'></div>"; |
|
|
|
return mediaElem; |
|
|
|
return mediaElem; |
|
|
|
|
|
|
|
} else if (m.type == "dailymotion") { |
|
|
|
|
|
|
|
mediaElem = "<div class='thumbnail dailymotion'></div>"; |
|
|
|
|
|
|
|
return mediaElem; |
|
|
|
} else if (m.type == "twitter"){ |
|
|
|
} else if (m.type == "twitter"){ |
|
|
|
mediaElem = "<div class='thumbnail twitter'></div>"; |
|
|
|
mediaElem = "<div class='thumbnail twitter'></div>"; |
|
|
|
return mediaElem; |
|
|
|
return mediaElem; |
|
|
@ -1822,6 +1825,9 @@ if(typeof VMM != 'undefined' && typeof VMM.MediaElement == 'undefined') { |
|
|
|
// VIMEO
|
|
|
|
// VIMEO
|
|
|
|
} else if (m.type == "vimeo") { |
|
|
|
} else if (m.type == "vimeo") { |
|
|
|
mediaElem = "<iframe class='media-frame video vimeo' autostart='false' frameborder='0' width='100%' height='100%' src='http://player.vimeo.com/video/" + m.id + "?title=0&byline=0&portrait=0&color=ffffff'></iframe>"; |
|
|
|
mediaElem = "<iframe class='media-frame video vimeo' autostart='false' frameborder='0' width='100%' height='100%' src='http://player.vimeo.com/video/" + m.id + "?title=0&byline=0&portrait=0&color=ffffff'></iframe>"; |
|
|
|
|
|
|
|
// DAILYMOTION
|
|
|
|
|
|
|
|
} else if (m.type == "dailymotion") { |
|
|
|
|
|
|
|
mediaElem = "<iframe class='media-frame video dailymotion' autostart='false' frameborder='0' width='100%' height='100%' src='http://www.dailymotion.com/embed/video/" + m.id + "'></iframe>"; |
|
|
|
// TWITTER
|
|
|
|
// TWITTER
|
|
|
|
} else if (m.type == "twitter"){ |
|
|
|
} else if (m.type == "twitter"){ |
|
|
|
mediaElem = "<div class='twitter' id='" + "twitter_" + m.id + "'><span class='messege'>Loading Tweet</span></div>"; |
|
|
|
mediaElem = "<div class='twitter' id='" + "twitter_" + m.id + "'><span class='messege'>Loading Tweet</span></div>"; |
|
|
@ -1897,65 +1903,49 @@ if(typeof VMM != 'undefined' && typeof VMM.MediaType == 'undefined') { |
|
|
|
VMM.MediaType = function(d) { |
|
|
|
VMM.MediaType = function(d) { |
|
|
|
var success = false; |
|
|
|
var success = false; |
|
|
|
var media = {}; |
|
|
|
var media = {}; |
|
|
|
|
|
|
|
|
|
|
|
if (d.match("div class='twitter'")) { |
|
|
|
if (d.match("div class='twitter'")) { |
|
|
|
media.type = "twitter-ready"; |
|
|
|
media.type = "twitter-ready"; |
|
|
|
media.id = d; |
|
|
|
media.id = d; |
|
|
|
success = true; |
|
|
|
success = true; |
|
|
|
} else if (d.match('(www.)?youtube|youtu\.be')) { |
|
|
|
} else if (d.match('(www.)?youtube|youtu\.be')) { |
|
|
|
if (d.match('v=')) { |
|
|
|
if (d.match('v=')) { |
|
|
|
youtube_id = VMM.Util.getUrlVars(d)["v"]; |
|
|
|
media.id = VMM.Util.getUrlVars(d)["v"]; |
|
|
|
//youtube_id = d.split(/embed\//)[1].split('"')[0];
|
|
|
|
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
youtube_id = d.split(/v\/|v=|youtu\.be\//)[1].split(/[?&]/)[0]; |
|
|
|
media.id = d.split(/v\/|v=|youtu\.be\//)[1].split(/[?&]/)[0]; |
|
|
|
} |
|
|
|
} |
|
|
|
//youtube_id = d.split(/v\/|v=|youtu\.be\//)[1].split(/[?&]/)[0];
|
|
|
|
|
|
|
|
// http://www.youtube.com/watch?feature=player_embedded&v=0l-ivcnLrSc
|
|
|
|
|
|
|
|
//http://www.youtube.com/watch?v=0l-ivcnLrSc
|
|
|
|
|
|
|
|
media.type = "youtube"; |
|
|
|
media.type = "youtube"; |
|
|
|
media.id = youtube_id; |
|
|
|
|
|
|
|
success = true; |
|
|
|
success = true; |
|
|
|
} else if (d.match('(player.)?vimeo\.com')) { |
|
|
|
} else if (d.match('(player.)?vimeo\.com')) { |
|
|
|
//vimeo_id = d.split(/video\/|http:\/\/vimeo\.com\//)[1].split(/[?&]/)[0];
|
|
|
|
|
|
|
|
vimeo_id = d.split(/video\/|\/\/vimeo\.com\//)[1].split(/[?&]/)[0]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
media.type = "vimeo"; |
|
|
|
media.type = "vimeo"; |
|
|
|
media.id = vimeo_id; |
|
|
|
media.id = d.split(/video\/|\/\/vimeo\.com\//)[1].split(/[?&]/)[0];; |
|
|
|
|
|
|
|
success = true; |
|
|
|
|
|
|
|
} else if (d.match('(www.)?dailymotion\.com')) { |
|
|
|
|
|
|
|
media.id = d.split(/video\/|\/\/dailymotion\.com\//)[1]; |
|
|
|
|
|
|
|
media.type = "dailymotion"; |
|
|
|
success = true; |
|
|
|
success = true; |
|
|
|
} else if (d.match('(player.)?soundcloud\.com')) { |
|
|
|
} else if (d.match('(player.)?soundcloud\.com')) { |
|
|
|
//soundcloud_url = unescape(d.split(/value="/)[1].split(/["]/)[0]);
|
|
|
|
|
|
|
|
//soundcloud_id = soundcloud_url.split(/tracks\//)[1].split(/[&"]/)[0];
|
|
|
|
|
|
|
|
media.type = "soundcloud"; |
|
|
|
media.type = "soundcloud"; |
|
|
|
media.id = d; |
|
|
|
media.id = d; |
|
|
|
success = true; |
|
|
|
success = true; |
|
|
|
} else if (d.match('(www.)?twitter\.com')) { |
|
|
|
} else if (d.match('(www.)?twitter\.com')) { |
|
|
|
trace("TWITTER MATCH"); |
|
|
|
|
|
|
|
// https://twitter.com/#!/twitterapi/statuses/133640144317198338
|
|
|
|
|
|
|
|
// https://twitter.com/#!/DeliciousHot/status/23189589820702720
|
|
|
|
|
|
|
|
if (d.match("status\/")) { |
|
|
|
if (d.match("status\/")) { |
|
|
|
twitter_id = d.split("status\/")[1]; |
|
|
|
media.id = d.split("status\/")[1]; |
|
|
|
} else if (d.match("statuses\/")) { |
|
|
|
} else if (d.match("statuses\/")) { |
|
|
|
twitter_id = d.split("statuses\/")[1]; |
|
|
|
media.id = d.split("statuses\/")[1]; |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
twitter_id = ""; |
|
|
|
media.id = ""; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
media.type = "twitter"; |
|
|
|
media.type = "twitter"; |
|
|
|
media.id = twitter_id; |
|
|
|
|
|
|
|
success = true; |
|
|
|
success = true; |
|
|
|
} else if (d.match("maps.google") && !d.match("staticmap")) { |
|
|
|
} else if (d.match("maps.google") && !d.match("staticmap")) { |
|
|
|
//maps.google.com
|
|
|
|
|
|
|
|
media.type = "google-map"; |
|
|
|
media.type = "google-map"; |
|
|
|
media.id = d.split(/src=['|"][^'|"]*?['|"]/gi); |
|
|
|
media.id = d.split(/src=['|"][^'|"]*?['|"]/gi); |
|
|
|
//trace("google map " + media.id);
|
|
|
|
|
|
|
|
success = true; |
|
|
|
success = true; |
|
|
|
} else if (d.match("flickr.com/photos")) { |
|
|
|
} else if (d.match("flickr.com/photos")) { |
|
|
|
media.type = "flickr"; |
|
|
|
media.type = "flickr"; |
|
|
|
//media.id = d.split('/photos/[^/]+/([0-9]+)/gi');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
media.id = d.split("photos\/")[1].split("/")[1]; |
|
|
|
media.id = d.split("photos\/")[1].split("/")[1]; |
|
|
|
media.link = d; |
|
|
|
media.link = d; |
|
|
|
//media.id = media.id.split("/")[1];
|
|
|
|
|
|
|
|
//trace("FLICKR " + media.id);
|
|
|
|
|
|
|
|
success = true; |
|
|
|
success = true; |
|
|
|
} else if (d.match(/jpg|jpeg|png|gif/i) || d.match("staticmap")) { |
|
|
|
} else if (d.match(/jpg|jpeg|png|gif/i) || d.match("staticmap")) { |
|
|
|
media.type = "image"; |
|
|
|
media.type = "image"; |
|
|
|