├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── fish_speech ├── callbacks │ ├── __init__.py │ └── grad_norm.py ├── configs │ ├── base.yaml │ ├── lora │ │ └── r_8_alpha_16.yaml │ ├── model │ │ ├── dual_ar_2_codebook_large.yaml │ │ ├── dual_ar_2_codebook_medium.yaml │ │ ├── dual_ar_2_codebook_small.yaml │ │ └── naive_2_codebook_small.yaml │ ├── text2semantic_finetune.yaml │ ├── text2semantic_pretrain.yaml │ ├── text2semantic_sft.yaml │ ├── vits_decoder_finetune.yaml │ ├── vits_decoder_pretrain.yaml │ ├── vqgan_finetune.yaml │ └── vqgan_pretrain.yaml ├── datasets │ ├── concat_repeat.py │ ├── protos │ │ ├── text-data.proto │ │ ├── text_data_pb2.py │ │ └── text_data_stream.py │ ├── text.py │ ├── vits.py │ └── vqgan.py ├── i18n │ ├── __init__.py │ ├── core.py │ ├── locale │ │ ├── en_US.json │ │ ├── es_ES.json │ │ ├── ja_JP.json │ │ └── zh_CN.json │ └── scan.py ├── models │ ├── text2semantic │ │ ├── __init__.py │ │ ├── lit_module.py │ │ ├── llama.py │ │ └── lora_utils.py │ ├── vits_decoder │ │ ├── __init__.py │ │ ├── lit_module.py │ │ ├── losses.py │ │ └── modules │ │ │ ├── attentions.py │ │ │ ├── commons.py │ │ │ ├── models.py │ │ │ ├── modules.py │ │ │ ├── mrte.py │ │ │ └── vq_encoder.py │ └── vqgan │ │ ├── __init__.py │ │ ├── lit_module.py │ │ ├── modules │ │ ├── discriminator.py │ │ ├── firefly.py │ │ ├── fsq.py │ │ ├── reference.py │ │ └── wavenet.py │ │ └── utils.py ├── scheduler.py ├── text │ ├── __init__.py │ └── clean.py ├── train.py ├── utils │ ├── __init__.py │ ├── braceexpand.py │ ├── file.py │ ├── instantiators.py │ ├── logger.py │ ├── logging_utils.py │ ├── rich_utils.py │ ├── spectrogram.py │ └── utils.py └── webui │ ├── css │ └── style.css │ ├── html │ └── footer.html │ ├── js │ └── animate.js │ ├── launch_utils.py │ └── manage.py ├── nodes.py ├── requirements.txt ├── tools ├── api.py ├── extract_model.py ├── llama │ ├── build_dataset.py │ ├── generate.py │ ├── merge_lora.py │ ├── quantize.py │ └── rebuild_tokenizer.py ├── merge_asr_files.py ├── vqgan │ ├── create_train_split.py │ ├── extract_vq.py │ └── inference.py ├── webui.py └── whisper_asr.py └── web └── js ├── previewAudio.js ├── uploadAudio.js └── uploadSRT.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/__init__.py -------------------------------------------------------------------------------- /fish_speech/callbacks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/callbacks/__init__.py -------------------------------------------------------------------------------- /fish_speech/callbacks/grad_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/callbacks/grad_norm.py -------------------------------------------------------------------------------- /fish_speech/configs/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/configs/base.yaml -------------------------------------------------------------------------------- /fish_speech/configs/lora/r_8_alpha_16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/configs/lora/r_8_alpha_16.yaml -------------------------------------------------------------------------------- /fish_speech/configs/model/dual_ar_2_codebook_large.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/configs/model/dual_ar_2_codebook_large.yaml -------------------------------------------------------------------------------- /fish_speech/configs/model/dual_ar_2_codebook_medium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/configs/model/dual_ar_2_codebook_medium.yaml -------------------------------------------------------------------------------- /fish_speech/configs/model/dual_ar_2_codebook_small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/configs/model/dual_ar_2_codebook_small.yaml -------------------------------------------------------------------------------- /fish_speech/configs/model/naive_2_codebook_small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/configs/model/naive_2_codebook_small.yaml -------------------------------------------------------------------------------- /fish_speech/configs/text2semantic_finetune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/configs/text2semantic_finetune.yaml -------------------------------------------------------------------------------- /fish_speech/configs/text2semantic_pretrain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/configs/text2semantic_pretrain.yaml -------------------------------------------------------------------------------- /fish_speech/configs/text2semantic_sft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/configs/text2semantic_sft.yaml -------------------------------------------------------------------------------- /fish_speech/configs/vits_decoder_finetune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/configs/vits_decoder_finetune.yaml -------------------------------------------------------------------------------- /fish_speech/configs/vits_decoder_pretrain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/configs/vits_decoder_pretrain.yaml -------------------------------------------------------------------------------- /fish_speech/configs/vqgan_finetune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/configs/vqgan_finetune.yaml -------------------------------------------------------------------------------- /fish_speech/configs/vqgan_pretrain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/configs/vqgan_pretrain.yaml -------------------------------------------------------------------------------- /fish_speech/datasets/concat_repeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/datasets/concat_repeat.py -------------------------------------------------------------------------------- /fish_speech/datasets/protos/text-data.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/datasets/protos/text-data.proto -------------------------------------------------------------------------------- /fish_speech/datasets/protos/text_data_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/datasets/protos/text_data_pb2.py -------------------------------------------------------------------------------- /fish_speech/datasets/protos/text_data_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/datasets/protos/text_data_stream.py -------------------------------------------------------------------------------- /fish_speech/datasets/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/datasets/text.py -------------------------------------------------------------------------------- /fish_speech/datasets/vits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/datasets/vits.py -------------------------------------------------------------------------------- /fish_speech/datasets/vqgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/datasets/vqgan.py -------------------------------------------------------------------------------- /fish_speech/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import i18n 2 | 3 | __all__ = ["i18n"] 4 | -------------------------------------------------------------------------------- /fish_speech/i18n/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/i18n/core.py -------------------------------------------------------------------------------- /fish_speech/i18n/locale/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/i18n/locale/en_US.json -------------------------------------------------------------------------------- /fish_speech/i18n/locale/es_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/i18n/locale/es_ES.json -------------------------------------------------------------------------------- /fish_speech/i18n/locale/ja_JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/i18n/locale/ja_JP.json -------------------------------------------------------------------------------- /fish_speech/i18n/locale/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/i18n/locale/zh_CN.json -------------------------------------------------------------------------------- /fish_speech/i18n/scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/i18n/scan.py -------------------------------------------------------------------------------- /fish_speech/models/text2semantic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/text2semantic/__init__.py -------------------------------------------------------------------------------- /fish_speech/models/text2semantic/lit_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/text2semantic/lit_module.py -------------------------------------------------------------------------------- /fish_speech/models/text2semantic/llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/text2semantic/llama.py -------------------------------------------------------------------------------- /fish_speech/models/text2semantic/lora_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/text2semantic/lora_utils.py -------------------------------------------------------------------------------- /fish_speech/models/vits_decoder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/vits_decoder/__init__.py -------------------------------------------------------------------------------- /fish_speech/models/vits_decoder/lit_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/vits_decoder/lit_module.py -------------------------------------------------------------------------------- /fish_speech/models/vits_decoder/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/vits_decoder/losses.py -------------------------------------------------------------------------------- /fish_speech/models/vits_decoder/modules/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/vits_decoder/modules/attentions.py -------------------------------------------------------------------------------- /fish_speech/models/vits_decoder/modules/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/vits_decoder/modules/commons.py -------------------------------------------------------------------------------- /fish_speech/models/vits_decoder/modules/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/vits_decoder/modules/models.py -------------------------------------------------------------------------------- /fish_speech/models/vits_decoder/modules/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/vits_decoder/modules/modules.py -------------------------------------------------------------------------------- /fish_speech/models/vits_decoder/modules/mrte.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/vits_decoder/modules/mrte.py -------------------------------------------------------------------------------- /fish_speech/models/vits_decoder/modules/vq_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/vits_decoder/modules/vq_encoder.py -------------------------------------------------------------------------------- /fish_speech/models/vqgan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/vqgan/__init__.py -------------------------------------------------------------------------------- /fish_speech/models/vqgan/lit_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/vqgan/lit_module.py -------------------------------------------------------------------------------- /fish_speech/models/vqgan/modules/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/vqgan/modules/discriminator.py -------------------------------------------------------------------------------- /fish_speech/models/vqgan/modules/firefly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/vqgan/modules/firefly.py -------------------------------------------------------------------------------- /fish_speech/models/vqgan/modules/fsq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/vqgan/modules/fsq.py -------------------------------------------------------------------------------- /fish_speech/models/vqgan/modules/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/vqgan/modules/reference.py -------------------------------------------------------------------------------- /fish_speech/models/vqgan/modules/wavenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/vqgan/modules/wavenet.py -------------------------------------------------------------------------------- /fish_speech/models/vqgan/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/models/vqgan/utils.py -------------------------------------------------------------------------------- /fish_speech/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/scheduler.py -------------------------------------------------------------------------------- /fish_speech/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/text/__init__.py -------------------------------------------------------------------------------- /fish_speech/text/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/text/clean.py -------------------------------------------------------------------------------- /fish_speech/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/train.py -------------------------------------------------------------------------------- /fish_speech/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/utils/__init__.py -------------------------------------------------------------------------------- /fish_speech/utils/braceexpand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/utils/braceexpand.py -------------------------------------------------------------------------------- /fish_speech/utils/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/utils/file.py -------------------------------------------------------------------------------- /fish_speech/utils/instantiators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/utils/instantiators.py -------------------------------------------------------------------------------- /fish_speech/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/utils/logger.py -------------------------------------------------------------------------------- /fish_speech/utils/logging_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/utils/logging_utils.py -------------------------------------------------------------------------------- /fish_speech/utils/rich_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/utils/rich_utils.py -------------------------------------------------------------------------------- /fish_speech/utils/spectrogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/utils/spectrogram.py -------------------------------------------------------------------------------- /fish_speech/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/utils/utils.py -------------------------------------------------------------------------------- /fish_speech/webui/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/webui/css/style.css -------------------------------------------------------------------------------- /fish_speech/webui/html/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/webui/html/footer.html -------------------------------------------------------------------------------- /fish_speech/webui/js/animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/webui/js/animate.js -------------------------------------------------------------------------------- /fish_speech/webui/launch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/webui/launch_utils.py -------------------------------------------------------------------------------- /fish_speech/webui/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/fish_speech/webui/manage.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/nodes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/tools/api.py -------------------------------------------------------------------------------- /tools/extract_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/tools/extract_model.py -------------------------------------------------------------------------------- /tools/llama/build_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/tools/llama/build_dataset.py -------------------------------------------------------------------------------- /tools/llama/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/tools/llama/generate.py -------------------------------------------------------------------------------- /tools/llama/merge_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/tools/llama/merge_lora.py -------------------------------------------------------------------------------- /tools/llama/quantize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/tools/llama/quantize.py -------------------------------------------------------------------------------- /tools/llama/rebuild_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/tools/llama/rebuild_tokenizer.py -------------------------------------------------------------------------------- /tools/merge_asr_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/tools/merge_asr_files.py -------------------------------------------------------------------------------- /tools/vqgan/create_train_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/tools/vqgan/create_train_split.py -------------------------------------------------------------------------------- /tools/vqgan/extract_vq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/tools/vqgan/extract_vq.py -------------------------------------------------------------------------------- /tools/vqgan/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/tools/vqgan/inference.py -------------------------------------------------------------------------------- /tools/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/tools/webui.py -------------------------------------------------------------------------------- /tools/whisper_asr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/tools/whisper_asr.py -------------------------------------------------------------------------------- /web/js/previewAudio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/web/js/previewAudio.js -------------------------------------------------------------------------------- /web/js/uploadAudio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/web/js/uploadAudio.js -------------------------------------------------------------------------------- /web/js/uploadSRT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI-FishSpeech/HEAD/web/js/uploadSRT.js --------------------------------------------------------------------------------