| | |
| | |
| | |
| | |
| |
|
| |
|
| | from __future__ import print_function |
| | import os |
| | import sys |
| | import numpy as np |
| | import subprocess |
| | import soundfile as sf |
| | import io |
| | from functools import lru_cache |
| |
|
| |
|
| | def load_segments(segments_file): |
| | """ load segments file as array """ |
| | if not os.path.exists(segments_file): |
| | return None |
| | return np.loadtxt( |
| | segments_file, |
| | dtype=[('utt', 'object'), |
| | ('rec', 'object'), |
| | ('st', 'f'), |
| | ('et', 'f')], |
| | ndmin=1) |
| |
|
| |
|
| | def load_segments_hash(segments_file): |
| | ret = {} |
| | if not os.path.exists(segments_file): |
| | return None |
| | for line in open(segments_file): |
| | utt, rec, st, et = line.strip().split() |
| | ret[utt] = (rec, float(st), float(et)) |
| | return ret |
| |
|
| |
|
| | def load_segments_rechash(segments_file): |
| | ret = {} |
| | if not os.path.exists(segments_file): |
| | return None |
| | for line in open(segments_file): |
| | utt, rec, st, et = line.strip().split() |
| | if rec not in ret: |
| | ret[rec] = [] |
| | ret[rec].append({'utt':utt, 'st':float(st), 'et':float(et)}) |
| | return ret |
| |
|
| |
|
| | def load_wav_scp(wav_scp_file): |
| | """ return dictionary { rec: wav_rxfilename } """ |
| | lines = [line.strip().split(None, 1) for line in open(wav_scp_file)] |
| | return {x[0]: x[1] for x in lines} |
| |
|
| |
|
| | @lru_cache(maxsize=1) |
| | def load_wav(wav_rxfilename, start=0, end=None): |
| | """ This function reads audio file and return data in numpy.float32 array. |
| | "lru_cache" holds recently loaded audio so that can be called |
| | many times on the same audio file. |
| | OPTIMIZE: controls lru_cache size for random access, |
| | considering memory size |
| | """ |
| | if wav_rxfilename.endswith('|'): |
| | |
| | p = subprocess.Popen(wav_rxfilename[:-1], shell=True, |
| | stdout=subprocess.PIPE) |
| | data, samplerate = sf.read(io.BytesIO(p.stdout.read()), |
| | dtype='float32') |
| | |
| | data = data[start:end] |
| | elif wav_rxfilename == '-': |
| | |
| | data, samplerate = sf.read(sys.stdin, dtype='float32') |
| | |
| | data = data[start:end] |
| | else: |
| | |
| | data, samplerate = sf.read(wav_rxfilename, start=start, stop=end) |
| | return data, samplerate |
| |
|
| |
|
| | def load_utt2spk(utt2spk_file): |
| | """ returns dictionary { uttid: spkid } """ |
| | lines = [line.strip().split(None, 1) for line in open(utt2spk_file)] |
| | return {x[0]: x[1] for x in lines} |
| |
|
| |
|
| | def load_spk2utt(spk2utt_file): |
| | """ returns dictionary { spkid: list of uttids } """ |
| | if not os.path.exists(spk2utt_file): |
| | return None |
| | lines = [line.strip().split() for line in open(spk2utt_file)] |
| | return {x[0]: x[1:] for x in lines} |
| |
|
| |
|
| | def load_reco2dur(reco2dur_file): |
| | """ returns dictionary { recid: duration } """ |
| | if not os.path.exists(reco2dur_file): |
| | return None |
| | lines = [line.strip().split(None, 1) for line in open(reco2dur_file)] |
| | return {x[0]: float(x[1]) for x in lines} |
| |
|
| |
|
| | def process_wav(wav_rxfilename, process): |
| | """ This function returns preprocessed wav_rxfilename |
| | Args: |
| | wav_rxfilename: input |
| | process: command which can be connected via pipe, |
| | use stdin and stdout |
| | Returns: |
| | wav_rxfilename: output piped command |
| | """ |
| | if wav_rxfilename.endswith('|'): |
| | |
| | return wav_rxfilename + process + "|" |
| | else: |
| | |
| | return "cat {} | {} |".format(wav_rxfilename, process) |
| |
|
| |
|
| | def extract_segments(wavs, segments=None): |
| | """ This function returns generator of segmented audio as |
| | (utterance id, numpy.float32 array) |
| | TODO?: sampling rate is not converted. |
| | """ |
| | if segments is not None: |
| | |
| | for seg in segments: |
| | wav = wavs[seg['rec']] |
| | data, samplerate = load_wav(wav) |
| | st_sample = np.rint(seg['st'] * samplerate).astype(int) |
| | et_sample = np.rint(seg['et'] * samplerate).astype(int) |
| | yield seg['utt'], data[st_sample:et_sample] |
| | else: |
| | |
| | |
| | for rec in wavs: |
| | data, samplerate = load_wav(wavs[rec]) |
| | yield rec, data |
| |
|
| |
|
| | class KaldiData: |
| | def __init__(self, data_dir): |
| | self.data_dir = data_dir |
| | self.segments = load_segments_rechash( |
| | os.path.join(self.data_dir, 'segments')) |
| | self.utt2spk = load_utt2spk( |
| | os.path.join(self.data_dir, 'utt2spk')) |
| | self.wavs = load_wav_scp( |
| | os.path.join(self.data_dir, 'wav.scp')) |
| | self.reco2dur = load_reco2dur( |
| | os.path.join(self.data_dir, 'reco2dur')) |
| | self.spk2utt = load_spk2utt( |
| | os.path.join(self.data_dir, 'spk2utt')) |
| |
|
| | def load_wav(self, recid, start=0, end=None): |
| | data, rate = load_wav( |
| | self.wavs[recid], start, end) |
| | return data, rate |
| |
|