Skip to content
Snippets Groups Projects
SpeechCorpora.jl 454 B
Newer Older
  • Learn to ignore specific revisions
  • # 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
    
    
    include("manifest_item.jl")
    include("manifest_io.jl")
    include("corpora/multilingual_librispeech.jl")
    
    end