├── .drone.yml ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Models ├── Multi │ ├── __init__.py │ ├── mms.py │ ├── phi4.py │ ├── seamless_m4t.py │ └── voxtral.py ├── OCR │ ├── __init__.py │ ├── easyocr.py │ └── got_ocr20.py ├── STS │ ├── DeepFilterNet.py │ ├── Noisereduce.py │ ├── SpeakerDiarization.py │ ├── VAD.py │ └── __init__.py ├── STT │ ├── __init__.py │ ├── faster_whisper.py │ ├── medusa_whisper.py │ ├── nemo_canary.py │ ├── speecht5.py │ ├── tansformer_whisper.py │ ├── wav2vec_bert.py │ ├── whisper_audio_markers.py │ └── whisper_medusa │ │ ├── __init__.py │ │ ├── eval_whisper_medusa.py │ │ ├── models │ │ ├── __init__.py │ │ ├── medusa_utils.py │ │ └── model.py │ │ └── utils │ │ ├── __init__.py │ │ ├── config_and_args.py │ │ ├── metrics.py │ │ └── utils.py ├── Singleton.py ├── TTS │ ├── F5TTS │ │ ├── api.py │ │ ├── eval │ │ │ ├── README.md │ │ │ ├── ecapa_tdnn.py │ │ │ ├── eval_infer_batch.py │ │ │ ├── eval_infer_batch.sh │ │ │ ├── eval_librispeech_test_clean.py │ │ │ ├── eval_seedtts_testset.py │ │ │ ├── eval_utmos.py │ │ │ └── utils_eval.py │ │ ├── infer │ │ │ ├── README.md │ │ │ ├── SHARED.md │ │ │ ├── examples │ │ │ │ └── vocab.txt │ │ │ ├── infer_cli.py │ │ │ ├── infer_gradio.py │ │ │ ├── speech_edit.py │ │ │ └── utils_infer.py │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── backbones │ │ │ │ ├── README.md │ │ │ │ ├── dit.py │ │ │ │ ├── mmdit.py │ │ │ │ └── unett.py │ │ │ ├── cfm.py │ │ │ ├── dataset.py │ │ │ ├── modules.py │ │ │ ├── trainer.py │ │ │ └── utils.py │ │ ├── scripts │ │ │ ├── count_max_epoch.py │ │ │ └── count_params_gflops.py │ │ ├── socket_server.py │ │ ├── third_party │ │ │ └── BigVGAN │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── activations.py │ │ │ │ ├── alias_free_activation │ │ │ │ ├── cuda │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── activation1d.py │ │ │ │ │ ├── anti_alias_activation.cpp │ │ │ │ │ ├── anti_alias_activation_cuda.cu │ │ │ │ │ ├── build │ │ │ │ │ │ ├── .ninja_deps │ │ │ │ │ │ ├── anti_alias_activation.o │ │ │ │ │ │ ├── anti_alias_activation_cuda.cuda.o │ │ │ │ │ │ ├── anti_alias_activation_cuda.exp │ │ │ │ │ │ └── anti_alias_activation_cuda.pyd │ │ │ │ │ ├── compat.h │ │ │ │ │ ├── load.py │ │ │ │ │ └── type_shim.h │ │ │ │ └── torch │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── act.py │ │ │ │ │ ├── filter.py │ │ │ │ │ └── resample.py │ │ │ │ ├── bigvgan.py │ │ │ │ ├── configs │ │ │ │ ├── bigvgan_22khz_80band.json │ │ │ │ ├── bigvgan_24khz_100band.json │ │ │ │ ├── bigvgan_base_22khz_80band.json │ │ │ │ ├── bigvgan_base_24khz_100band.json │ │ │ │ ├── bigvgan_v2_22khz_80band_256x.json │ │ │ │ ├── bigvgan_v2_22khz_80band_fmax8k_256x.json │ │ │ │ ├── bigvgan_v2_24khz_100band_256x.json │ │ │ │ ├── bigvgan_v2_44khz_128band_256x.json │ │ │ │ └── bigvgan_v2_44khz_128band_512x.json │ │ │ │ ├── demo │ │ │ │ ├── __init__.py │ │ │ │ ├── app.py │ │ │ │ ├── examples │ │ │ │ │ ├── dance_24k.wav │ │ │ │ │ ├── hifitts_44k.wav │ │ │ │ │ ├── jensen_24k.wav │ │ │ │ │ ├── libritts_24k.wav │ │ │ │ │ ├── megalovania_24k.wav │ │ │ │ │ ├── musdbhq_44k.wav │ │ │ │ │ ├── musiccaps1_44k.wav │ │ │ │ │ ├── musiccaps2_44k.wav │ │ │ │ │ └── queen_24k.wav │ │ │ │ └── requirements.txt │ │ │ │ ├── discriminators.py │ │ │ │ ├── env.py │ │ │ │ ├── filelists │ │ │ │ └── LibriTTS │ │ │ │ │ ├── dev-clean.txt │ │ │ │ │ ├── dev-other.txt │ │ │ │ │ ├── parse_libritts.py │ │ │ │ │ ├── test-clean.txt │ │ │ │ │ ├── test-other.txt │ │ │ │ │ ├── train-full.txt │ │ │ │ │ └── val-full.txt │ │ │ │ ├── incl_licenses │ │ │ │ ├── LICENSE_1 │ │ │ │ ├── LICENSE_2 │ │ │ │ ├── LICENSE_3 │ │ │ │ ├── LICENSE_4 │ │ │ │ ├── LICENSE_5 │ │ │ │ ├── LICENSE_6 │ │ │ │ ├── LICENSE_7 │ │ │ │ └── LICENSE_8 │ │ │ │ ├── inference.py │ │ │ │ ├── inference_e2e.py │ │ │ │ ├── loss.py │ │ │ │ ├── meldataset.py │ │ │ │ ├── nv-modelcard++ │ │ │ │ ├── .gitkeep │ │ │ │ ├── bias.md │ │ │ │ ├── explainability.md │ │ │ │ ├── overview.md │ │ │ │ ├── privacy.md │ │ │ │ └── safety.md │ │ │ │ ├── requirements.txt │ │ │ │ ├── tests │ │ │ │ ├── test_activation.py │ │ │ │ ├── test_activation_snake_beta.py │ │ │ │ └── test_cuda_vs_torch_model.py │ │ │ │ ├── train.py │ │ │ │ └── utils.py │ │ └── train │ │ │ ├── README.md │ │ │ ├── datasets │ │ │ ├── prepare_csv_wavs.py │ │ │ ├── prepare_emilia.py │ │ │ ├── prepare_libritts.py │ │ │ ├── prepare_ljspeech.py │ │ │ └── prepare_wenetspeech4tts.py │ │ │ ├── finetune_cli.py │ │ │ ├── finetune_gradio.py │ │ │ └── train.py │ ├── __init__.py │ ├── chatterbox │ │ ├── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── s3gen │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── const.py │ │ │ │ ├── decoder.py │ │ │ │ ├── f0_predictor.py │ │ │ │ ├── flow.py │ │ │ │ ├── flow_matching.py │ │ │ │ ├── hifigan.py │ │ │ │ ├── matcha │ │ │ │ │ ├── decoder.py │ │ │ │ │ ├── flow_matching.py │ │ │ │ │ ├── text_encoder.py │ │ │ │ │ └── transformer.py │ │ │ │ ├── s3gen.py │ │ │ │ ├── transformer │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── activation.py │ │ │ │ │ ├── attention.py │ │ │ │ │ ├── convolution.py │ │ │ │ │ ├── embedding.py │ │ │ │ │ ├── encoder_layer.py │ │ │ │ │ ├── positionwise_feed_forward.py │ │ │ │ │ ├── subsampling.py │ │ │ │ │ └── upsample_encoder.py │ │ │ │ ├── utils │ │ │ │ │ ├── class_utils.py │ │ │ │ │ ├── mask.py │ │ │ │ │ └── mel.py │ │ │ │ └── xvector.py │ │ │ ├── s3tokenizer │ │ │ │ ├── __init__.py │ │ │ │ └── s3tokenizer.py │ │ │ ├── t3 │ │ │ │ ├── __init__.py │ │ │ │ ├── inference │ │ │ │ │ ├── alignment_stream_analyzer.py │ │ │ │ │ └── t3_hf_backend.py │ │ │ │ ├── llama_configs.py │ │ │ │ ├── modules │ │ │ │ │ ├── cond_enc.py │ │ │ │ │ ├── learned_pos_emb.py │ │ │ │ │ ├── perceiver.py │ │ │ │ │ └── t3_config.py │ │ │ │ └── t3.py │ │ │ ├── tokenizers │ │ │ │ ├── __init__.py │ │ │ │ └── tokenizer.py │ │ │ ├── utils.py │ │ │ └── voice_encoder │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── melspec.py │ │ │ │ └── voice_encoder.py │ │ ├── mtl_tts.py │ │ ├── onnx.py │ │ ├── tts.py │ │ └── vc.py │ ├── chatterbox_tts.py │ ├── f5_tts.py │ ├── kokoro │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── custom_stft.py │ │ ├── istftnet.py │ │ ├── model.py │ │ ├── modules.py │ │ └── pipeline.py │ ├── kokoro_tts.py │ ├── orpheus_tts.py │ ├── silero.py │ ├── tts.py │ ├── zonos │ │ ├── autoencoder.py │ │ ├── backbone │ │ │ ├── __init__.py │ │ │ ├── _mamba_ssm.py │ │ │ └── _torch.py │ │ ├── codebook_pattern.py │ │ ├── conditioning.py │ │ ├── config.py │ │ ├── model.py │ │ ├── sampling.py │ │ ├── speaker_cloning.py │ │ └── utils.py │ └── zonos_tts.py ├── TextCorrection │ └── T5.py ├── TextTranslation │ ├── __init__.py │ ├── texttranslate.py │ ├── texttranslateM2M100.py │ ├── texttranslateM2M100_CTranslate2.py │ ├── texttranslateNLLB200.py │ └── texttranslateNLLB200_CTranslate2.py ├── __init__.py ├── languageClassification.py └── sentence_split.py ├── Plugins └── __init__.py ├── Profiles └── .gitkeep ├── README.md ├── Utilities ├── __init__.py └── iso_converter.py ├── VRC_OSCLib.py ├── VRC_OSCServer.py ├── app-icon.ico ├── audioWhisper.py ├── audioWhisper.spec ├── audio_processing_recording.py ├── audio_tools.py ├── audioprocessor.py ├── dist_files ├── .current_platform.yaml.template ├── .info.txt ├── Plugins │ └── place_plugins_here.txt ├── get-device-list.bat └── help.bat ├── documentation ├── configurations.md ├── faq.md ├── usage.md ├── websocket-clients.md └── working-with-code.md ├── downloader.py ├── flash_attn_runtime_shim.py ├── get-device-list.bat ├── hook-flash_attn.py ├── ignorelist.txt ├── images ├── app-icon.png ├── docs │ └── DeepL.png ├── parallel-live-translation.png ├── remote_control.png ├── streaming-overlay-02.png ├── streaming-overlay.png ├── vr_subtitles.gif ├── vrchat.png └── vrchat_live_subtitles.gif ├── install.bat ├── markers ├── OKW-MRK-da.wav ├── OKW-MRK-de.wav ├── OKW-MRK-el.wav ├── OKW-MRK-en.wav ├── OKW-MRK-es.wav ├── OKW-MRK-fr.wav ├── OKW-MRK-hi.wav ├── OKW-MRK-hu.wav ├── OKW-MRK-it.wav ├── OKW-MRK-ja.wav ├── OKW-MRK-ko.wav ├── OKW-MRK-nl.wav ├── OKW-MRK-pl.wav ├── OKW-MRK-pt.wav ├── OKW-MRK-sv.wav ├── OKW-MRK-uk.wav ├── OKW-MRK-zh.wav ├── OKW-MRK.wav ├── WOK-MRK-da.wav ├── WOK-MRK-de.wav ├── WOK-MRK-el.wav ├── WOK-MRK-en.wav ├── WOK-MRK-es.wav ├── WOK-MRK-fr.wav ├── WOK-MRK-hi.wav ├── WOK-MRK-hu.wav ├── WOK-MRK-it.wav ├── WOK-MRK-ja.wav ├── WOK-MRK-ko.wav ├── WOK-MRK-nl.wav ├── WOK-MRK-pl.wav ├── WOK-MRK-pt.wav ├── WOK-MRK-sv.wav ├── WOK-MRK-uk.wav ├── WOK-MRK-zh.wav └── WOK-MRK.wav ├── patches └── triton-nvidia-compiler.patch ├── processmanager.py ├── remote_opener.py ├── requirements.amd.txt ├── requirements.linux.prereq.txt ├── requirements.linux.txt ├── requirements.nvidia.txt ├── requirements.txt ├── rthooks ├── patch_triton_ptxas.py ├── rt_disable_triton_backend.py ├── rt_fix_flash_attn_spec.py ├── rt_inspect_fallback.py ├── rt_mamba_triton_shim.py └── rt_triton_env.py ├── settings.py ├── speech_recognition_patch.py ├── start-transcribe-mic.bat ├── start-translate-pcsound.bat ├── websocket.py ├── websocket_clients ├── simple │ └── index.html ├── streaming-overlay-01 │ ├── app-icon.png │ ├── bootstrap.min.css │ ├── index.html │ └── main.css ├── streaming-overlay-02 │ └── index.html ├── streaming-overlay-03 │ └── index.html └── websocket-remote │ ├── app-icon.png │ ├── bootstrap.min.css │ ├── index.html │ └── main.css └── windowcapture.py /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/.drone.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/LICENSE -------------------------------------------------------------------------------- /Models/Multi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Models/Multi/mms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/Multi/mms.py -------------------------------------------------------------------------------- /Models/Multi/phi4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/Multi/phi4.py -------------------------------------------------------------------------------- /Models/Multi/seamless_m4t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/Multi/seamless_m4t.py -------------------------------------------------------------------------------- /Models/Multi/voxtral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/Multi/voxtral.py -------------------------------------------------------------------------------- /Models/OCR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/OCR/__init__.py -------------------------------------------------------------------------------- /Models/OCR/easyocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/OCR/easyocr.py -------------------------------------------------------------------------------- /Models/OCR/got_ocr20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/OCR/got_ocr20.py -------------------------------------------------------------------------------- /Models/STS/DeepFilterNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/STS/DeepFilterNet.py -------------------------------------------------------------------------------- /Models/STS/Noisereduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/STS/Noisereduce.py -------------------------------------------------------------------------------- /Models/STS/SpeakerDiarization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/STS/SpeakerDiarization.py -------------------------------------------------------------------------------- /Models/STS/VAD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/STS/VAD.py -------------------------------------------------------------------------------- /Models/STS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Models/STT/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Models/STT/faster_whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/STT/faster_whisper.py -------------------------------------------------------------------------------- /Models/STT/medusa_whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/STT/medusa_whisper.py -------------------------------------------------------------------------------- /Models/STT/nemo_canary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/STT/nemo_canary.py -------------------------------------------------------------------------------- /Models/STT/speecht5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/STT/speecht5.py -------------------------------------------------------------------------------- /Models/STT/tansformer_whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/STT/tansformer_whisper.py -------------------------------------------------------------------------------- /Models/STT/wav2vec_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/STT/wav2vec_bert.py -------------------------------------------------------------------------------- /Models/STT/whisper_audio_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/STT/whisper_audio_markers.py -------------------------------------------------------------------------------- /Models/STT/whisper_medusa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Models/STT/whisper_medusa/eval_whisper_medusa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/STT/whisper_medusa/eval_whisper_medusa.py -------------------------------------------------------------------------------- /Models/STT/whisper_medusa/models/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import WhisperMedusaModel 2 | -------------------------------------------------------------------------------- /Models/STT/whisper_medusa/models/medusa_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/STT/whisper_medusa/models/medusa_utils.py -------------------------------------------------------------------------------- /Models/STT/whisper_medusa/models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/STT/whisper_medusa/models/model.py -------------------------------------------------------------------------------- /Models/STT/whisper_medusa/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Models/STT/whisper_medusa/utils/config_and_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/STT/whisper_medusa/utils/config_and_args.py -------------------------------------------------------------------------------- /Models/STT/whisper_medusa/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/STT/whisper_medusa/utils/metrics.py -------------------------------------------------------------------------------- /Models/STT/whisper_medusa/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/STT/whisper_medusa/utils/utils.py -------------------------------------------------------------------------------- /Models/Singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/Singleton.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/api.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/eval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/eval/README.md -------------------------------------------------------------------------------- /Models/TTS/F5TTS/eval/ecapa_tdnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/eval/ecapa_tdnn.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/eval/eval_infer_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/eval/eval_infer_batch.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/eval/eval_infer_batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/eval/eval_infer_batch.sh -------------------------------------------------------------------------------- /Models/TTS/F5TTS/eval/eval_librispeech_test_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/eval/eval_librispeech_test_clean.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/eval/eval_seedtts_testset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/eval/eval_seedtts_testset.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/eval/eval_utmos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/eval/eval_utmos.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/eval/utils_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/eval/utils_eval.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/infer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/infer/README.md -------------------------------------------------------------------------------- /Models/TTS/F5TTS/infer/SHARED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/infer/SHARED.md -------------------------------------------------------------------------------- /Models/TTS/F5TTS/infer/examples/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/infer/examples/vocab.txt -------------------------------------------------------------------------------- /Models/TTS/F5TTS/infer/infer_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/infer/infer_cli.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/infer/infer_gradio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/infer/infer_gradio.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/infer/speech_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/infer/speech_edit.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/infer/utils_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/infer/utils_infer.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/model/__init__.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/model/backbones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/model/backbones/README.md -------------------------------------------------------------------------------- /Models/TTS/F5TTS/model/backbones/dit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/model/backbones/dit.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/model/backbones/mmdit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/model/backbones/mmdit.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/model/backbones/unett.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/model/backbones/unett.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/model/cfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/model/cfm.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/model/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/model/dataset.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/model/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/model/modules.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/model/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/model/trainer.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/model/utils.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/scripts/count_max_epoch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/scripts/count_max_epoch.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/scripts/count_params_gflops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/scripts/count_params_gflops.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/socket_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/socket_server.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/LICENSE -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/README.md -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/activations.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/activation1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/activation1d.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/anti_alias_activation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/anti_alias_activation.cpp -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/anti_alias_activation_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/anti_alias_activation_cuda.cu -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/build/.ninja_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/build/.ninja_deps -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/build/anti_alias_activation.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/build/anti_alias_activation.o -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/build/anti_alias_activation_cuda.cuda.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/build/anti_alias_activation_cuda.cuda.o -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/build/anti_alias_activation_cuda.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/build/anti_alias_activation_cuda.exp -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/build/anti_alias_activation_cuda.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/build/anti_alias_activation_cuda.pyd -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/compat.h -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/load.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/type_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/cuda/type_shim.h -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/torch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/torch/__init__.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/torch/act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/torch/act.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/torch/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/torch/filter.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/torch/resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/alias_free_activation/torch/resample.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/bigvgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/bigvgan.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/configs/bigvgan_22khz_80band.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/configs/bigvgan_22khz_80band.json -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/configs/bigvgan_24khz_100band.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/configs/bigvgan_24khz_100band.json -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/configs/bigvgan_base_22khz_80band.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/configs/bigvgan_base_22khz_80band.json -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/configs/bigvgan_base_24khz_100band.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/configs/bigvgan_base_24khz_100band.json -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/configs/bigvgan_v2_22khz_80band_256x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/configs/bigvgan_v2_22khz_80band_256x.json -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/configs/bigvgan_v2_22khz_80band_fmax8k_256x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/configs/bigvgan_v2_22khz_80band_fmax8k_256x.json -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/configs/bigvgan_v2_24khz_100band_256x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/configs/bigvgan_v2_24khz_100band_256x.json -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/configs/bigvgan_v2_44khz_128band_256x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/configs/bigvgan_v2_44khz_128band_256x.json -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/configs/bigvgan_v2_44khz_128band_512x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/configs/bigvgan_v2_44khz_128band_512x.json -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/demo/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/demo/app.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/demo/examples/dance_24k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/demo/examples/dance_24k.wav -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/demo/examples/hifitts_44k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/demo/examples/hifitts_44k.wav -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/demo/examples/jensen_24k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/demo/examples/jensen_24k.wav -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/demo/examples/libritts_24k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/demo/examples/libritts_24k.wav -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/demo/examples/megalovania_24k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/demo/examples/megalovania_24k.wav -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/demo/examples/musdbhq_44k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/demo/examples/musdbhq_44k.wav -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/demo/examples/musiccaps1_44k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/demo/examples/musiccaps1_44k.wav -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/demo/examples/musiccaps2_44k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/demo/examples/musiccaps2_44k.wav -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/demo/examples/queen_24k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/demo/examples/queen_24k.wav -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/demo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/demo/requirements.txt -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/discriminators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/discriminators.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/env.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/filelists/LibriTTS/dev-clean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/filelists/LibriTTS/dev-clean.txt -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/filelists/LibriTTS/dev-other.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/filelists/LibriTTS/dev-other.txt -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/filelists/LibriTTS/parse_libritts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/filelists/LibriTTS/parse_libritts.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/filelists/LibriTTS/test-clean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/filelists/LibriTTS/test-clean.txt -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/filelists/LibriTTS/test-other.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/filelists/LibriTTS/test-other.txt -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/filelists/LibriTTS/train-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/filelists/LibriTTS/train-full.txt -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/filelists/LibriTTS/val-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/filelists/LibriTTS/val-full.txt -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/incl_licenses/LICENSE_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/incl_licenses/LICENSE_1 -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/incl_licenses/LICENSE_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/incl_licenses/LICENSE_2 -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/incl_licenses/LICENSE_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/incl_licenses/LICENSE_3 -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/incl_licenses/LICENSE_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/incl_licenses/LICENSE_4 -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/incl_licenses/LICENSE_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/incl_licenses/LICENSE_5 -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/incl_licenses/LICENSE_6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/incl_licenses/LICENSE_6 -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/incl_licenses/LICENSE_7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/incl_licenses/LICENSE_7 -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/incl_licenses/LICENSE_8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/incl_licenses/LICENSE_8 -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/inference.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/inference_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/inference_e2e.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/loss.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/meldataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/meldataset.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/nv-modelcard++/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/nv-modelcard++/bias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/nv-modelcard++/bias.md -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/nv-modelcard++/explainability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/nv-modelcard++/explainability.md -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/nv-modelcard++/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/nv-modelcard++/overview.md -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/nv-modelcard++/privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/nv-modelcard++/privacy.md -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/nv-modelcard++/safety.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/nv-modelcard++/safety.md -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/requirements.txt -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/tests/test_activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/tests/test_activation.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/tests/test_activation_snake_beta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/tests/test_activation_snake_beta.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/tests/test_cuda_vs_torch_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/tests/test_cuda_vs_torch_model.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/train.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/third_party/BigVGAN/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/third_party/BigVGAN/utils.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/train/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/train/README.md -------------------------------------------------------------------------------- /Models/TTS/F5TTS/train/datasets/prepare_csv_wavs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/train/datasets/prepare_csv_wavs.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/train/datasets/prepare_emilia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/train/datasets/prepare_emilia.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/train/datasets/prepare_libritts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/train/datasets/prepare_libritts.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/train/datasets/prepare_ljspeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/train/datasets/prepare_ljspeech.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/train/datasets/prepare_wenetspeech4tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/train/datasets/prepare_wenetspeech4tts.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/train/finetune_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/train/finetune_cli.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/train/finetune_gradio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/train/finetune_gradio.py -------------------------------------------------------------------------------- /Models/TTS/F5TTS/train/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/F5TTS/train/train.py -------------------------------------------------------------------------------- /Models/TTS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Models/TTS/chatterbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/__init__.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/__init__.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/configs.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/const.py: -------------------------------------------------------------------------------- 1 | S3GEN_SR = 24000 2 | -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/decoder.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/f0_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/f0_predictor.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/flow.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/flow_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/flow_matching.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/hifigan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/hifigan.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/matcha/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/matcha/decoder.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/matcha/flow_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/matcha/flow_matching.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/matcha/text_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/matcha/text_encoder.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/matcha/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/matcha/transformer.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/s3gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/s3gen.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/transformer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/transformer/activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/transformer/activation.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/transformer/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/transformer/attention.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/transformer/convolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/transformer/convolution.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/transformer/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/transformer/embedding.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/transformer/encoder_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/transformer/encoder_layer.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/transformer/positionwise_feed_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/transformer/positionwise_feed_forward.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/transformer/subsampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/transformer/subsampling.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/transformer/upsample_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/transformer/upsample_encoder.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/utils/class_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/utils/class_utils.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/utils/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/utils/mask.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/utils/mel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/utils/mel.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3gen/xvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3gen/xvector.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3tokenizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3tokenizer/__init__.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/s3tokenizer/s3tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/s3tokenizer/s3tokenizer.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/t3/__init__.py: -------------------------------------------------------------------------------- 1 | from .t3 import T3 2 | -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/t3/inference/alignment_stream_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/t3/inference/alignment_stream_analyzer.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/t3/inference/t3_hf_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/t3/inference/t3_hf_backend.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/t3/llama_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/t3/llama_configs.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/t3/modules/cond_enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/t3/modules/cond_enc.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/t3/modules/learned_pos_emb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/t3/modules/learned_pos_emb.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/t3/modules/perceiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/t3/modules/perceiver.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/t3/modules/t3_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/t3/modules/t3_config.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/t3/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/t3/t3.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/tokenizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/tokenizers/__init__.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/tokenizers/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/tokenizers/tokenizer.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/utils.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/voice_encoder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/voice_encoder/__init__.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/voice_encoder/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/voice_encoder/config.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/voice_encoder/melspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/voice_encoder/melspec.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/models/voice_encoder/voice_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/models/voice_encoder/voice_encoder.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/mtl_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/mtl_tts.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/onnx.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/tts.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox/vc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox/vc.py -------------------------------------------------------------------------------- /Models/TTS/chatterbox_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/chatterbox_tts.py -------------------------------------------------------------------------------- /Models/TTS/f5_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/f5_tts.py -------------------------------------------------------------------------------- /Models/TTS/kokoro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/kokoro/__init__.py -------------------------------------------------------------------------------- /Models/TTS/kokoro/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/kokoro/__main__.py -------------------------------------------------------------------------------- /Models/TTS/kokoro/custom_stft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/kokoro/custom_stft.py -------------------------------------------------------------------------------- /Models/TTS/kokoro/istftnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/kokoro/istftnet.py -------------------------------------------------------------------------------- /Models/TTS/kokoro/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/kokoro/model.py -------------------------------------------------------------------------------- /Models/TTS/kokoro/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/kokoro/modules.py -------------------------------------------------------------------------------- /Models/TTS/kokoro/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/kokoro/pipeline.py -------------------------------------------------------------------------------- /Models/TTS/kokoro_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/kokoro_tts.py -------------------------------------------------------------------------------- /Models/TTS/orpheus_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/orpheus_tts.py -------------------------------------------------------------------------------- /Models/TTS/silero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/silero.py -------------------------------------------------------------------------------- /Models/TTS/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/tts.py -------------------------------------------------------------------------------- /Models/TTS/zonos/autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/zonos/autoencoder.py -------------------------------------------------------------------------------- /Models/TTS/zonos/backbone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/zonos/backbone/__init__.py -------------------------------------------------------------------------------- /Models/TTS/zonos/backbone/_mamba_ssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/zonos/backbone/_mamba_ssm.py -------------------------------------------------------------------------------- /Models/TTS/zonos/backbone/_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/zonos/backbone/_torch.py -------------------------------------------------------------------------------- /Models/TTS/zonos/codebook_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/zonos/codebook_pattern.py -------------------------------------------------------------------------------- /Models/TTS/zonos/conditioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/zonos/conditioning.py -------------------------------------------------------------------------------- /Models/TTS/zonos/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/zonos/config.py -------------------------------------------------------------------------------- /Models/TTS/zonos/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/zonos/model.py -------------------------------------------------------------------------------- /Models/TTS/zonos/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/zonos/sampling.py -------------------------------------------------------------------------------- /Models/TTS/zonos/speaker_cloning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/zonos/speaker_cloning.py -------------------------------------------------------------------------------- /Models/TTS/zonos/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/zonos/utils.py -------------------------------------------------------------------------------- /Models/TTS/zonos_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TTS/zonos_tts.py -------------------------------------------------------------------------------- /Models/TextCorrection/T5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TextCorrection/T5.py -------------------------------------------------------------------------------- /Models/TextTranslation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Models/TextTranslation/texttranslate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TextTranslation/texttranslate.py -------------------------------------------------------------------------------- /Models/TextTranslation/texttranslateM2M100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TextTranslation/texttranslateM2M100.py -------------------------------------------------------------------------------- /Models/TextTranslation/texttranslateM2M100_CTranslate2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TextTranslation/texttranslateM2M100_CTranslate2.py -------------------------------------------------------------------------------- /Models/TextTranslation/texttranslateNLLB200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TextTranslation/texttranslateNLLB200.py -------------------------------------------------------------------------------- /Models/TextTranslation/texttranslateNLLB200_CTranslate2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/TextTranslation/texttranslateNLLB200_CTranslate2.py -------------------------------------------------------------------------------- /Models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Models/languageClassification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/languageClassification.py -------------------------------------------------------------------------------- /Models/sentence_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Models/sentence_split.py -------------------------------------------------------------------------------- /Plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Plugins/__init__.py -------------------------------------------------------------------------------- /Profiles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/README.md -------------------------------------------------------------------------------- /Utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Utilities/__init__.py -------------------------------------------------------------------------------- /Utilities/iso_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/Utilities/iso_converter.py -------------------------------------------------------------------------------- /VRC_OSCLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/VRC_OSCLib.py -------------------------------------------------------------------------------- /VRC_OSCServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/VRC_OSCServer.py -------------------------------------------------------------------------------- /app-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/app-icon.ico -------------------------------------------------------------------------------- /audioWhisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/audioWhisper.py -------------------------------------------------------------------------------- /audioWhisper.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/audioWhisper.spec -------------------------------------------------------------------------------- /audio_processing_recording.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/audio_processing_recording.py -------------------------------------------------------------------------------- /audio_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/audio_tools.py -------------------------------------------------------------------------------- /audioprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/audioprocessor.py -------------------------------------------------------------------------------- /dist_files/.current_platform.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/dist_files/.current_platform.yaml.template -------------------------------------------------------------------------------- /dist_files/.info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/dist_files/.info.txt -------------------------------------------------------------------------------- /dist_files/Plugins/place_plugins_here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/dist_files/Plugins/place_plugins_here.txt -------------------------------------------------------------------------------- /dist_files/get-device-list.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/dist_files/get-device-list.bat -------------------------------------------------------------------------------- /dist_files/help.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/dist_files/help.bat -------------------------------------------------------------------------------- /documentation/configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/documentation/configurations.md -------------------------------------------------------------------------------- /documentation/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/documentation/faq.md -------------------------------------------------------------------------------- /documentation/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/documentation/usage.md -------------------------------------------------------------------------------- /documentation/websocket-clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/documentation/websocket-clients.md -------------------------------------------------------------------------------- /documentation/working-with-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/documentation/working-with-code.md -------------------------------------------------------------------------------- /downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/downloader.py -------------------------------------------------------------------------------- /flash_attn_runtime_shim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/flash_attn_runtime_shim.py -------------------------------------------------------------------------------- /get-device-list.bat: -------------------------------------------------------------------------------- 1 | python audioWhisper.py --devices true 2 | pause 3 | -------------------------------------------------------------------------------- /hook-flash_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/hook-flash_attn.py -------------------------------------------------------------------------------- /ignorelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/ignorelist.txt -------------------------------------------------------------------------------- /images/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/images/app-icon.png -------------------------------------------------------------------------------- /images/docs/DeepL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/images/docs/DeepL.png -------------------------------------------------------------------------------- /images/parallel-live-translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/images/parallel-live-translation.png -------------------------------------------------------------------------------- /images/remote_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/images/remote_control.png -------------------------------------------------------------------------------- /images/streaming-overlay-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/images/streaming-overlay-02.png -------------------------------------------------------------------------------- /images/streaming-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/images/streaming-overlay.png -------------------------------------------------------------------------------- /images/vr_subtitles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/images/vr_subtitles.gif -------------------------------------------------------------------------------- /images/vrchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/images/vrchat.png -------------------------------------------------------------------------------- /images/vrchat_live_subtitles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/images/vrchat_live_subtitles.gif -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/install.bat -------------------------------------------------------------------------------- /markers/OKW-MRK-da.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/OKW-MRK-da.wav -------------------------------------------------------------------------------- /markers/OKW-MRK-de.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/OKW-MRK-de.wav -------------------------------------------------------------------------------- /markers/OKW-MRK-el.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/OKW-MRK-el.wav -------------------------------------------------------------------------------- /markers/OKW-MRK-en.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/OKW-MRK-en.wav -------------------------------------------------------------------------------- /markers/OKW-MRK-es.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/OKW-MRK-es.wav -------------------------------------------------------------------------------- /markers/OKW-MRK-fr.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/OKW-MRK-fr.wav -------------------------------------------------------------------------------- /markers/OKW-MRK-hi.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/OKW-MRK-hi.wav -------------------------------------------------------------------------------- /markers/OKW-MRK-hu.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/OKW-MRK-hu.wav -------------------------------------------------------------------------------- /markers/OKW-MRK-it.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/OKW-MRK-it.wav -------------------------------------------------------------------------------- /markers/OKW-MRK-ja.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/OKW-MRK-ja.wav -------------------------------------------------------------------------------- /markers/OKW-MRK-ko.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/OKW-MRK-ko.wav -------------------------------------------------------------------------------- /markers/OKW-MRK-nl.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/OKW-MRK-nl.wav -------------------------------------------------------------------------------- /markers/OKW-MRK-pl.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/OKW-MRK-pl.wav -------------------------------------------------------------------------------- /markers/OKW-MRK-pt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/OKW-MRK-pt.wav -------------------------------------------------------------------------------- /markers/OKW-MRK-sv.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/OKW-MRK-sv.wav -------------------------------------------------------------------------------- /markers/OKW-MRK-uk.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/OKW-MRK-uk.wav -------------------------------------------------------------------------------- /markers/OKW-MRK-zh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/OKW-MRK-zh.wav -------------------------------------------------------------------------------- /markers/OKW-MRK.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/OKW-MRK.wav -------------------------------------------------------------------------------- /markers/WOK-MRK-da.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/WOK-MRK-da.wav -------------------------------------------------------------------------------- /markers/WOK-MRK-de.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/WOK-MRK-de.wav -------------------------------------------------------------------------------- /markers/WOK-MRK-el.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/WOK-MRK-el.wav -------------------------------------------------------------------------------- /markers/WOK-MRK-en.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/WOK-MRK-en.wav -------------------------------------------------------------------------------- /markers/WOK-MRK-es.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/WOK-MRK-es.wav -------------------------------------------------------------------------------- /markers/WOK-MRK-fr.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/WOK-MRK-fr.wav -------------------------------------------------------------------------------- /markers/WOK-MRK-hi.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/WOK-MRK-hi.wav -------------------------------------------------------------------------------- /markers/WOK-MRK-hu.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/WOK-MRK-hu.wav -------------------------------------------------------------------------------- /markers/WOK-MRK-it.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/WOK-MRK-it.wav -------------------------------------------------------------------------------- /markers/WOK-MRK-ja.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/WOK-MRK-ja.wav -------------------------------------------------------------------------------- /markers/WOK-MRK-ko.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/WOK-MRK-ko.wav -------------------------------------------------------------------------------- /markers/WOK-MRK-nl.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/WOK-MRK-nl.wav -------------------------------------------------------------------------------- /markers/WOK-MRK-pl.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/WOK-MRK-pl.wav -------------------------------------------------------------------------------- /markers/WOK-MRK-pt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/WOK-MRK-pt.wav -------------------------------------------------------------------------------- /markers/WOK-MRK-sv.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/WOK-MRK-sv.wav -------------------------------------------------------------------------------- /markers/WOK-MRK-uk.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/WOK-MRK-uk.wav -------------------------------------------------------------------------------- /markers/WOK-MRK-zh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/WOK-MRK-zh.wav -------------------------------------------------------------------------------- /markers/WOK-MRK.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/markers/WOK-MRK.wav -------------------------------------------------------------------------------- /patches/triton-nvidia-compiler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/patches/triton-nvidia-compiler.patch -------------------------------------------------------------------------------- /processmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/processmanager.py -------------------------------------------------------------------------------- /remote_opener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/remote_opener.py -------------------------------------------------------------------------------- /requirements.amd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/requirements.amd.txt -------------------------------------------------------------------------------- /requirements.linux.prereq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/requirements.linux.prereq.txt -------------------------------------------------------------------------------- /requirements.linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/requirements.linux.txt -------------------------------------------------------------------------------- /requirements.nvidia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/requirements.nvidia.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/requirements.txt -------------------------------------------------------------------------------- /rthooks/patch_triton_ptxas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/rthooks/patch_triton_ptxas.py -------------------------------------------------------------------------------- /rthooks/rt_disable_triton_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/rthooks/rt_disable_triton_backend.py -------------------------------------------------------------------------------- /rthooks/rt_fix_flash_attn_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/rthooks/rt_fix_flash_attn_spec.py -------------------------------------------------------------------------------- /rthooks/rt_inspect_fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/rthooks/rt_inspect_fallback.py -------------------------------------------------------------------------------- /rthooks/rt_mamba_triton_shim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/rthooks/rt_mamba_triton_shim.py -------------------------------------------------------------------------------- /rthooks/rt_triton_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/rthooks/rt_triton_env.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/settings.py -------------------------------------------------------------------------------- /speech_recognition_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/speech_recognition_patch.py -------------------------------------------------------------------------------- /start-transcribe-mic.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/start-transcribe-mic.bat -------------------------------------------------------------------------------- /start-translate-pcsound.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/start-translate-pcsound.bat -------------------------------------------------------------------------------- /websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/websocket.py -------------------------------------------------------------------------------- /websocket_clients/simple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/websocket_clients/simple/index.html -------------------------------------------------------------------------------- /websocket_clients/streaming-overlay-01/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/websocket_clients/streaming-overlay-01/app-icon.png -------------------------------------------------------------------------------- /websocket_clients/streaming-overlay-01/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/websocket_clients/streaming-overlay-01/bootstrap.min.css -------------------------------------------------------------------------------- /websocket_clients/streaming-overlay-01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/websocket_clients/streaming-overlay-01/index.html -------------------------------------------------------------------------------- /websocket_clients/streaming-overlay-01/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/websocket_clients/streaming-overlay-01/main.css -------------------------------------------------------------------------------- /websocket_clients/streaming-overlay-02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/websocket_clients/streaming-overlay-02/index.html -------------------------------------------------------------------------------- /websocket_clients/streaming-overlay-03/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/websocket_clients/streaming-overlay-03/index.html -------------------------------------------------------------------------------- /websocket_clients/websocket-remote/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/websocket_clients/websocket-remote/app-icon.png -------------------------------------------------------------------------------- /websocket_clients/websocket-remote/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/websocket_clients/websocket-remote/bootstrap.min.css -------------------------------------------------------------------------------- /websocket_clients/websocket-remote/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/websocket_clients/websocket-remote/index.html -------------------------------------------------------------------------------- /websocket_clients/websocket-remote/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/websocket_clients/websocket-remote/main.css -------------------------------------------------------------------------------- /windowcapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharrnah/whispering/HEAD/windowcapture.py --------------------------------------------------------------------------------