diff options
author | Minteck <contact@minteck.org> | 2022-06-14 14:56:07 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-06-14 14:56:07 +0200 |
commit | dcfb6ada53d66182e0cdebc836df6f7bc3386c12 (patch) | |
tree | 2aba5914d8e0585b89d7822f001c3dc06d734aca | |
parent | 298fe9906d363a02408a3f3443ca63950e9a4778 (diff) | |
download | elac-dcfb6ada53d66182e0cdebc836df6f7bc3386c12.tar.gz elac-dcfb6ada53d66182e0cdebc836df6f7bc3386c12.tar.bz2 elac-dcfb6ada53d66182e0cdebc836df6f7bc3386c12.zip |
Change underlying codecs... again
-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"; } |