-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsnd2wav.pl
executable file
·187 lines (167 loc) · 4.05 KB
/
snd2wav.pl
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
#!/usr/bin/env perl
binmode STDIN;
die "bad snd format" unless ReadSint16() == 1;
die "too many data types" unless ReadSint16() == 1;
die "not sampled sound" unless ReadSint16() == 5;
my $opts = ReadSint32();
die "unhandled opts" unless $opts == 0x80 || $opts == 0xA0;
die "too many commands" unless ReadSint16() == 1;
die "not a bufferCmd" unless ReadUint16() == 0x8051;
die "bad param1" unless ReadSint16() == 0;
die "bad param2" unless ReadSint32() == 20;
die "bad data pointer" unless ReadSint32() == 0;
# finally something interesting
my $numbytes = ReadUint32();
my $samplerate = ReadUFixed();
# these get ignored
my $loopstart = ReadUint32();
my $loopend = ReadUint32();
my $enctype = ReadUint8();
die "not standard sample encoding" unless $enctype == 0 || $enctype == 0xFF;
die "weird baseFrequency" unless ReadUint8() == 0x3C;
my $bytes_sample = 1;
my $channels = 1;
if ($enctype == 0xFF)
{
$channels = $numbytes;
my $frames = ReadUint32();
my $aiffrate = ReadRaw(10);
my $markerChunk = ReadUint32();
my $instChunk = ReadUint32();
my $aesRecording = ReadUint32();
my $bits_sample = ReadUint16();
die "weird bits per sample" unless $bits_sample == 16 || $bits_sample == 8;
ReadPadding(14);
$bytes_sample = $bits_sample / 8;
$numbytes = $bytes_sample * $channels * $frames;
}
# we're up to sound data now, let's write some WAV!
# Thanks to: https://ccrma.stanford.edu/courses/422/projects/WaveFormat/
# Thanks also to myself in the past, who wrote the following for
# a different project, which I copied without updating the style
my $data_size = $numbytes;
my $rate = int($samplerate);
binmode STDOUT;
print "RIFF"; # ChunkID
print pack('V', 36 + $data_size); # ChunkSize
print "WAVE"; # Format
print "fmt "; # Subchunk1ID
print pack('V', 16); # Subchunk1Size
print pack('v', 1); # AudioFormat
print pack('v', $channels); # NumChannels
print pack('V', $rate); # SampleRate
print pack('V', $rate * $channels * $bytes_sample); # ByteRate
print pack('v', $channels * $bytes_sample); # BlockAlign
print pack('v', $bytes_sample * 8); # BitsPerSample
print "data"; # Subchunk2ID
print pack('V', $data_size); # Subchunk2Size
if ($bytes_sample > 1)
{
for my $i (1..int($numbytes/2))
{
my ($byte1, $byte2);
read STDIN, $byte1, 1;
read STDIN, $byte2, 1;
print $byte2;
print $byte1;
}
}
else
{
for my $i (1..$numbytes)
{
my $byte;
read STDIN, $byte, 1;
print $byte;
}
}
exit;
sub ReadUint32
{
return ReadPacked('L>', 4);
}
sub ReadSint32
{
return ReadPacked('l>', 4);
}
sub ReadUint16
{
return ReadPacked('S>', 2);
}
sub ReadSint16
{
return ReadPacked('s>', 2);
}
sub ReadUint8
{
return ReadPacked('C', 1);
}
sub ReadFixed
{
my $fixed = ReadSint32();
return $fixed / 65536.0;
}
sub ReadUFixed
{
my $fixed = ReadUint32();
return $fixed / 65536.0;
}
our $BLOB = undef;
our $BLOBoff = 0;
our $BLOBlen = 0;
sub SetReadSource
{
my ($data) = @_;
$BLOB = $_[0];
$BLOBoff = 0;
$BLOBlen = defined($BLOB) ? length($BLOB) : 0;
}
sub SetReadOffset
{
my ($off) = @_;
die "Can't set offset for piped data" unless defined $BLOB;
die "Bad offset for data" if (($off < 0) || ($off > $BLOBlen));
$BLOBoff = $off;
}
sub CurOffset
{
return $BLOBoff;
}
sub ReadRaw
{
my ($size, $nofail) = @_;
die "Can't read negative size" if $size < 0;
return '' if $size == 0;
if (defined $BLOB)
{
my $left = $BLOBlen - $BLOBoff;
if ($size > $left)
{
return undef if $nofail;
die "Not enough data in blob (offset $BLOBoff, length $BLOBlen)";
}
$BLOBoff += $size;
return substr($BLOB, $BLOBoff - $size, $size);
}
else
{
my $chunk;
my $rsize = read STDIN, $chunk, $size;
$BLOBoff += $rsize;
unless ($rsize == $size)
{
return undef if $nofail;
die "Failed to read $size bytes";
}
return $chunk;
}
}
sub ReadPadding
{
ReadRaw(@_);
}
sub ReadPacked
{
my ($template, $size) = @_;
return unpack($template, ReadRaw($size));
}