diff options
-rw-r--r-- | browser/test.html | 11 | ||||
-rwxr-xr-x | elac-decode | 2 | ||||
-rwxr-xr-x | elac-encode | 2 | ||||
-rwxr-xr-x | elac-play | 2 |
4 files changed, 3 insertions, 14 deletions
diff --git a/browser/test.html b/browser/test.html deleted file mode 100644 index bf9a7f6..0000000 --- a/browser/test.html +++ /dev/null @@ -1,11 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> -<head> - <meta charset="UTF-8"> - <title>EQMC Browser Test</title> - <script src="./eqmc.js"></script> -</head> -<body> - https://bucket.minteck.org/demo.eqmc -</body> -</html>
\ No newline at end of file diff --git a/elac-decode b/elac-decode index 02fb824..4963806 100755 --- a/elac-decode +++ b/elac-decode @@ -73,7 +73,7 @@ for (let input of inputs) { console.log("Decoding \"" + inputFile + ":/" + input._id + "\"..."); - let outFile = os.tmpdir() + "/elac-play-temp/" + input._id + ".opus"; + let outFile = os.tmpdir() + "/elac-play-temp/" + input._id + ".ogg"; if (input.lossless) { outFile = os.tmpdir() + "/elac-play-temp/" + input._id + ".flac"; } diff --git a/elac-encode b/elac-encode index 63f2cf5..fc421f6 100755 --- a/elac-encode +++ b/elac-encode @@ -98,7 +98,7 @@ for (let input of valid_inputs) { let fileId = uuid(); let lossless = false; - let outFile = os.tmpdir() + "/elac-encode-temp/" + fileId + ".opus"; + let outFile = os.tmpdir() + "/elac-encode-temp/" + fileId + ".ogg"; if (streams[0]['codec_name'].includes("pcm") || streams[0]['codec_name'].includes("flac") || streams[0]['codec_name'].includes("alac") || streams[0]['codec_name'].includes("dts")) { lossless = true; @@ -73,7 +73,7 @@ for (let input of inputs) { console.log("Decoding \"" + inputFile + ":/" + input._id + "\"..."); - let outFile = os.tmpdir() + "/elac-play-temp/" + input._id + ".opus"; + let outFile = os.tmpdir() + "/elac-play-temp/" + input._id + ".ogg"; if (input.lossless) { outFile = os.tmpdir() + "/elac-play-temp/" + input._id + ".flac"; } |