...Forgot the link for XAMPP:
http://www.apachefriends.org/en/xampp-windows.html6. Lastly, put the following in a PHP file called "index.php" in your AutoEmbed folder in
htdocs (from the
guide on the site):
<?php
require "AutoEmbed.class.php"; //will fail if it can't find AutoEmbed PHP library
$AE = new AutoEmbed(); //obtain a new instance of the class
// load an embed source from a remote URL, in this case YouTube
if (!$AE->parseUrl('http://www.youtube.com/watch?v=ikTxfIDYx6Q')) {
echo "No embeddable video found (or supported)";
exit;
}
echo $AE->getEmbedCode();
?>
And all you have to do after following those steps is run your web server (using the XAMPP control panel or WAMP taskbar icon/launcher, depending on which one you went with), then open a browser to:
http://localhost/FOLDER/(where FOLDER is where you copied/pasted the untarred AutoEmbed PHP files and pasted the above code into your "index.php")
After you've tested and figured out how it works, try uploading to a live web server somewhere for your media embedding needs.
BC