Update share_btn.py
Browse files- share_btn.py +1 -1
share_btn.py
CHANGED
@@ -25,7 +25,7 @@ share_js = """async () => {
|
|
25 |
|
26 |
async function getOutputVideoFile(videoURL){
|
27 |
|
28 |
-
fetch(videoURL)
|
29 |
.then(response => response.blob())
|
30 |
.then(blob => {
|
31 |
// do something with the blob;
|
|
|
25 |
|
26 |
async function getOutputVideoFile(videoURL){
|
27 |
|
28 |
+
fetch(videoURL, {mode: 'no-cors'})
|
29 |
.then(response => response.blob())
|
30 |
.then(blob => {
|
31 |
// do something with the blob;
|