Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9134261
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T08:37:44+00:00 2026-06-17T08:37:44+00:00

I would like to display a video from a Javascript Blob/File object in the

  • 0

I would like to display a video from a Javascript Blob/File object in the HTML5 video tag.

This code only works for small videos :

var reader = new FileReader();
reader.onload = function(e) {
    document.getElementById("video").src=reader.result;
 }
reader.readAsDataURL(vid);

I cannot use this for big videos (> 10MB).
Is there a solution to display a big video from a blob object in HTML 5?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T08:37:45+00:00Added an answer on June 17, 2026 at 8:37 am

    I’ve found. It was so simple that I didnt even see it…

    
    /**
     * @param {Blob} videoFile
     * @param {HTMLVideoElement} videoEl 
     * @returns {void}
     */
    function display( videoFile, videoEl ) {
    
        // Preconditions:
        if( !( videoFile instanceof Blob ) ) throw new Error( '`videoFile` must be a Blob or File object.' ); // The `File` prototype extends the `Blob` prototype, so `instanceof Blob` works for both.
        if( !( videoEl instanceof HTMLVideoElement ) ) throw new Error( '`videoEl` must be a <video> element.' );
        
        // 
    
        const newObjectUrl = URL.createObjectURL( videoFile );
            
        // URLs created by `URL.createObjectURL` always use the `blob:` URI scheme: https://w3c.github.io/FileAPI/#dfn-createObjectURL
        const oldObjectUrl = videoEl.currentSrc;
        if( oldObjectUrl && oldObjectUrl.startsWith('blob:') ) {
            // It is very important to revoke the previous ObjectURL to prevent memory leaks. Un-set the `src` first.
            // See https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL
    
            videoEl.src = ''; // <-- Un-set the src property *before* revoking the object URL.
            URL.revokeObjectURL( oldObjectUrl );
        }
    
        // Then set the new URL:
        videoEl.src = newObjectUrl;
    
        // And load it:
        videoEl.load(); // https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/load
        
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to display only posts that are members of BOTH category 33,
I would like to display a svg file inside a eclipse view. a) It
I would like to create a dialog to display a video title and tags.
I want to display videos using Flash (for older, non-HTML5 video browsers). This is
We would like to display flash video files (tutorials) on our Sharepoint site. Problem
I have the following code, obtained from http://jakearchibald.com/scratch/alphavid/ $(#video).append('<video id=movie style=display:none autobuffer><source id=srcMp4 src=https://host-away-from-host.com/file.mp4
I would like to display a gallery of photos and how many times each
I would like to display a loading bar before the entire page is loaded.
I would like to display the first and last name of the authenticated user.
I would like to display No profile found message, if the UserId doesn't exist

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.