mirror of
https://github.com/GregorR/rnnoise-models
synced 2025-04-04 07:22:59 +00:00
Tools used to process some raw audio data.
This commit is contained in:
parent
2d65e62ef1
commit
21062ae57d
14
tools/TSPspeech.raw.sh
Executable file
14
tools/TSPspeech.raw.sh
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
[ -d TSPspeech ] || (
|
||||
mkdir -p TSPspeech
|
||||
cd TSPspeech
|
||||
7z x ../TSPspeech.iso
|
||||
)
|
||||
for i in `seq -w 01 10`
|
||||
do
|
||||
for j in TSPspeech/48k/*/*$i.wav
|
||||
do
|
||||
[ ! -e "$j" ] || ffmpeg -i "$j" -f s16le -ac 1 -ar 48000 -
|
||||
done
|
||||
done > TSPspeech.raw
|
82
tools/chopper.c
Normal file
82
tools/chopper.c
Normal file
@ -0,0 +1,82 @@
|
||||
/*
|
||||
* Copyright (c) 2018 Gregor Richards
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for any
|
||||
* purpose with or without fee is hereby granted, provided that the above
|
||||
* copyright notice and this permission notice appear in all copies.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
||||
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
||||
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
||||
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
#include <fcntl.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#define CHOP_SZ 384000
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
int *fds;
|
||||
int i;
|
||||
ssize_t rd, total;
|
||||
short buf[CHOP_SZ];
|
||||
|
||||
fds = malloc((argc-1)*sizeof(int));
|
||||
if (fds == NULL) {
|
||||
perror("malloc");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/* Open each file */
|
||||
for (i = 1; i < argc; i++) {
|
||||
int fd = open(argv[i], O_RDONLY);
|
||||
if (fd < 0) {
|
||||
perror(argv[i]);
|
||||
exit(1);
|
||||
}
|
||||
fds[i-1] = fd;
|
||||
}
|
||||
|
||||
/* Loop over the input */
|
||||
while (1) {
|
||||
char haveInput = 0;
|
||||
|
||||
/* Loop over each file */
|
||||
for (i = 0; i < argc - 1; i++) {
|
||||
int fd = fds[i];
|
||||
if (fd < 0) continue;
|
||||
haveInput = 1;
|
||||
|
||||
/* Take an appropriate chunk */
|
||||
total = 0;
|
||||
while (total < sizeof(buf)) {
|
||||
rd = read(fd, ((char *) buf) + total, sizeof(buf) - total);
|
||||
if (rd <= 0) {
|
||||
close(fd);
|
||||
fds[i] = -1;
|
||||
break;
|
||||
}
|
||||
total += rd;
|
||||
}
|
||||
if (total == 0 || (total%sizeof(short)) != 0)
|
||||
continue;
|
||||
|
||||
/* Write it out */
|
||||
write(1, buf, total);
|
||||
}
|
||||
|
||||
/* Stop if they were all ended */
|
||||
if (!haveInput)
|
||||
break;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
60
tools/noise-chopper.c
Normal file
60
tools/noise-chopper.c
Normal file
@ -0,0 +1,60 @@
|
||||
/*
|
||||
* Copyright (c) 2018 Gregor Richards
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for any
|
||||
* purpose with or without fee is hereby granted, provided that the above
|
||||
* copyright notice and this permission notice appear in all copies.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
||||
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
||||
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
||||
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
#include <fcntl.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#define TOTAL_SZ (10000000LL * 480)
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
FILE *fh;
|
||||
int i;
|
||||
short *buf = NULL;
|
||||
long perFileSz = TOTAL_SZ / (argc-1);
|
||||
long fileSz;
|
||||
size_t rd;
|
||||
|
||||
buf = malloc(perFileSz * sizeof(short));
|
||||
if (!buf) {
|
||||
perror("malloc");
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Loop over the input */
|
||||
for (i = 1; i < argc; i++) {
|
||||
/* Seek to the middle */
|
||||
fh = fopen(argv[i], "rb");
|
||||
fseek(fh, 0, SEEK_END);
|
||||
fileSz = ftell(fh) / sizeof(short);
|
||||
if (fileSz > perFileSz)
|
||||
fseek(fh, (fileSz / 2 - perFileSz / 2) * sizeof(short), SEEK_SET);
|
||||
else
|
||||
fseek(fh, 0, SEEK_SET);
|
||||
|
||||
/* Read it in */
|
||||
rd = fread(buf, sizeof(short), perFileSz, fh);
|
||||
fclose(fh);
|
||||
|
||||
/* And write it out */
|
||||
write(1, buf, rd * sizeof(short));
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
11
tools/sounds.raw.sh
Executable file
11
tools/sounds.raw.sh
Executable file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
for i in cough laugh
|
||||
do
|
||||
touch $i.raw
|
||||
SZ=`wc -c $i.raw | cut -d' ' -f1`
|
||||
while [ "$SZ" -lt 300000000 ]
|
||||
do
|
||||
cat $i/*.raw >> $i.raw
|
||||
SZ=`wc -c $i.raw | cut -d' ' -f1`
|
||||
done
|
||||
done
|
Loading…
x
Reference in New Issue
Block a user