gpt4 book ai didi

audio - 如何将音频嵌入到 Jekyll 博客中?

转载 作者:行者123 更新时间:2023-12-03 00:11:54 25 4
gpt4 key购买 nike

我正在 Jekyll 下写博客。

我想在我的一篇文章中嵌入一个简单的音频播放器,以便让读者播放一个简短的 .wav 文件。

已关注 these instructions ,我下载了 open-embed.html 文件,将其保存在 _includes 文件夹下,并按照建议修改了我的 default.html 布局文档。

既然我已经执行了上述步骤并将音频文件保存到assets/audio/,我如何从我的帖子中播放它?

最佳答案

我不建议使用 open-embed.html 来实现嵌入音频等简单任务。

只是提供不同的方法来完成相同的任务。

您可以轻松创建自己的部分

# _include/embed-audio.html
<audio controls>
<source src="{{ include.src }}" type="audio/mpeg">
Your browser does not support the audio element.
</audio>

# Use in the post as
{% include embed-audio.html src="/assets/audio/<audio-source-name>.wav" %}

关于audio - 如何将音频嵌入到 Jekyll 博客中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63701944/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com