-
Notifications
You must be signed in to change notification settings - Fork 0
/
midi_editor.html
113 lines (105 loc) · 7.31 KB
/
midi_editor.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html>
<head>
<meta name="theme-color" content="#222" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<link href="style.css" rel="stylesheet"></link>
<link rel="icon" type="image/png" href="bmpicon.png" />
<title>Manual for Bard Music Player</title>
<meta property="og:title" content="Bard Music Player for FFXIV">
<meta property="og:image" content="https://bardmusicplayer.com/bmpicon.png">
<meta property="og:description" content="Helping bards perform since 2017!">
</head>
<body>
<div class="content">
<div class="title">Midi editor guide for <b><a href="/" style="color:inherit;">Bard Music Player</a></b></div>
<div class="minimenu">
<a class="entry" href="manual.html">Manual</a>
<a class="entry" href="manual_multi.html">Multi-bard manual</a>
<a class="entry selected" href="midi_editor.html">Midi editor guide</a>
</div>
<div style="clear:both"></div>
<br/>
<h4>Editing MIDIs</h4>
<p>FFXIV has a set of limitations when performing. This means that any midi you may load in the game will not sound exactly as it should. Editing is a process through which you can express yourself and adjust a song to your liking, and at the same time optimize it for in-game play. Giving each song your own flavor is part of the true craft of being a performer. Otherwise, you’re just playing the exact same songs like hundreds of other bards!</>
<h4>Starting up</h4>
<p>You will first need a program to edit the Midi files. MidiEditor and MuseScore are some free, beginner-friendly options. Any program that can produce .mid can work, such as Sibelius, Cubase, FLStudio...</p>
<p>For complete beginners, a midi has notes on different tracks. You can think of them as each one being a "hand", like when playing the piano. Each track has a channel associated, which adds extra info like the instrument soundfont. Channels are ignored by BMP, so let’s focus on tracks.</p>
<p><b>First of all, will you edit for a solo piece, or an ensemble piece?</b> As a solo bard, you’ll have to limit yourself to a single track. It can have any notes as long as they fit FFXIV limitations.</p>
<p>Playing in an ensemble (two or more bards) lets you be more flexible. For example, for a piano piece, each bard can represent one hand and sound less cluttered than a single bard. Some advantages of an orchestra are higher octave range, higher note count per 50ms, wider range of instruments and true chords. This makes editing much easier.
</p>
<p>Once you have decided, it's time to know what will you have to edit.</p>
<h4>The three main editing concepts</h4>
<h5>Octave range</h5>
<p>Anything out of the in-game’s three octave range (C3-C6, 12 semitones per octave) will not be played. There are several options to deal with this.</p>
<ul>
<li>You can ignore those notes.
<li>If a section of the track is really high/low but the rest is at a consistent octave range, you can move that whole section up/down selecting it and transposing it by 12 semitones (Ctrl+T in MidiEditor). <a href="example1.png" target="_blank">Example.</a>
<li> If only a few notes are out of range (let’s assume over C6), you have to decide. Lower just those notes one octave down (-12). If the change it’s too notorious, you may want to lower the nearby notes as well. Does it still sound good? No? Put them back and try bringing the entire track one octave down (-12). How does it play? Are there now notes out of the lowest octave (C3)? You will have to keep adjusting.
<li>If you’re editing for an orchestra, know that each in-game instrument has its own octave range: a C3 on a piano will sound higher pitched than a C3 on a lute. This means that you can cover a wider range of octaves by playing different instruments. For example, on a simple piano piece there’s usually a higher section and a lower section: those can be played by a piano and a lute, respectively. You’ll have to bring up the lute section to C3-C6, but in-game it will still sound lower pitched than a piano. <a href="example2.png" target="_blank">Example.</a>
<br><b>For a guide about instrument octaves, see the addendum at the end of this guide.</b>
</ul>
<p>As you can see, there are lots of options to fiddle with. This comes down to preference and the own editor skill, so you’ll be getting the hang of it.</p>
<h5>Chords</h5>
<p>Chords are notes played at the same time. FFXIV doesn’t allow this, so one trick is to create an arpeggio with them. This is done by playing each note closely to each other in a stair-like fashion, so it “sounds” like a chord. As of 1.23, BMP takes care of this at the fastest interval possible (50ms). However, a high number of consecutive chords can overload the song and make it sound sloppy.</p>
<p>As a single bard, you can adjust your arpeggios manually or, if you need to reduce the note clutter, delete notes. This varies depending on the type of chord, but usually you can delete the second note and, if needed, the third. Try and test to see which one sounds better for you.</p>
<p>As an orchestra, the way to go is usually assigning each note of a chord to a bard. If it isn’t possible, two bards can deal with 3-note and even 4-note chords just fine.</p>
<h5>Tracks</h5>
<p>Tracks contain notes. Track 0 is a special track which tends to contain meta events, like the playback speed, and thus is suggested to not put any notes in there. However, for simple midi usage it's alright to do so, since there's virtually no difference between BMP playing track 0 and track 1.</p>
<p>Each bard can play up to one track at the same time, so if you’re soloing you may pick the one with the main melody, which is the most recognizable part of the song, and then add notes from other tracks to it to fill the gaps.</p>
<p>As an orchestra you get more leeway on how to assign tracks, and it usually comes down to narrowing each bard to a track. This includes taking notes from an already existing track and creating another with them, for example to deal with chords.</p>
<h4>Addendums</h4>
<h5>Other guides</h5>
<p>You can also check the <a href="https://bit.ly/3rZNkvE" target="_blank">Midi Editor Basics</a> guide made by <strong>Piper Weiss</strong>.</p>
<h5>Instrument octaves</h5>
<p>The lower the starting octave, the lower pitched it will sound.</p>
<table>
<tr valign="top">
<td>
<ul><strong>Strings</strong>
<li>Piano: C4-C7
<li>Harp: C3-C6
<li>Fiddle: C2-C5
<li>Lute: C2-C5
</ul>
</td>
<td>
<ul><strong>Winds</strong>
<li>Fife C5-C8
<li>Flute: C4-C7
<li>Oboe: C4-C7
<li>Panpipes: C4-C7
<li>Clarinet: C3-C6
</ul>
</td>
<td>
<ul><strong>Brass</strong>
<li>Trumpet: C3-C6
<li>Saxophone: C3-C6
<li>Trombone: C2-C5
<li>Horn: C2-C5
<li>Tuba: C1-C4
</ul>
</td>
<td>
<ul><strong>Percussion</strong>
<li>Timpani: C2-C5
</ul>
</td>
<td>
<ul><strong>Guitar</strong>
<li>Overdriven: C2-C5
<li>Clean: C2-C5
<li>Muted: C2-C5
<li>Power Chords: C1-C4
</ul>
</td>
</tr>
</table>
<h5>Extra limitations</h5>
<p>The maximum note speed is approximately 14 notes a second (50ms between each) if the game is running at a locked 60fps. Higher fps does not change anything. Lower fps will cause misses and/or reduce the playback speed.</p>
<p><br/>Bard Music Player (c) paru 2018 - 2021, (c) MoogleTroupe 2021</p>
</body>
</html>