#!/usr/bin/perl #$playerUrl = qq!http://www.earththrives.com/plugins/content/playerflv!; $playerUrl = qq!http://www.rothbroth.net/playerflv!; $siteBase = "/var/www/rothbroth"; ($here) = `pwd`; chomp($here); $vbase = $here; $vbase =~ s/$siteBase//; @files = sort(<*.flv>); open(HTM, ">index.html"); for (@files) { $video = $_; $vfile = $_ . ".html"; $vurl = $video; $vurl =~ s/\+/%2B/g; $size = (-s $video) + 1023; $size /= 1024; $size = int($size); print HTM <$_ $size Kbytes END print $vfile . "\n"; open(V, ">$vfile"); print V <Home -- File:$video $size Kbytes

END }