bloburls Questions

9

Solved

I have a similar question to this question(Javascript: Exporting large text/csv file crashes Google Chrome): I am trying to save the data created by excelbuilder.js's EB.createFile() function. If I...
Melindamelinde asked 25/1, 2016 at 13:1

6

Solved

I am having trouble with blob URLs. I was searching for src of a video tag on YouTube and I found that the video src was like: src="blob:https://video_url" I opened the blob URL that was...
Gabby asked 16/6, 2015 at 10:9

2

I'm saving a file in JavaScript using the following code: var a = document.createElement('a'); a.href = URL.createObjectURL(new Blob(['SOME DATA'])); a.download = 'some.dat'; a.click(); I want t...
Critta asked 15/5, 2016 at 16:5

1

Solved

Many video stream websites, youtube for example, seem to have a blob url as their video source. Searching, I couldn't figure out how this works. For example... <video src="blob:https://www.yout...
Weddle asked 1/6, 2020 at 10:13

3

Solved

I'm generating a CSV client-side and putting it into a Blob and then creating an object URL. What I'm attempting to accomplish is generate this blob URL and then save the file to Google Drive. I'...
Infant asked 20/2, 2014 at 17:48

1

After a Long Time, I was Used WebView. so let me ask what I have a phase issue. -I had Google for Blob URL but I hvnt find a solution OR Any hint so I have to post Question HERE. -I have WebView ...
Rama asked 18/7, 2017 at 11:27

1

Solved

Am attempting to implement, for lack of a different description, an offline media context. The concept is to create 1 second Blobs of recorded media, with the ability to Play the 1 second Blobs...
Alterable asked 20/7, 2017 at 14:42

1

I'm getting some odd results when trying to open a new window with a blob url in Windows Edge (20.10240.16384, which is the version in the IE11 VM supplied by Microsoft). var xhr = new XMLHt...
Othelia asked 26/8, 2015 at 3:32

0

Preload video as Blob, and then use createObjectURL() to create a BlobURL. The video plays on all OSs/browsers, but on iOS 10.3 got rejected when trying to play (promise) with the message: NotSupp...
Dispersant asked 2/5, 2017 at 18:0

2

Solved

Given this code (from someone else): var module = angular.module('myApp', []); module.controller('MyCtrl', function ($scope){ $scope.json = JSON.stringify({a:1, b:2}); }); module.directive('myD...
Penton asked 12/12, 2013 at 2:35

3

I'm trying to upload a blob URL generated by getUserMedia to the server. Someone else wanted to do the same thing, and that question has been answered. I am using the same code for the XHR request...
Aurar asked 30/12, 2014 at 14:36

2

I'm writing a web app that generates a potentially large text file that the user will download, and all the processing is done in the browser. So far I'm able to read a file over 1 GB in small chun...
Terina asked 22/11, 2014 at 19:59
1

© 2022 - 2024 — McMap. All rights reserved.