用php播放mp3音频和视频

时间:2014-08-23 05:13:16

标签: php wordpress

我正在寻找在php服务器上播放mp3音频和视频的解决方案。 我使用以下代码播放mp3文件,但在播放mp3文件时遇到问题。

代码:

  $path =$test['url'];

  $show='<embed src=" ../songs/$path" width="346" height="258"> </embed>';
  echo ($show);
  <video width="320" height="240" controls click>
  </video>

2 个答案:

答案 0 :(得分:0)

试试这些Html标签。

<audio controls>
      <source src="horse.ogg" type="audio/ogg">
      <source src="horse.mp3" type="audio/mpeg">
    </audio>

  <video width="320" height="240" controls>
      <source src="movie.mp4" type="video/mp4">
      <source src="movie.ogg" type="video/ogg">
    </video>  

答案 1 :(得分:0)

您可以使用嵌入对象执行此操作:

<embed src="music.mp3" width="145" height="60" autostart="true"></embed>

将文件名更改为原来的位置。对于这类事情,有很多选择,但上述内容应该至少让你走了。

相关问题