php-general | 2000071

RE: [PHP] can i parse the header reply from another php site intomine ? From: adam beecher (adam <email protected>)
Date: 07/05/00

> I'm not sure what Bart is trying to do either, but I suspect it may
> be to circumvent that annoying "feature" of some web sites in which
> clicking on a link starts streaming RealVideo to your player in such
> a way that you can not save the content to disk as a file. I don't
> know if you *can* circumvent this behavior (it may be built in to some
> RA protocol or other), but if so I'd certainly like to learn how...
>

Real Audio/Video uses "meta files", with the file extensions .ram and .rpm, to
start the audio/video stream - ram is used to pop the Real Player, and rpm is
used to embed it. If you linked directly to the file itself (which would have
the extension .ra or .rm), it wouldn't stream, and you'd have to wait for the
entire file to download. Or at least that's how it used to work.

The meta files just contain the location of the real file - usually a URL,
although I *think* you may be able to use a URI too (you couldn't the last time
I used Real Audio). All you have to do to circumvent this is read in the .ram or
.rpm file and use the URL contained in it.

a
d
a
m

_______________________________________________________
<?php
$s=array("&#74;","&#65;","&#112;","&#104;","&#112;","&#72;");
for($i=0;$i<count($s);$i++){echo$s[$i];}
?> :)

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-general-unsubscribe <email protected>
For additional commands, e-mail: php-general-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>