about summary refs log tree commit homepage
path: root/lib/dtas/process.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2013-08-25 11:40:19 +0000
committerEric Wong <normalperson@yhbt.net>2013-08-25 11:40:19 +0000
commit0f9bfb784b7bbccf86b7d7d241982ba4e703efd4 (patch)
treeee8cdbf659457a82ac5d03df77fae8bc00728e68 /lib/dtas/process.rb
parent157b75aa71bb2d9e7140cd72f29451fa234a902a (diff)
downloaddtas-0f9bfb784b7bbccf86b7d7d241982ba4e703efd4.tar.gz
avconv is capable of outputting to the .sox format, greatly
simplifying our life as it enables us to easily apply sox
effects on a per-source file basis.

dtas-sourceedit and the "source" protocol commands will need
to change to support internal priorities (like sink).
Diffstat (limited to 'lib/dtas/process.rb')
-rw-r--r--lib/dtas/process.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/dtas/process.rb b/lib/dtas/process.rb
index 2806fbf..2d7dcb0 100644
--- a/lib/dtas/process.rb
+++ b/lib/dtas/process.rb
@@ -84,4 +84,8 @@ module DTAS::Process # :nodoc:
     return res if status.success?
     raise RuntimeError, "`#{xs(cmd)}' failed: #{status.inspect}"
   end
+
+  # XXX only for DTAS::Source::{Sox,Av}.try
+  module_function :qx
+  module_function :xs
 end