everything related to duct tape audio suite (dtas)
 help / color / mirror / code / Atom feed
From: Eric Wong <e@80x24.org>
To: dtas-all@nongnu.org
Subject: [PATCH] splitfx: add "offset" option for all track times
Date: Sun, 17 Nov 2019 22:47:20 +0000	[thread overview]
Message-ID: <20191117224720.7361-1-e@80x24.org> (raw)

This option is intended to make it easy to reuse track splits
from one audio recording of a given source (e.g. a live
performance or vinyl rip) for another audio recording of
the same source.
---
 Documentation/dtas-splitfx.pod |  5 +++++
 lib/dtas/splitfx.rb            | 13 ++++++++++++-
 2 files changed, 17 insertions(+), 1 deletion(-)

diff --git a/Documentation/dtas-splitfx.pod b/Documentation/dtas-splitfx.pod
index b5dadfd..ff3d8cb 100644
--- a/Documentation/dtas-splitfx.pod
+++ b/Documentation/dtas-splitfx.pod
@@ -117,6 +117,11 @@ highest-numbered track.  Default: true
 
 =item command - used only by L<dtas-player(1)>
 
+=item offset - time offset to apply to each track
+
+This is useful for reusing track offsets between different recordings
+of the same source or live performance.  May be a negative value.
+
 =back
 
 =head1 TRACKS
diff --git a/lib/dtas/splitfx.rb b/lib/dtas/splitfx.rb
index c0c7ac9..e310300 100644
--- a/lib/dtas/splitfx.rb
+++ b/lib/dtas/splitfx.rb
@@ -92,6 +92,7 @@ def initialize
     @infmt = nil # wait until input is assigned
     @cuebp = nil # for playback
     @command = nil # top-level, for playback
+    @offset = 0
   end
 
   def _bool(hash, key)
@@ -145,6 +146,16 @@ def import(hash, overrides = {})
       end
     end
 
+    if offset = hash["offset"]
+      offset = offset.dup
+      sign = 1
+      if offset.sub!(/\A-/, '')
+        sign = -1
+      else
+        offset.sub!(/\A\+/, '') # drop "+"
+      end
+      @offset = @t2s.call(offset) * sign
+    end
     load_input!(hash)
     load_tracks!(hash)
     @command = hash["command"] # nil by default
@@ -343,7 +354,7 @@ def t2s_cdda(time)
   end
 
   def t2s(time)
-    @infmt.hhmmss_to_samples(time)
+    @infmt.hhmmss_to_samples(time) + @offset
   end
 
   def run(target, opts = {})


                 reply	other threads:[~2019-11-17 22:47 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=20191117224720.7361-1-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).