Can't Save Uploaded Video's Blob Url At The Backend Server Using Ajax Call
I have a web page where user uploads a video file using html's 'input type = file' tag, I am catching that uploaded video file in JavaScript function variable where it is coming as
Solution 1:
A Blob URL
s lifetime is tied to the document
where the Blob URL
is created. If the document
which created the Blob URL
is closed the previously created Blob URL
should be revoked, see 8.6. Lifetime of Blob URLs.
You can POST
the Blob
or File
object itself to server Trying to Pass ToDataURL with over 524288 bytes Using Input Type Text; or a FormData
object with File
set as value Sending FormData with a binary data by using jQuery AJAX; or data URI
representation of File
object to server Upload multiple image using AJAX, PHP and jQuery.
Post a Comment for "Can't Save Uploaded Video's Blob Url At The Backend Server Using Ajax Call"