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: mid-side stereo processing example
Date: Mon, 19 Jan 2015 00:24:32 +0000	[thread overview]
Message-ID: <20150119-mid-side-processing-example.sh@sox> (raw)

I just put this together based on an old SoX mailing list post:
http://mid.gmane.org/72D2BEA8-3801-41EF-9BF0-364EACAE4C05@music.mcgill.ca

Not sure if it's worth converting into Ruby and making it officially
a part of dtas (and possibly libifying it for splitfx...)
---------------------------- 8< ------------------------------
#!/bin/sh
# mid-side processing example, based on:
# http://mid.gmane.org/72D2BEA8-3801-41EF-9BF0-364EACAE4C05@music.mcgill.ca
usage () {
	echo >&2 "$0 INFILE <mid|side|stereo|merge>"
	exit 1
}
set -e
INFILE="$1"
test -n "$INFILE" || usage
TYPE=$2
test -n "$TYPE" || usage
shift 2
mid="remix 1,2"
side="remix 1v0.5,2v-0.5"
export SOX_OPTS=-V3
set -x
OUT=${OUT-"-t alsa"}
t="$TRIMFX"

case $TYPE in
mid) cmd="$mid" ;;
side) cmd="$side" ;;
merge)
	# Merge the Mid and Side signals into a stereo file:
	exec sox -M "|sox '$INFILE' -p $t $mid" "|sox '$INFILE' -p $t $side" \
		$OUT
	;;
stereo)
	# Convert Mid/Sid stereo to L/R stereo:
	exec sox -M "|sox '$INFILE' -p $t $mid" "|sox '$INFILE' -p $t $side" \
		$OUT remix -m 1,2 1,2i
	;;
esac
exec sox "$INFILE" $OUT $t $cmd
-- 
EW


                 reply	other threads:[~2015-01-19  0:24 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=20150119-mid-side-processing-example.sh@sox \
    --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).