728x90
반응형
Streamlit으로 미디어 콘텐츠 출력하기
데이터 분석 및 시각화와 함께, 웹 애플리케이션에서는 다양한 미디어 콘텐츠를 통해 사용자 경험을 풍부하게 만들 수 있습니다. Streamlit은 이를 위한 다양한 미디어 출력 기능을 제공합니다. 이번 글에서는 Streamlit으로 이미지, 오디오, 비디오 등의 미디어 콘텐츠를 어떻게 표시하는지 알아보겠습니다.
이미지 출력하기
st.write('이미지:')
st.image('1.png', width=200)
오디오 출력하기
audio_file = open("path_to_audio.mp3", "rb").read()
st.audio(audio_file, format="audio/mp3")
동영상 출력하기
video_file = open("path_to_video.mp4", "rb").read()
st.video(video_file, format="video/mp4")
이번 글에서는 Streamlit에서 미디어를 출력하는 방법에 대해 알아보았습니다.
기초에 대한 더 많은 글들은 이전 글들을 통해 참고해주세요
2023.08.07 - [APP/Streamlit] - [Streamlit] Streamlit의 기초! 데이터 출력하기
2023.08.07 - [APP/Streamlit] - [Streamlit] Streamlit의 기초! 텍스트 출력하기
감사합니다.
728x90
반응형
'APP > Streamlit' 카테고리의 다른 글
[Streamlit] Streamlit의 기초! Expander (0) | 2023.08.09 |
---|---|
[Streamlit] Streamlit의 기초! Column과 Tab을 사용한 Layout (0) | 2023.08.09 |
[Streamlit] Streamlit의 기초! Sidebar (0) | 2023.08.09 |
[Streamlit] Streamlit의 기초! 데이터 출력하기 (0) | 2023.08.07 |
[Streamlit] Streamlit의 기초! 텍스트 출력하기 (0) | 2023.08.07 |