-
-
\ No newline at end of file
diff --git a/Frontend/upload-video.js b/Frontend/upload-video.js
index b63a280..0061925 100644
--- a/Frontend/upload-video.js
+++ b/Frontend/upload-video.js
@@ -82,6 +82,7 @@ function uploadFile(name){
});
let data = new FormData(form); //FormData is an object to easily send form data
xhr.send(data); //sending form data
+ load();
}
diff --git a/Frontend/video-editing.html b/Frontend/video-editing.html
index 7b6f136..2c4c1cd 100644
--- a/Frontend/video-editing.html
+++ b/Frontend/video-editing.html
@@ -1,7 +1,12 @@
+
+
+
+
+ Transcript-Editing
@@ -45,9 +50,7 @@
-
Testing for the length of the transcript container.
-
This is the second line of the transcript.
-
This is the third line of the transcript.
+
diff --git a/Frontend/video-editing.js b/Frontend/video-editing.js
index 96fa733..613bd58 100644
--- a/Frontend/video-editing.js
+++ b/Frontend/video-editing.js
@@ -1,12 +1,14 @@
let transcriptArea = document.getElementById("transcript");
let transcriptHTML = ` `;
+function load(){
fetch('assets/output.json')
.then(response => response.json())
.then(data => {
// Use the data object here
processData(data);
});
+}
function processData(data) {