VibeVoice_ASR_portable_ru
Portable speech recognition (ASR) for Windows — Microsoft VibeVoice, one-click install, 100% offline, NVIDIA GPU.
File Explorer
- star_chart.py
- star-history.yml
- FUNDING.yml
- screenshot.png
- stars-dark.svg
- stars-light.svg
- qwen2.5_1.5b_64k.json
- qwen2.5_7b_32k.json
- __init__.py
- configuration_vibevoice.py
- configuration_vibevoice_streaming.py
- modeling_vibevoice.py
- modeling_vibevoice_asr.py
- modeling_vibevoice_streaming.py
- modeling_vibevoice_streaming_inference.py
- modular_vibevoice_diffusion_head.py
- modular_vibevoice_text_tokenizer.py
- modular_vibevoice_tokenizer.py
- streamer.py
- __init__.py
- audio_utils.py
- vibevoice_asr_processor.py
- vibevoice_processor.py
- vibevoice_streaming_processor.py
- vibevoice_tokenizer_processor.py
- __init__.py
- dpm_solver.py
- timestep_sampler.py
- __init__.py
- convert_nnscaler_checkpoint_to_transformers.py
- __init__.py
- app.py
- install.bat
- LICENSE
- README.md
- requirements.txt
- run.bat
- update.bat
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
ffmpeg
View Details ▼
ffmpeg
Video conversion tool.
See also: `gst-launch-1.0`.
ffmpeg -i {{path/to/video.mp4}} -vn {{path/to/sound.mp3}}
Extract the sound from a video and save it as MP3:
ffmpeg -i {{path/to/input_audio.flac}} -ar 44100 -sample_fmt s16 {{path/to/output_audio.wav}}
Transcode a FLAC file to Red Book CD format (44100kHz, 16bit):
ffmpeg -i {{path/to/video.mp4}} {{[-vf|-filter:v]}} 'scale=-1:1000' -r 15 {{path/to/output.gif}}
Save a video as GIF, scaling the height to 1000px and setting framerate to 15:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
