You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ DryWetMIDI is the .NET library to work with MIDI data and MIDI devices. It allow
24
24
* Build musical compositions (see [Pattern](https://melanchall.github.io/drywetmidi/articles/composing/Pattern.html) page of the library docs) and use music theory API (see [Music Theory - Overview](https://melanchall.github.io/drywetmidi/articles/music-theory/Overview.html) article).
25
25
* Perform complex tasks like quantizing, notes splitting or converting MIDI file to CSV representation (see [Tools](https://melanchall.github.io/drywetmidi/articles/tools/Overview.html) page of the library docs).
26
26
27
-
Please see [Getting started](#getting-started) section below for quick jump into the library.
27
+
Please see [Getting started](#getting-started) section below for quick jump into the library. Or you can dive into the [full documentation](https://melanchall.github.io/drywetmidi).
28
28
29
29
> [!WARNING]
30
30
> If you want to create an issue or a discussion, read this article first – [Support](https://melanchall.github.io/drywetmidi/articles/dev/Support.html).
@@ -52,9 +52,9 @@ If you find that DryWetMIDI has been useful for your project, please put a link
52
52
53
53
## Getting Started
54
54
55
-
Let's see small examples of what you can do with the library.
55
+
Let's see small examples of what you can do with the library. Full docs available [here](https://melanchall.github.io/drywetmidi).
56
56
57
-
It's possible to [read a MIDI file](https://melanchall.github.io/drywetmidi/articles/file-reading-writing/MIDI-file-reading.html), then [collect all notes](https://melanchall.github.io/drywetmidi/articles/high-level-managing/Getting-objects.html) from it and print their time and length in the [metric](https://melanchall.github.io/drywetmidi/articles/high-level-managing/Time-and-length.html) (hours, minutes, second, ...) format:
57
+
Simple task: [read a MIDI file](https://melanchall.github.io/drywetmidi/articles/file-reading-writing/MIDI-file-reading.html), then [collect all notes](https://melanchall.github.io/drywetmidi/articles/high-level-managing/Getting-objects.html) from it and print their times and lengths in the [metric](https://melanchall.github.io/drywetmidi/articles/high-level-managing/Time-and-length.html) (hours, minutes, second, ...) format:
58
58
59
59
```csharp
60
60
varmidiFile=MidiFile.Read("MyFile.mid");
@@ -133,4 +133,4 @@ var midiFile = pattern.ToFile(TempoMap.Create(Tempo.FromBeatsPerMinute(240)));
133
133
midiFile.Write("DrumPattern.mid");
134
134
```
135
135
136
-
Also you can check out sample applications from [CIRCE-EYES](https://github.com/CIRCE-EYES) (see the profile, VB.NET is used)
136
+
Also you can check out sample applications from [CIRCE-EYES](https://github.com/CIRCE-EYES) (see the profile, VB.NET is used)
0 commit comments