Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tky823/uv-torchaudio
https://github.com/tky823/uv-torchaudio
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tky823/uv-torchaudio
- Owner: tky823
- Created: 2025-01-01T09:08:46.000Z (8 days ago)
- Default Branch: main
- Last Pushed: 2025-01-01T09:44:01.000Z (8 days ago)
- Last Synced: 2025-01-01T10:33:07.747Z (8 days ago)
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# uv-torchaudio
Repository to use FFmpeg backend by torchaudio using uv.
We mainly focus on MacOS.## MacOS
```sh
brew install ffmpeg@6 # torchaudio supports versions 4, 5, and 6.
homebrew_prefix="${HOMEBREW_PREFIX}" # or homebrew_prefix="$(brew --prefix)"
export DYLD_FALLBACK_LIBRARY_PATH="${homebrew_prefix}/opt/ffmpeg@6/lib"
python -c "import torchaudio; print(torchaudio.list_audio_backends())"
```