歌词与歌曲同时播放的歌词

时间:2011-07-02 00:17:56

标签: php

我想做一些可能特别的事情。我有一首歌,我有它的歌词,我想做的是一种提供歌词跟随歌曲的机会的方法,例如我在听歌的同时我读了歌词,显示了什么我刚刚听到了。

1 个答案:

答案 0 :(得分:3)

尝试按歌曲出现时分割歌词。 E.g:

$lyrics['when_im_gone'] = array(
  12.5 => 'There\'s another world inside of me that you may never see',
  19.5 => 'There\'re secrets in this life that I can\'t hide',
  26.0 => 'Somewhere in this darkness there\'s a light that I can\'t find',
  31.5 => 'Maybe it\'s too far away...',
  37.5 => 'Or maybe I\'m just blind...'
);

在上面的数组中,第一首歌词应该以12.5秒显示,第二首歌词应该显示在19.5等等。

在Flash音频播放器中,从服务器请求数组(或在加载时使用PHP将数组注入页面标记),然后在歌曲中指定的时间显示每个歌词。