Creating temporary URL link in Opera browser -


window.url.createobjecturl() doesn't work in opera! want link video file html5 'video' tag selected via 'input file' html tag. i'm able link video in chrome, firefox, ie10 using window.url.createobjecturl(). there snippet can use solve problem. please me!

try following snippet:

    if(navigator.getusermedia){         if(!window.url) window.url = {};         if(!window.url.createobjecturl) window.url.createobjecturl = function(obj){return obj;};     } 

Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -