59
If you want to add audio-streams ending with .smil you'll have to adapt debaser/popup.php.
Look for function check_real($t_url)
Add the following before if-statements in this function:
$check_smil = substr($temp_url, -4);
Add another elseif-statement:
elseif ($check_smil == "smil") {
return true;
}