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}`
})