rmplayer.js 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. /////////////////////////////////////////////////////////////////////////////////////////////
  2. function Init(){
  3. // Initicalize State String
  4. RM_STATE[0]="播放停止";
  5. RM_STATE[1]="正在连接媒体流……";
  6. RM_STATE[2]="正在缓冲……";
  7. RM_STATE[3]="正在播放";
  8. RM_STATE[4]="暂停播放";
  9. RM_STATE[5]="正在搜索流……";
  10. Player.SetEnableContextMenu(false);
  11. Player.SetImageStatus(false);
  12. Player.SetWantErrors(true);
  13. }
  14. /////////////////////////////////////////////////////////////////////////////////////////////
  15. function GetStateFlag(){
  16. return Player.GetPlayState();
  17. }
  18. function GetStateString(flag){
  19. return RM_STATE[flag];
  20. }
  21. /////////////////////////////////////////////////////////////////////////////////////////////
  22. function StreamMonitor(){
  23. if(!Player.GetFullScreen()){
  24. strInfo="Real 格式,";
  25. strInfo=strInfo + GetStateString(GetStateFlag())+ "<BR>";//+(TRACE_LEFT+Player.GetPosition()/Player.GetLength()*TRACE_WIDTH);
  26. strInfo=strInfo + "带宽:" + Math.round(Player.GetbandWidthCurrent()/1000) + "Kbps ";
  27. strInfo=strInfo+strMsg
  28. info.innerHTML=strInfo;
  29. if(!DRAG_POS&&GetStateFlag()==3){
  30. myPosBar.style.left= TRACE_LEFT + Player.GetPosition()/Player.GetLength()*TRACE_WIDTH-8;
  31. }
  32. if(GetStateFlag()==3){
  33. m_current=Player.GetPosition()/1000;
  34. m_sec=Math.round(m_current)%60;
  35. m_min=Math.floor(m_current/60);
  36. m_hour=Math.floor(m_min/60);
  37. m_min=Math.round(m_min)%60;
  38. ShowTime(m_hour,m_min,m_sec);
  39. }
  40. }
  41. setTimeout("StreamMonitor()",1000);
  42. }
  43. /////////////////////////////////////////////////////////////////////////////////////////////
  44. function StreamMedia(){
  45. Init();
  46. // ShowTime();
  47. Play();
  48. }
  49. /////////////////////////////////////////////////////////////////////////////////////////////
  50. function SetPos_Start(){
  51. if(Player.GetPlayState()>2){
  52. DRAG_POS=true;
  53. }
  54. event.cancelBubble=true;
  55. }
  56. function SetPos(){
  57. if (!DRAG_POS||event.button!=1)
  58. {
  59. event.cancelBubble=true;
  60. event.returnValue=false;
  61. return false;
  62. }
  63. mouse_e_x=window.event.x;
  64. myPosBar.style.left=
  65. ((mouse_e_x>=(TRACE_LEFT+TRACE_WIDTH)) ? (TRACE_LEFT+TRACE_WIDTH):
  66. ((mouse_e_x<=TRACE_LEFT) ? TRACE_LEFT:mouse_e_x))-10;
  67. event.cancelBubble=true;
  68. }
  69. function SetPos_End(){
  70. if(!DRAG_POS)return;
  71. // ShowBuffering(true);
  72. // Pause();
  73. Player.SetPosition(Math.round( Player.GetLength()*(parseInt(myPosBar.style.left)+10-TRACE_LEFT)/TRACE_WIDTH));
  74. // Play();
  75. // ShowBuffering(false);
  76. DRAG_POS=false;
  77. event.cancelBubble=true;
  78. }
  79. /////////////////////////////////////////////////////////////////////////////////////////////
  80. function SetVol_Start(){
  81. DRAG_VOL=true;
  82. event.cancelBubble=true;
  83. }
  84. function SetVol(){
  85. if (!DRAG_VOL)
  86. {
  87. event.cancelBubble=true;
  88. event.returnValue=false;
  89. return false;
  90. }
  91. mouse_e_x=window.event.x;
  92. myVolBar.style.left=mouse_e_x;
  93. myVolBar.style.left=(( mouse_e_x >= (VOL_TRACE_LEFT + VOL_TRACE_WIDTH )) ?
  94. ( VOL_TRACE_LEFT + VOL_TRACE_WIDTH ) :
  95. (( mouse_e_x <= VOL_TRACE_LEFT ) ?
  96. VOL_TRACE_LEFT : mouse_e_x ))-6;
  97. Player.SetVolume(
  98. 100 * (( parseInt(myVolBar.style.left) + 6 - VOL_TRACE_LEFT ) /
  99. VOL_TRACE_WIDTH)
  100. );
  101. event.cancelBubble=true;
  102. }
  103. function SetVol_End(){
  104. DRAG_VOL=false;
  105. event.cancelBubble=true;
  106. }
  107. /////////////////////////////////////////////////////////////////////////////////////////////
  108. function SetMute(){
  109. IS_NUTE=Player.GetMute();
  110. Player.SetMute(!IS_NUTE);
  111. mute.alt=(IS_NUTE)?"解除静音":"静音";
  112. }
  113. /////////////////////////////////////////////////////////////////////////////////////////////
  114. function SetBal_Start(){
  115. DRAG_BAL=true;
  116. event.cancelBubble=true;
  117. }
  118. function SetBal(){
  119. if (!DRAG_BAL)
  120. {
  121. event.cancelBubble=true;
  122. event.returnValue=false;
  123. return false;
  124. }
  125. mouse_e_x=window.event.x;
  126. myBalBar.style.left=mouse_e_x;
  127. myBalBar.style.left=(( mouse_e_x >= (BAL_TRACE_LEFT + BAL_TRACE_WIDTH )) ?
  128. ( BAL_TRACE_LEFT + BAL_TRACE_WIDTH ) :
  129. (( mouse_e_x <= BAL_TRACE_LEFT ) ? BAL_TRACE_LEFT : mouse_e_x ))-6;
  130. Player.Balance = -20000 * (( parseInt(myBalBar.style.left) + 6
  131. - BAL_TRACE_LEFT ) / BAL_TRACE_WIDTH )+10000;
  132. event.cancelBubble=true;
  133. }
  134. function SetBal_End(){
  135. DRAG_BAL=false;
  136. event.cancelBubble=true;
  137. }
  138. /////////////////////////////////////////////////////////////////////////////////////////////
  139. function FullScreen(){
  140. if (Player.GetPlayState()!=3) return;//if not playing
  141. else{
  142. Player.SetFullScreen();
  143. }
  144. }
  145. /////////////////////////////////////////////////////////////////////////////////////////////
  146. function SetPosition(pos){
  147. var seekpos=pos;
  148. if (seekpos<0) seekpos=Player.GetLength()-1000;
  149. Pause();
  150. seekpos=(seekpos>=Player.GetLength())?Player.GetLength():seekpos;
  151. seekpos=(seekpos<=0)?0:seekpos;
  152. Player.SetPosition(seekpos);
  153. Play();
  154. }
  155. /////////////////////////////////////////////////////////////////////////////////////////////
  156. function Seek(offset){
  157. var curpos=0;
  158. var seekpos=0;
  159. Pause();
  160. curpos=Player.GetPosition();
  161. seekpos=curpos+offset;
  162. seekpos=(seekpos>=Player.GetLength())?Player.GetLength():seekpos;
  163. seekpos=(seekpos<=0)?0:seekpos;
  164. Player.SetPosition(seekpos);
  165. Play();
  166. }
  167. /////////////////////////////////////////////////////////////////////////////////////////////
  168. function Play(){
  169. if (Player.GetPlayState()==3) return;//if is playing
  170. Player.DoPlay();
  171. document.all.playpause.alt="暂停";
  172. document.all.playpause.src="images/pause_d.gif";
  173. }
  174. /////////////////////////////////////////////////////////////////////////////////////////////
  175. function Pause(){
  176. if (Player.GetPlayState()!=3) return;//if not playing
  177. Player.DoPause();
  178. document.all.playpause.alt="播放";
  179. document.all.playpause.src="images/play_d.gif";
  180. }
  181. /////////////////////////////////////////////////////////////////////////////////////////////
  182. function Stop(){
  183. if (Player.GetPlayState()==0&&Player.CanStop())
  184. return;
  185. Player.DoStop();
  186. playpause.alt="播放";
  187. document.all.playpause.src="images/play_d.gif";
  188. }
  189. /////////////////////////////////////////////////////////////////////////////////////////////
  190. function PlayPause(){
  191. if (Player.GetPlayState()==3)
  192. Pause();
  193. else
  194. Play();
  195. }
  196. /////////////////////////////////////////////////////////////////////////////////////////////
  197. function ClosePlayer(){
  198. if(Player.GetPlayState()>0)
  199. Stop();
  200. window.close();
  201. }