Show aioice version
Browse files
main.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
import streamlit as st
|
2 |
from streamlit_webrtc import webrtc_streamer, get_hf_ice_servers, get_twilio_ice_servers, __version__ as st_webrtc_version
|
3 |
import aiortc
|
|
|
4 |
|
5 |
import logging
|
6 |
logging.basicConfig(level=logging.INFO)
|
@@ -110,3 +111,4 @@ webrtc_streamer(
|
|
110 |
st.write(f"Streamlit version: {st.__version__}")
|
111 |
st.write(f"Streamlit-WebRTC version: {st_webrtc_version}")
|
112 |
st.write(f"aiortc version: {aiortc.__version__}")
|
|
|
|
1 |
import streamlit as st
|
2 |
from streamlit_webrtc import webrtc_streamer, get_hf_ice_servers, get_twilio_ice_servers, __version__ as st_webrtc_version
|
3 |
import aiortc
|
4 |
+
import aioice
|
5 |
|
6 |
import logging
|
7 |
logging.basicConfig(level=logging.INFO)
|
|
|
111 |
st.write(f"Streamlit version: {st.__version__}")
|
112 |
st.write(f"Streamlit-WebRTC version: {st_webrtc_version}")
|
113 |
st.write(f"aiortc version: {aiortc.__version__}")
|
114 |
+
st.write(f"aioice version: {aioice.__version__}")
|