From: Eric Wong <e@80x24.org>
To: <dtas-all@nongnu.org>
Cc: Eric Wong <e@80x24.org>
Subject: [PATCH] dtas-splitfx: support --trim argument
Date: Sun, 17 May 2015 02:20:48 +0000 [thread overview]
Message-ID: <1431829248-2826-1-git-send-email-e@80x24.org> (raw)
It can often be useful to expose only part of a track for quick
inspection. This lets us do that.
---
Documentation/dtas-splitfx.txt | 8 ++++++++
bin/dtas-splitfx | 1 +
lib/dtas/splitfx.rb | 9 +++++++++
3 files changed, 18 insertions(+)
diff --git a/Documentation/dtas-splitfx.txt b/Documentation/dtas-splitfx.txt
index 049371f..2a599ea 100644
--- a/Documentation/dtas-splitfx.txt
+++ b/Documentation/dtas-splitfx.txt
@@ -51,6 +51,14 @@ to use ecasound(1), too.
-b, \--bits BITS
: Override the output bit depth in the specified TARGET
+-t, \--trim POSITION
+: Passes a POSITION argument to the sox "trim" effect to allow
+ limiting output to only process a portion of the original.
+ This bypasses the "tracks" section and of the YAML file and
+ outputs the result as a single file with the TRACKNUMBER
+ of "000". For ease-of-typing, commas in this command-line
+ argument are automatically expanded to spaces when passed to sox.
+
# FILE FORMAT
* infile - string, the pathname of the original audio file
diff --git a/bin/dtas-splitfx b/bin/dtas-splitfx
index a764cb3..d28cc5d 100755
--- a/bin/dtas-splitfx
+++ b/bin/dtas-splitfx
@@ -18,6 +18,7 @@ OptionParser.new('', 24, ' ') do |op|
op.on('-C', '--compression FACTOR') { |val| opts[:compression] = val }
op.on('-r', '--rate RATE') { |val| opts[:rate] = val }
op.on('-b', '--bits RATE', Integer) { |val| opts[:bits] = val }
+ op.on('-t', '--trim POSITION') { |val| opts[:trim] = val.tr(',', ' ') }
op.parse!(ARGV)
end
diff --git a/lib/dtas/splitfx.rb b/lib/dtas/splitfx.rb
index e4997cc..b657179 100644
--- a/lib/dtas/splitfx.rb
+++ b/lib/dtas/splitfx.rb
@@ -16,6 +16,14 @@ class DTAS::SplitFX # :nodoc:
include DTAS::XS
attr_reader :infile, :env
+ class UTrim
+ attr_reader :env, :comments
+ def initialize(trim_arg, env, comments)
+ @env = env.merge("TRIMFX" => "trim #{trim_arg}")
+ @comments = comments.merge('TRACKNUMBER' => '000')
+ end
+ end
+
class Skip < Struct.new(:tbeg) # :nodoc:
def commit(_)
# noop
@@ -353,6 +361,7 @@ class DTAS::SplitFX # :nodoc:
@compression = opts[:compression]
@rate = opts[:rate]
@bits = opts[:bits]
+ trim = opts[:trim] and @tracks = [ UTrim.new(trim, @env, @comments) ]
fails = []
tracks = @tracks.dup
--
EW
reply other threads:[~2015-05-17 2:20 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://80x24.org/dtas/README
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1431829248-2826-1-git-send-email-e@80x24.org \
--to=e@80x24.org \
--cc=dtas-all@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://80x24.org/dtas.git/
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).