View Single Post
  #46  
Old 07-23-2013, 09:24 AM
KSV KSV is offline
Senior Member
 
Join Date: Apr 2011
Posts: 853
KSV is on a distinguished road
Cool

Re: FLV fixer script


save the following script as trim.php and run the command line

Code:
php trim.php "input video.flv"
Code:
<?php
$handle = fopen($argv[1], 'rb');
$data   = fread($handle, 10 * 1024 * 1024);
file_put_contents("$argv[1]" . ".trim", $data);
?>
Reply With Quote