Robin's Wiki
SearchWiki

iRATE

  • iRATE Homepage
  • Developer Notes

Documentation

  • Current Client/Server Protocol
  • XML-RPC iRATE protocol
  • External Control Plugin protocol
  • iRATE Manual

Supporting Programs

  • External Control Programs
  • Use mpg321 instead of madplay
  1. iRATE
    1. Homepage
    2. Developer page
    3. Developer wiki

  1. Protocols
    1. Current client/server
    2. XML-RPC
    3. External Control plugin

  1. Other Programs
    1. External Control programs
    2. Using mpg321 instead of madplay
IrateDev/
MadplayReplacement
Read PageEdit PagePage AttributesPage HistoryUpload
Printable View

Replace your madplay binary with this script, and make it executable, in order to use mpg321 instead of madplay.

#!/usr/bin/python
<:vspace>
import sys
<:vspace>
import os
<:vspace>
os.system("killall mpg321");
<:vspace>
child = os.fork();
<:vspace>
if child!=0:
    os.system ("mpg321 \"" + sys.argv[4]+"\"")
    os.system( "kill "+str(child))
else:
    sys.stdin.read(1);
    os.system( "killall mpg321")
<:vspace>
Page last modified on January 12, 2005, at 02:50 AM

  1. ▲ Top ▲
  2. Edit:
  3. SideBar
  4. MenuBar
  5. BottomBar
  6. GroupHeader
  7. GroupFooter