https://en.wikipedia.org/wiki/Vesperae_solennes_de_confessore
Month: August 2019
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 music
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
Arctic (2018)
Wildlife (2018)
Mozart: Vesperae Solemnes de Confessore. Hogwood, the Academy of Ancient Music
Linux Delete / Remove MBR
https://www.cyberciti.biz/faq/linux-clearing-out-master-boot-record-dd-command/
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
Variable incremented in bash while loop resets to 0 when loop finishes
while read -r f
do
count=$(($count+1))
echo "Count is at ${count}"
done < <(ls)
Source: Variable incremented in bash while loop resets to 0 when loop finishes – Stack Overflow
files – How do I loop through only directories in bash? – Unix & Linux
Source: files – How do I loop through only directories in bash? – Unix & Linux Stack Exchange
How do I loop through only directories in bash? – Unix & Linux Stack Exchange
Source: files – How do I loop through only directories in bash? – Unix & Linux Stack Exchange
How do I execute a file from a FAT USB drive? – Ask Ubuntu
bash yourscript
Source: How do I execute a file from a FAT USB drive? – Ask Ubuntu