Skip to content

Commit

Permalink
mv to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jordimas committed Sep 15, 2024
1 parent bacc624 commit 6f1409c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions open_dubbing/dubbing.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def pyannote_pipeline(self) -> Pipeline:

def _verify_api_access(self) -> None:
"""Verifies access to all the required APIs."""
logging.info("Verifying access to PyAnnote from HuggingFace.")
logging.debug("Verifying access to PyAnnote from HuggingFace.")
if not self.pyannote_pipeline:
raise PyAnnoteAccessError(
"No access to HuggingFace. Make sure you passed the correct API token"
Expand All @@ -178,7 +178,7 @@ def _verify_api_access(self) -> None:
" diarization model"
" (https://huggingface.co/pyannote/speaker-diarization-3.1)."
)
logging.info("Access to PyAnnote from HuggingFace verified.")
logging.debug("Access to PyAnnote from HuggingFace verified.")

def run_preprocessing(self) -> None:
"""Splits audio/video, applies DEMUCS, and segments audio into utterances with PyAnnote.
Expand Down

0 comments on commit 6f1409c

Please sign in to comment.