@@ -97,42 +97,42 @@ var (
97
97
// WAV
98
98
// MONO
99
99
100
- // FormatMono225008bLE mono 8bit 22.5kHz AIFF like format.
100
+ // FormatMono225008bLE mono 8bit 22.5kHz WAV like format.
101
101
FormatMono225008bLE = & Format {
102
102
NumChannels : 1 ,
103
103
SampleRate : 22500 ,
104
104
BitDepth : 8 ,
105
105
Endianness : binary .LittleEndian ,
106
106
}
107
- // FormatMono2250016bLE mono 16bit 22.5kHz AIFF like format.
107
+ // FormatMono2250016bLE mono 16bit 22.5kHz WAV like format.
108
108
FormatMono2250016bLE = & Format {
109
109
NumChannels : 1 ,
110
110
SampleRate : 22500 ,
111
111
BitDepth : 16 ,
112
112
Endianness : binary .LittleEndian ,
113
113
}
114
- // FormatMono441008bLE mono 8bit 44.1kHz AIFF like format.
114
+ // FormatMono441008bLE mono 8bit 44.1kHz WAV like format.
115
115
FormatMono441008bLE = & Format {
116
116
NumChannels : 1 ,
117
117
SampleRate : 44100 ,
118
118
BitDepth : 8 ,
119
119
Endianness : binary .LittleEndian ,
120
120
}
121
- // FormatMono4410016bLE mono 16bit 44.1kHz AIFF like format.
121
+ // FormatMono4410016bLE mono 16bit 44.1kHz WAV like format.
122
122
FormatMono4410016bLE = & Format {
123
123
NumChannels : 1 ,
124
124
SampleRate : 44100 ,
125
125
BitDepth : 16 ,
126
126
Endianness : binary .LittleEndian ,
127
127
}
128
- // FormatMono4410024bLE mono 24bit 44.1kHz AIFF like format.
128
+ // FormatMono4410024bLE mono 24bit 44.1kHz WAV like format.
129
129
FormatMono4410024bLE = & Format {
130
130
NumChannels : 1 ,
131
131
SampleRate : 44100 ,
132
132
BitDepth : 24 ,
133
133
Endianness : binary .LittleEndian ,
134
134
}
135
- // FormatMono4410032bLE mono 32bit 44.1kHz AIFF like format.
135
+ // FormatMono4410032bLE mono 32bit 44.1kHz WAV like format.
136
136
FormatMono4410032bLE = & Format {
137
137
NumChannels : 1 ,
138
138
SampleRate : 44100 ,
@@ -142,42 +142,42 @@ var (
142
142
143
143
// STEREO
144
144
145
- // FormatStereo225008bLE Stereo 8bit 22.5kHz AIFF like format.
145
+ // FormatStereo225008bLE Stereo 8bit 22.5kHz WAV like format.
146
146
FormatStereo225008bLE = & Format {
147
147
NumChannels : 2 ,
148
148
SampleRate : 22500 ,
149
149
BitDepth : 8 ,
150
150
Endianness : binary .LittleEndian ,
151
151
}
152
- // FormatStereo2250016bLE Stereo 16bit 22.5kHz AIFF like format.
152
+ // FormatStereo2250016bLE Stereo 16bit 22.5kHz WAV like format.
153
153
FormatStereo2250016bLE = & Format {
154
154
NumChannels : 2 ,
155
155
SampleRate : 22500 ,
156
156
BitDepth : 16 ,
157
157
Endianness : binary .LittleEndian ,
158
158
}
159
- // FormatStereo441008bLE Stereo 8bit 44.1kHz AIFF like format.
159
+ // FormatStereo441008bLE Stereo 8bit 44.1kHz WAV like format.
160
160
FormatStereo441008bLE = & Format {
161
161
NumChannels : 2 ,
162
162
SampleRate : 44100 ,
163
163
BitDepth : 8 ,
164
164
Endianness : binary .LittleEndian ,
165
165
}
166
- // FormatStereo4410016bLE Stereo 16bit 44.1kHz AIFF like format.
166
+ // FormatStereo4410016bLE Stereo 16bit 44.1kHz WAV like format.
167
167
FormatStereo4410016bLE = & Format {
168
168
NumChannels : 2 ,
169
169
SampleRate : 44100 ,
170
170
BitDepth : 16 ,
171
171
Endianness : binary .LittleEndian ,
172
172
}
173
- // FormatStereo4410024bLE Stereo 24bit 44.1kHz AIFF like format.
173
+ // FormatStereo4410024bLE Stereo 24bit 44.1kHz WAV like format.
174
174
FormatStereo4410024bLE = & Format {
175
175
NumChannels : 2 ,
176
176
SampleRate : 44100 ,
177
177
BitDepth : 24 ,
178
178
Endianness : binary .LittleEndian ,
179
179
}
180
- // FormatStereo4410032bLE Stereo 32bit 44.1kHz AIFF like format.
180
+ // FormatStereo4410032bLE Stereo 32bit 44.1kHz WAV like format.
181
181
FormatStereo4410032bLE = & Format {
182
182
NumChannels : 2 ,
183
183
SampleRate : 44100 ,
0 commit comments