peercast-play-in-xmms.pl
上传用户:chn_coc
上传日期:2007-12-20
资源大小:563k
文件大小:1k
源码类别:

P2P编程

开发平台:

Windows_Unix

  1. #!/usr/bin/perl
  2. # Peercact URL handler for xmms.
  3. # By Romain Beauxis <toots@rastageeks.org>
  4. # Usage: peercast-play-in-xmms.pl <peercast://foo>
  5. # This script search for a string in the following mask: peercast://pls/HASHNUMBER
  6. # And then call xmms to enqueue the URL: http://127.0.0.1:7144/stream/HASHNUMBER
  7. # WARNING: this does not handle any parametrs like ?foo after the HASH, 
  8. # But xmms seems to accept it.
  9. my $args = shift;
  10. $args =~ /peercast://pls/(w*)/;
  11. my $regex = $1;
  12. exec("xmms --play "http://127.0.0.1:7144/stream/$regex"")