NAME

Music::Duration - Add 32nd, 64th, 128th and tuplet durations to MIDI-Perl

VERSION

version 0.0802

SYNOPSIS

use Music::Duration;

# 5 divisions in place of an eighth note triplet:
Music::Duration::tuplet( 'ten', 'z', 5 );

# Add an arbitrary duration:
Music::Duration::add_duration( phi => 1.618 );

# Now inspect the known lengths:
my %x = %MIDI::Simple::Length;
print Dumper [ map { "$_ => $x{$_}" } sort { $x{$a} <=> $x{$b} } keys %x ];

# Use the new durations in a composition:
my $black_page = MIDI::Simple->new_score();
$black_page->Channel(9);
# ...
$black_page->n( 'zten', 'n38' ) for 1 .. 5;
$black_page->n( 'phi', 'n38' ) for 1 .. 4;

DESCRIPTION

This module adds 32nd, 64th, and 128th notes, triplet and dotted divisions to %MIDI::Simple::Length. It also computes and inserts a fractional note division of an existing duration. Additionally, this module will insert any named note duration to the length hash.

32nd durations added:

yn:   thirty-second note
dyn:  dotted thirty-second note
ddyn: double dotted thirty-second note
tyn:  thirty-second note triplet

64th durations added:

xn:   sixty-fourth note
dxn:  dotted sixty-fourth note
ddxn: double dotted sixty-fourth note
txn:  sixty-fourth note triplet

128th durations added:

on:   128th note
don:  dotted 128th note
ddon: double dotted 128th note
ton:  128th note triplet

FUNCTIONS

tuple, tuplet

Music::Duration::tuplet( 'qn', 'z', 5 );
# $score->n( 'zqn', ... );

Music::Duration::tuplet( 'wn', 'z', 7 );
# $score->n( 'zwn', ... );

Add a fractional division to the MIDI::Simple Length hash for a given name and duration.

Musically, this creates a series of notes in place of the given duration.

A triplet is a "3-tuplet."

So in the first example, instead of a quarter note, we instead play 5 beats - a 5-tuple. In the second, instead of a whole note (of four beats), we instead play 7 beats.

add_duration

Music::Duration::add_duration( $name => $duration );

This function just adds a named duration length to %MIDI::Simple::Length so that it can be used to add notes or rests to the score.

SEE ALSO

The code in t/01-functions.t and eg/* in this distribution

The %Length hash in MIDI::Simple

https://www.scribd.com/doc/26974069/Frank-Zappa-The-Black-Page-1-Melody-Score

https://en.wikipedia.org/wiki/Tuplet

AUTHOR

Gene Boggs <gene@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2020 by Gene Boggs.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.