25 MB Space
1 Domain
3Gb of Transfer

Samsung SEDG problem.

In order to convert your SEDG movie file to simple DIVX codec please use any scripting language (php,perl, ruby etc.) to find with regexp '\SEDG\' string and replace it with '\DIVX\'.
The sample below written at 2am as a quick solution is showing the above solution is working.
CODE::

<?php
/******************************
Sun Dec 18 02:10:56 GMT 2005
Author: Maciej Perlinski
Email: maciej.perlinski@meant4.com
Website:http://www.meant4.com
Comment:

*******************************
include('functions.php');
$list_of_files=array();
// Sun Dec 18 02:16:58 GMT 2005
// Comment: do the processing for all files in '1/video' directory
$cwd="1/video";
$list_of_files=get_files_array($cwd);
$size_of_list=sizeof(array_keys($list_of_files));
for($i=0;$i<$size_of_list;$i++)
{
// Sun Dec 18 02:11:05 GMT 2005
// Comment:
$handle=fopen($cwd."/".$list_of_files[$i],"rb");
$contents = fread($handle, filesize($cwd."/".$list_of_files[$i]));
fclose($handle);
// Sun Dec 18 02:11:12 GMT 2005
// Comment:
$pattern=array("/SEDG/");
$replacement=array("DIVX");
$contents=preg_replace($pattern,$replacement,$contents);
$handle=fopen($cwd."/x/"."p_".$list_of_files[$i],"wb");
fwrite($handle,$contents);
fclose($handle);

// Sun Dec 18 02:11:18 GMT 2005
// Comment:
print("Proc...".$list_of_files[$i]);
}

?>

250 MB Space
3 Domains
10Gb of Transfer
750 MB Space
10 Domains
20Gb of Transfer