mpcinfo.txt
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. MPCINFO.DLL by Gabest
  2. MPCINFO.TXT by Krofinzki
  3. The dll file reads information from Media Player Classic. Wich is a great player! 
  4. It can be downloaded from: http://www.gabest.org/mpc.php
  5. This textfile explains how to use mpcinfo.dll with mIRC.
  6. Functions Explained:
  7. -------------------
  8.    file     $dll(mpcinfo.dll,file,) returns:
  9.             File name, with path.
  10.             Use $nopath($dll(mpcinfo.dll,file,)) if you don't want the path
  11.    size     $dll(mpcinfo.dll,size,) returns:
  12.             Size of the file being played (in bytes)
  13.    pos      $dll(mpcinfo.dll,pos,) returns:
  14.             Current position of the playback in position/duration form
  15.             Example: 01:34/02:46
  16.    info     $dll(mpcinfo.dll,info,)
  17.             All-in-one, "file, size, pos"
  18.    running  $dll(mpcinfo.dll,running,) returns:
  19.             0: File opened, state wrong
  20.             1: File opened, state matching
  21.             2: Nothing is opened, or mpc is not running
  22.    stopped  $dll(mpcinfo.dll,stopped,) returns:
  23.             0: File opened, state wrong
  24.             1: File opened, state matching
  25.             2: Nothing is opened, or mpc is not running
  26.    paused   $dll(mpcinfo.dll,paused,) returns:
  27.             0: File opened, state wrong
  28.             1: File opened, state matching
  29.             2: Nothing is opened, or mpc is not running
  30. Combined Example:
  31. ----------------
  32. Add the following in remotes (Alt+R)
  33. alias mplayerc {
  34.   if ($dll(mpcinfo.dll,running,) != 2) { 
  35.     if ($dll(mpcinfo.dll,file,) != $null) { me watches: $nopath($dll(mpcinfo.dll,file,)) ( $+ $dll(mpcinfo.dll,pos,) $+ ) Size: $round($calc($dll(mpcinfo.dll,size,) / 1024 / 1024 ),1) mb }
  36.     else { echo -a *** Couldn't retrive MplayerC information }
  37.     halt
  38.   }
  39.   else { echo -a *** Media Player Classic is not running }
  40. }
  41. Then type /mplayerc in mIRC (Also make sure your playing something in MPC :p)