From 699a1217fbfa06b0cde58e4430a35825c384167f Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 10 Sep 2013 09:21:17 +0000 Subject: splitfx: add opus and flac-cdda outputs These are common output targets, at least for my workflow. --- lib/dtas/splitfx.rb | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) (limited to 'lib/dtas/splitfx.rb') diff --git a/lib/dtas/splitfx.rb b/lib/dtas/splitfx.rb index aa1665d..f7f8c39 100644 --- a/lib/dtas/splitfx.rb +++ b/lib/dtas/splitfx.rb @@ -42,7 +42,32 @@ class DTAS::SplitFX # :nodoc: @track_zpad = true @t2s = method(:t2s) @infile = nil - @targets = {} + @targets = { + "flac-cdda" => { + "command" => CMD, + "format" => { + "bits" => 16, + "rate" => 44100, + "type" => "flac", + "channels" => 2, + }, + }, + "opus" => { + "command" => 'sox "$INFILE" $COMMENTS $OUTFMT - ' \ + '$TRIMFX $RATEFX $DITHERFX | opusenc --music ' \ + '--raw-bits $BITS_PER_SAMPLE ' \ + '$OPUSENC_BITRATE --raw-rate $RATE --raw-chan $CHANNELS ' \ + '--raw-endianness $ENDIAN_OPUSENC ' \ + '$OPUSENC_COMMENTS ' \ + '- $TRACKNUMBER.opus', + "format" => { + "bits" => 16, + "rate" => 48000, + "type" => "s16", + "channels" => 2, + }, + }, + } @tracks = [] @infmt = nil # wait until input is assigned end -- cgit v1.2.3-24-ge0c7