mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 02:05:00 +00:00
fix: Suppress warning about missing ffmpeg or avconv
This commit is contained in:
parent
6b5fe9bee3
commit
da752bb00c
1 changed files with 3 additions and 0 deletions
|
@ -3,9 +3,12 @@ import os
|
|||
import queue
|
||||
import tempfile
|
||||
import time
|
||||
import warnings
|
||||
|
||||
from aider.llm import litellm
|
||||
|
||||
warnings.filterwarnings("ignore", message="Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work")
|
||||
|
||||
try:
|
||||
import soundfile as sf
|
||||
except (OSError, ModuleNotFoundError):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue