[Webkit-unassigned] [Bug 101671] createObjectUrl not working with <video src> attribute

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Oct 3 19:11:04 PDT 2013


https://bugs.webkit.org/show_bug.cgi?id=101671


Rob Hidalgo <un at rob.mx> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |un at rob.mx




--- Comment #3 from Rob Hidalgo <un at rob.mx>  2013-10-03 19:09:58 PST ---
Still happening on Safari 6.1 with:

    var file; // the file from <input type="file"
    var url = window.URL.createObjectURL(file);
    console.log(url); // blob:somehost.com/some-long-uuid
    var video = document.createElement('video');
    video.src = url;
    // When chrome, these work
    // video.addEventListener('progress', videoEvents.progress);
    // video.addEventListener('seeked', videoEvents.seeked);
    video.addEventListener('error', function(err){
        // Nothing to see here...
        console.log(err);
        // Will throw a MediaError code 4
        console.log(video.error);
    });


throwing a MediaError code 4 for a h.264 baseline 3.0 file.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list