Click here to Skip to main content
15,904,339 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,
I want to play an audio or video file using php.I am using flow player. I have written the below code its working fine for video but showing error as player initialization failed error #1009 while playing audio file. how to solve this? Pls help. This is my coding

HTML
<html>
  <head>    
  <title>Wow! This is video</title>  
  <script src="flowplayer/flowplayer-3.2.12.min.js"></script> 
   <script src="flowplayer/flowplayer-3.2.16.swf"></script> 
  </head>
  <body>   
  <a href="flowplayer/bird.MP4"       style="display:block;width:425px;height:300px;"       id="player">  
  </a>   
  <script language="JavaScript">  
  //$f("player", "flowplayer.audio/flowplayer-3.2.16.swf", {    plugins: {        audio: {            url: 'flowplayer.audio/flowplayer.audio.swf'        }    }});

  flowplayer("player", "flowplayer/flowplayer-3.2.16.swf");  
  </script> 
  </body>
  </html>
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900