显示音频播放器。
函数签名
st.audio(data, format="audio/wav", start_time=0)
参数 | 说明 |
---|---|
data (str, bytes, BytesIO, numpy.ndarray, or file opened with) | io.open()。原始音频数据、文件名或指向要加载的文件的 URL。 Numpy 数组和原始数据格式必须包含所有必要的文件头以匹配指定的文件格式。 |
start_time (int) | 该元素应该开始播放的时间。 |
format (str) | 音频文件的 MIME 类型。默认为'audio/wav'。有关详细信息,请参阅https://tools.ietf.org/html/rfc4281。 |
示例
audio_file = open('myaudio.ogg', 'rb')
audio_bytes = audio_file.read()
st.audio(audio_bytes, format='audio/ogg')
相关用法
- Python Streamlit st.area_chart用法及代码示例
- Python Streamlit st.altair_chart用法及代码示例
- Python Streamlit st.experimental_singleton.clear用法及代码示例
- Python Streamlit st.bokeh_chart用法及代码示例
- Python Streamlit st.caption用法及代码示例
- Python Streamlit st.text_input用法及代码示例
- Python Streamlit st.title用法及代码示例
- Python Streamlit st.cache用法及代码示例
- Python Streamlit st.experimental_singleton用法及代码示例
- Python Streamlit st.empty用法及代码示例
- Python Streamlit st.error用法及代码示例
- Python Streamlit st.video用法及代码示例
- Python Streamlit st.vega_lite_chart用法及代码示例
- Python Streamlit st.slider用法及代码示例
- Python Streamlit st.header用法及代码示例
- Python Streamlit st.container用法及代码示例
- Python Streamlit st.form_submit_button用法及代码示例
- Python Streamlit st.form用法及代码示例
- Python Streamlit st.plotly_chart用法及代码示例
- Python Streamlit st.bar_chart用法及代码示例
- Python Streamlit st.code用法及代码示例
- Python Streamlit st.experimental_memo.clear用法及代码示例
- Python Streamlit st.warning用法及代码示例
- Python Streamlit st.image用法及代码示例
- Python Streamlit st.markdown用法及代码示例
注:本文由纯净天空筛选整理自streamlit.io大神的英文原创作品 st.audio。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。