Skip to content

Commit 209aaa3

Browse files
committed
Update README.md
2 parents 478eb75 + 69c2bf8 commit 209aaa3

File tree

1 file changed

+21
-6
lines changed

1 file changed

+21
-6
lines changed

README.md

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,45 @@ Using this library, you can create simple wave file quickly.
33

44
## Description
55

6-
With this you can write code to quickly create audio files. You can create audio files without struggle with binary files.
7-
Even if you are not good at file operations, you can write code intuitively.
8-
Since this library was originally developed for C#, there may be problems with the porting process to C++.
6+
With this, you can write code to create audio files quickly.:dash: And you can create audio files without struggle with binary files!:ok_hand:
7+
Even if you are not good at file operations, you can write code intuitively!:smile:
8+
9+
This library was originally developed for C#, but now, it is developed for C++.
10+
This project has been reborn for C++!:clap:
11+
It means this library doesn't depend on .NET framework!:relaxed:
12+
If you want to use this on C#, you can download C# edition in the release page but it maybe not latest version.
913

1014
## Requirement
1115

12-
C# library depends on .NET framework.
16+
This project depends on nothing.
1317

1418
## Usage
1519

20+
If you want to make wavefile, you can do only following code with WaveFileManager.
1621
```C++
17-
//#include "WaveFileManager.h"
22+
//#include "wavefile_manager.h"
23+
24+
//Declare variables
1825
WaveFileManager waveFile;
1926
MusicPropertyMonaural16bit prop16bit;
2027
short soundData[44100 * 2];
28+
2129
//Generate sound data (440Hz)
2230
GenerateSoundMonaural16bits(soundData, 440);
2331
prop16bit = GenerateMonaural16bits(soundData, 44100 * 2);
32+
33+
//Create WaveFile
2434
waveFile.CreateFile("C:\\capra.wav", prop16bit);
2535
```
2636
2737
## Install
2838
29-
Go to [ReleasePage](https://github.com/capra314cabra/WaveFileManagerLibrary/releases) or Download [Code](https://github.com/capra314cabra/WaveFileManagerLibrary)
39+
1. Go to [ReleasePage](https://github.com/capra314cabra/WaveFileManagerLibrary/releases) and
40+
download the files.
41+
(or go to [GitHome](https://github.com/capra314cabra/WaveFileManagerLibrary)and download the zipfile)
42+
2. Include the files to your project.
43+
44+
Only this.
3045
3146
## Contribution
3247

0 commit comments

Comments
 (0)