是否可以永久链接到 MP3 文件内的某个位置?

是否可以永久链接到 MP3 文件内的某个位置?

YouTube 有一个很酷的功能,您可以链接到视频内的位置。例如:

http://www.youtube.com/watch?v=WvDedo8r1Fk#t=41s

有没有办法对音频(例如 MP3)文件(最好是托管在网络上的文件)执行此操作?

喜欢:

http://example.com/episodes/1.mp3#t=41s

我想建立一个播客节目中有趣时刻的库,这样以后就可以轻松引用并跳回到该位置。例如,我希望能够记录某人在“美国生活”第 5 集 45 分 10 秒时讲了一个有趣的故事。如果我不需要在 PC 或 iPhone 上安装复杂的软件就可以做到这一点,那就太好了。

答案1

事实上是有的。使用 HTML5 音频,你可以指定播放范围在哈希中。

http://foo.com/video.ogg#t=10,20
Specifies that the video should play the range 10 seconds through 20 seconds.
http://foo.com/video.ogg#t=,10.5
Specifies that the video should play from the beginning through 10.5 seconds.
http://foo.com/video.ogg#t=,02:00:00
Specifies that the video should play from the beginning through two hours.
http://foo.com/video.ogg#t=60,
Specifies that the video should start playing at 60 seconds and play through the end of the video.

我尝试用谷歌搜索到的一些随机 MP3 文件进行此操作,它在 OS X 上的 Google Chrome 浏览器中运行良好:

http://www.dandeacon.com/mp3/06%20Porky%20Pig%20EP/03%20rocket%20problems.mp3#t=10,12

唯一似乎不起作用的就是#t=10,从 10 秒播放到结束。但#t=10,999效果很好。

不过,我并不指望它能在所有浏览器上工作。Chrome、Safari 和 Firefox 的新版本可能受支持,但 IE 往往令人失望。

相关内容