SATB

In music, SATB is an initialism for soprano, alto, tenor and bass, defining the voice types required by a chorus or choir to perform a particular musical work. Pieces written for SATB (the most common combination, and used by most hymn tunes) can be sung by choruses of mixed genders, by choirs of men and boys, or by four soloists.

There is a lack of general agreement on other initialisms/abbreviations. Tr for Treble, Mz (or similar) for Mezzo-soprano, Ba, Bar or Bari for Baritone are self-explanatory, while C could be taken for canto, the highest part, or for Contralto, usually implying a female alto(s) as opposed to a Countertenor (Ct). SCTB is commonly found in Romantic Italian opera choruses where the Alto singers portray a group of female protagonists on stage.[citation needed]

SATB div. (divisi, or divided) denotes that one or more individual parts divide into two or more parts at some point in the piece, often sharing the same staff. A single choir with two of each voice type should be written SSAATTBB, unless it is laid out for two identical choirs, in which case it is SATB/SATB. Soloists are written in small type, e.g. satb/SATB. In both these instances a space may be substituted for the slash (/).[citation needed] Publishers usually include such descriptions in their catalogues of choral works, although many fail to provide sufficient detail, commonly omitting, for example, the term div. where it is required fully to describe the resources required by the composer. Also misleading can be the use of B for a Baritone part or S for an Mz part as for example in Stanford‘s motet “Eternal Father” which, though marked SSATBB, is for one each of soprano, mezzo-soprano, alto, tenor, baritone and bass.

Early musicEdit

SATB was last modified: August 31st, 2019 by Jovan Stosic

How can i convert a mkv file to mpg or avi with avconv?

avconv -i infile.mkv -c:a copy -c:v copy outfile.avi

This will not modify the quality.

avconv -i infile.mkv -c:a ac3 -ab 96k -ac 2 -c:v mpeg4 -s 640x352 -b 800k -bufsize 20M outfile.avi

This should change size to ‘ripped’ avi of medium quality (not tested).

https://askubuntu.com/questions/520584/how-can-i-convert-a-9-5-gb-mkv-file-to-mpg-or-avi-with-avconv

How can i convert a mkv file to mpg or avi with avconv? was last modified: August 31st, 2019 by Jovan Stosic

Bash script for converting multiple DVD folders in avi/DiVX/XVID

c=$PWD
n=0
shopt -s dotglob
while IFS= read -r d ; do
CurrD[$n]=”$d”
echo ${CurrD[$n]}
n=$(($n+1))
done < <(find “$c” -name VIDEO_TS)

X=0;
while [ $X -lt $n ]; do
cd “${CurrD[$X]}”
echo $PWD
for f in *.VOB ; do ffmpeg -i “$f” -b:v 3000k -b:a 128k -tag:v DIVX “${f%.VOB}.avi”; done
X=$(($X + 1))
done

Bash script for converting multiple DVD folders in avi/DiVX/XVID was last modified: August 29th, 2019 by Jovan Stosic