Spaces:
Running
Running
check librosa version
Browse files
app.py
CHANGED
@@ -2,6 +2,9 @@ import streamlit as st
|
|
2 |
import os
|
3 |
import sys
|
4 |
import torch
|
|
|
|
|
|
|
5 |
path_to_add = os.path.join(os.path.dirname(__file__), "Wav2Lip")
|
6 |
if path_to_add not in sys.path:
|
7 |
sys.path.insert(0, path_to_add)
|
|
|
2 |
import os
|
3 |
import sys
|
4 |
import torch
|
5 |
+
import librosa
|
6 |
+
|
7 |
+
print(librosa.__version__)
|
8 |
path_to_add = os.path.join(os.path.dirname(__file__), "Wav2Lip")
|
9 |
if path_to_add not in sys.path:
|
10 |
sys.path.insert(0, path_to_add)
|