31 lines
670 B
D
31 lines
670 B
D
|
#!/usr/bin/env rdmd
|
||
|
/**
|
||
|
* Converts a signed 8-bit PCM audio file into a Lua table list.
|
||
|
*/
|
||
|
module pcm_to_lua;
|
||
|
|
||
|
import std.stdio;
|
||
|
import std.file;
|
||
|
|
||
|
int main(string[] args) {
|
||
|
if (args.length < 2) {
|
||
|
stderr.writeln("Missing required file.");
|
||
|
return 1;
|
||
|
}
|
||
|
string audioFilename = args[1];
|
||
|
if (!exists(audioFilename)) {
|
||
|
stderr.writefln!"File %s doesn't exist."(audioFilename);
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
byte[] contents = cast(byte[]) std.file.read(audioFilename);
|
||
|
stdout.writeln("local audio = {");
|
||
|
foreach (byte sample; contents) {
|
||
|
stdout.writefln!" %d,"(sample);
|
||
|
}
|
||
|
stdout.writeln("}");
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|