-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
80 lines (53 loc) · 1.44 KB
/
README
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
Task:
Make mp3 file from .wav file
Linux Build Setup
Folder_Structure (Linux setup)
|-- buildSetup.sh
|-- c
| |-- bin
| |-- build
| |-- cfg
| |-- CMakeLists.txt
| |-- lib
| `-- src
`-- cpp
|-- bin
|-- build
|-- cfg
|-- CMakeLists.txt
|-- lib
`-- src
Windows Build Setup
Folder_Structure (Windows )
.
|-- buildSetup.sh
|-- c
| |-- bin
| |-- inc
| |-- lib
| |-- Makefile
| `-- src
`-- cpp
|-- bin
|-- inc
|-- lib
|-- Makefile
`-- src
Script buildSetup.sh has differnt menu option (GUI) and options are as listed.
1.enviroment :- it will download all require dependencies
2.Build setup :- Build binary
3.clean setup :- clean old build
4.Run :- go to bin folder and run bin with path of .wav file
5.exit setup :- exit setup
To compile in Linux:
Clone the source from GIT repo : mp3Fromwav_Linux
Start "buildSetup.sh" to set the environment and build the application(linux compitable).
Clone the source from GIT repo :mp3Fromwav_Windows
Start "buildSetup.sh" to set the environment and build the application(windows compitable).
To compile in Windows:
Clone the source from GIT repo :mp3Fromwav_Windows
download lame source code to make static library (using visual studio) copy all new static libraries(.lib) into lib folder.
using mingw
use mingw32-make in cmd to compile.
Note:-
First time we need to run enviroment option to make setup ready with all dependencies.