Forked from
FAST / SpeechDatasets.jl
61 commits behind the upstream repository.
-
Lucas Ondel Yang authoredLucas Ondel Yang authored
SpeechCorpora.jl 514 B
# SPDX-License-Identifier: CECILL-2.1
module SpeechCorpora
using HTTP
using JSON
using PortAudio
using WAV
export
# ManifestItem
Recording,
Supervision,
load,
play,
# Manifest interface
writemanifest,
readmanifest,
# Corpora interface
download,
prepare,
# Corpora
MultilingualLibriSpeech,
MiniLibriSpeech
include("manifest_item.jl")
include("manifest_io.jl")
include("corpora/multilingual_librispeech.jl")
include("corpora/mini_librispeech.jl")
end