diff --git a/app.js b/app.js index 6758310..d4b7239 100644 --- a/app.js +++ b/app.js @@ -170,7 +170,7 @@ app.post("/download", async (req, res) => { Promise.all([arr[0], arr[1]]) .then((response) => { cp.exec( - `'${ffmpeg}' -i '${tempDir + videoName}' -i '${ + `"${ffmpeg}" -i '${tempDir + videoName}' -i '${ tempDir + audioName }' -c copy '${downloadDir + filename}'`, (error, stdout, stderr) => { diff --git a/index.html b/index.html index a7bd204..94a001b 100644 --- a/index.html +++ b/index.html @@ -126,7 +126,7 @@ body: "Video saved successfully.", icon: 'icon.png' }); - document.getElementById("savedMsg").innerHTML = `Video saved to ${savedLocation}` + document.getElementById("savedMsg").innerHTML = `Video saved to ${savedLocation}` }) diff --git a/public/index.css b/public/index.css index dc04662..d64a90a 100644 --- a/public/index.css +++ b/public/index.css @@ -168,4 +168,11 @@ svg { transition: linear; transition-duration: 0.4s; left:0px; +} + +a{ + color:rgb(131, 222, 253); +} +a:active, a:link{ + color:rgb(131, 222, 253) } \ No newline at end of file