Ok Techies, Boobs and a DVD Question

Status
Not open for further replies.

SuperDave2U

New member
Aug 13, 2008
134
6
0
I've been moving my DVD collection to a NAS using Nero Recode then FTPing them over. The Nero suite I'm using just has too much extra garbage that I'll never use and I'd like more options as far as how the videos are encoded.

What do you guys use for DVD transcoding?

big-boobs_2_3309_si.jpg
 


I've been moving my DVD collection to a NAS using Nero Recode then FTPing them over. The Nero suite I'm using just has too much extra garbage that I'll never use and I'd like more options as far as how the videos are encoded.

What do you guys use for DVD transcoding?

big-boobs_2_3309_si.jpg

dani_miles_016.jpg
 
Recode converts to an almost standard MPEG4 video file with multi-channel AAC audio. The format isn't so much an issue but all the extra garbage that's packed with Nero is.
 
I should have put this together a long time ago...

http://www.SuperDave2U.com/tits.jpg :
tits.jpg


Code:
<?php
$folder = '';
$exts = 'jpg jpeg';

$files = array(); $i = -1;
if ('' == $folder) $folder = './';

$handle = opendir($folder);
$exts = explode(' ', $exts);

while (false !== ($file = readdir($handle))) {
    foreach($exts as $ext) {
        if (preg_match('/\.'.$ext.'$/i', $file, $test)) {
            $files[] = $file; // it's good
            ++$i;
            }
        }
    }

closedir($handle);

mt_srand((double)microtime()*1000000);

$rand = mt_rand(0, $i);

header('Location: '.$folder.$files[$rand]);
?>
 
Status
Not open for further replies.