#!/usr/bin/perl

#return browser output in m3u stream fomat

($name,$streampath)=split(/=/,$ENV{'QUERY_STRING'});

print "Content-type: audio/mpegurl\n\n";
print $streampath;


exit;


