about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--lib/dtas/splitfx.rb2
-rw-r--r--test/test_splitfx.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/dtas/splitfx.rb b/lib/dtas/splitfx.rb
index c54c1a4..fd7093a 100644
--- a/lib/dtas/splitfx.rb
+++ b/lib/dtas/splitfx.rb
@@ -58,7 +58,7 @@ class DTAS::SplitFX # :nodoc:
           "channels" => 2,
         },
       },
-      "opus" => {
+      "opusenc" => {
         "command" => 'sox "$INFILE" $COMMENTS $OUTFMT - ' \
            '$TRIMFX $RATEFX $DITHERFX | opusenc --music ' \
            '--raw-bits $BITS_PER_SAMPLE ' \
diff --git a/test/test_splitfx.rb b/test/test_splitfx.rb
index 9ba4664..eb3e501 100644
--- a/test/test_splitfx.rb
+++ b/test/test_splitfx.rb
@@ -53,7 +53,7 @@ class TestSplitfx < Testcase
           err = $stderr.dup
           begin
             $stderr.reopen("/dev/null", "a")
-            WAIT_ALL_MTX.synchronize { sfx.run("opus", opts) }
+            WAIT_ALL_MTX.synchronize { sfx.run("opusenc", opts) }
           ensure
             $stderr.reopen(err)
           end