当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Streamlit st.audio用法及代码示例


显示音频播放器。

函数签名

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')

相关用法


注:本文由纯净天空筛选整理自streamlit.io大神的英文原创作品 st.audio。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。