My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Last 30 days

  • Dec 15, 2009
    issue 6 (bad -sameq '' parameteter ) commented on by buggedcom   -   When you say a better result is acheived with $this->addCommand('-qmin', 3); $this->addCommand('-qmax', 6); $this->addCommand('-r', 25); do you mean that it works or the video is of better quality?
    When you say a better result is acheived with $this->addCommand('-qmin', 3); $this->addCommand('-qmax', 6); $this->addCommand('-r', 25); do you mean that it works or the video is of better quality?

Earlier this year

  • Oct 14, 2009
    issue 6 (bad -sameq '' parameteter ) commented on by cosmin.cimpoi   -   it seems to be a general issue with ffmpeg not accepting the "-command ''" syntax. The fix would be: if ($argument == "''") $command_string = $command;
    it seems to be a general issue with ffmpeg not accepting the "-command ''" syntax. The fix would be: if ($argument == "''") $command_string = $command;
  • Oct 14, 2009
    issue 7 (Bug on line 1997 in php5 version) reported by cosmin.cimpoi   -   line 1997 of php5: strpos($output_name, '%timecode') !== false should be strpos($output_name, '%timecode') == false
    line 1997 of php5: strpos($output_name, '%timecode') !== false should be strpos($output_name, '%timecode') == false
  • Oct 14, 2009
    issue 6 (bad -sameq '' parameteter ) reported by cosmin.cimpoi   -   What steps will reproduce the problem? 1. when converting to flv the -sameq param is set by default. thi beaks ffmpeg on mac ports What is the expected output? What do you see instead? Ffmpeg says "Unable for find a suitable output format for ''" What version of the product are you using? On what operating system? v 0.1.5 on OSX 10.5 Please provide any additional information below. Output log file attached. Putting this in the _combineCommands: [code] $command_string = trim($command.($argument ? ' '.$argument : '')); if ($command == '-sameq') $command_string = '-sameq'; [/code] fixes the issue. But I recommend extending PHPVideoToolkit and overwriting setFormatToFLV(). Instead of: $this->addCommand('-sameq'); a better result is obtained with: $this->addCommand('-qmin', 3); $this->addCommand('-qmax', 6); $this->addCommand('-r', 25);
    What steps will reproduce the problem? 1. when converting to flv the -sameq param is set by default. thi beaks ffmpeg on mac ports What is the expected output? What do you see instead? Ffmpeg says "Unable for find a suitable output format for ''" What version of the product are you using? On what operating system? v 0.1.5 on OSX 10.5 Please provide any additional information below. Output log file attached. Putting this in the _combineCommands: [code] $command_string = trim($command.($argument ? ' '.$argument : '')); if ($command == '-sameq') $command_string = '-sameq'; [/code] fixes the issue. But I recommend extending PHPVideoToolkit and overwriting setFormatToFLV(). Instead of: $this->addCommand('-sameq'); a better result is obtained with: $this->addCommand('-qmin', 3); $this->addCommand('-qmax', 6); $this->addCommand('-r', 25);
  • Aug 21, 2009
    issue 5 (error while watermarking videos) reported by vineetdcoolguy   -   Hi,m getting following error while watermarking videos: ← Back to examples list This example shows you how to watermark a video. Please note; that in order to watermark a video FFmpeg has to have been compiled with vhooks enabled. • The media player is embedded using PluginObject to embed the video examples. It is distributed under a BSD License. Testing for vhook support... You FFmpeg binary has been compiled with vhook support. Notice: Undefined offset: 1 in /home/mobiworl/public_html/upload/ phpvideotoolkit.php5.php on line 773 Notice: Undefined offset: 0 in /home/mobiworl/public_html/upload/ phpvideotoolkit.php5.php on line 774 Warning: rename(/home/mobiworl/public_html/upload/examples/working/tmp/ 1250861565-4a8ea1fdc1f53.info,/home/mobiworl/public_html/upload/examples/ working/logs/New.log) [function.rename]: Permission denied in /home/ mobiworl/public_html/upload/phpvideotoolkit.php5.php on line 3093 PHPVideoToolkit Error: Execute error. Output for file "/home/mobiworl/ public_html/upload/examples/working/to-be-processed/New.avi" was not found. Please check server write permissions and/or available codecs compiled with FFmpeg. You can check the encode decode availability by inspecting the output array from PHPVideoToolkit::getFFmpegInfo(). Kindly help me out
    Hi,m getting following error while watermarking videos: ← Back to examples list This example shows you how to watermark a video. Please note; that in order to watermark a video FFmpeg has to have been compiled with vhooks enabled. • The media player is embedded using PluginObject to embed the video examples. It is distributed under a BSD License. Testing for vhook support... You FFmpeg binary has been compiled with vhook support. Notice: Undefined offset: 1 in /home/mobiworl/public_html/upload/ phpvideotoolkit.php5.php on line 773 Notice: Undefined offset: 0 in /home/mobiworl/public_html/upload/ phpvideotoolkit.php5.php on line 774 Warning: rename(/home/mobiworl/public_html/upload/examples/working/tmp/ 1250861565-4a8ea1fdc1f53.info,/home/mobiworl/public_html/upload/examples/ working/logs/New.log) [function.rename]: Permission denied in /home/ mobiworl/public_html/upload/phpvideotoolkit.php5.php on line 3093 PHPVideoToolkit Error: Execute error. Output for file "/home/mobiworl/ public_html/upload/examples/working/to-be-processed/New.avi" was not found. Please check server write permissions and/or available codecs compiled with FFmpeg. You can check the encode decode availability by inspecting the output array from PHPVideoToolkit::getFFmpegInfo(). Kindly help me out
  • Aug 13, 2009
    issue 4 (extracting single frame) commented on by coenen.rob   -   what went wrong? did anything happen?
    what went wrong? did anything happen?
  • Apr 12, 2009
    issue 4 (extracting single frame) reported by webb.230   -   What steps will reproduce the problem? 1. $toolkit->extractFrame('00:00:02.5',false) 2. 3. What is the expected output? What do you see instead? single frame from video What version of the product are you using? On what operating system? 1.5 Please provide any additional information below. set second param to 1 instead of false
    What steps will reproduce the problem? 1. $toolkit->extractFrame('00:00:02.5',false) 2. 3. What is the expected output? What do you see instead? single frame from video What version of the product are you using? On what operating system? 1.5 Please provide any additional information below. set second param to 1 instead of false

Older

  • Oct 14, 2008
    issue 3 (Problem with how "-an" is escaped causing ffmpeg to fail) changed by buggedcom   -   Has now been fixed in the latest svn
    Status: Fixed
    Owner: buggedcom
    Has now been fixed in the latest svn
    Status: Fixed
    Owner: buggedcom
  • Oct 13, 2008
    r13 (removed old folders) committed by buggedcom   -   removed old folders
    removed old folders
  • Oct 13, 2008
    r12 (removed old class file) committed by buggedcom   -   removed old class file
    removed old class file
  • Oct 13, 2008
    r11 (removed old examples) committed by buggedcom   -   removed old examples
    removed old examples
  • Oct 13, 2008
    r10 (removed dirs) committed by buggedcom   -   removed dirs
    removed dirs
  • Oct 13, 2008
    r9 (codebase update to 0.1.8) committed by buggedcom   -   codebase update to 0.1.8
    codebase update to 0.1.8
  • Oct 13, 2008
    r8 (codebase update to 0.1.8) committed by buggedcom   -   codebase update to 0.1.8
    codebase update to 0.1.8
  • Oct 13, 2008
    r7 (codebase update to 0.1.8) committed by buggedcom   -   codebase update to 0.1.8
    codebase update to 0.1.8
  • Sep 24, 2008
    issue 3 (Problem with how "-an" is escaped causing ffmpeg to fail) Status changed by buggedcom   -   many thanks. this issue will be updated in the next release.
    Status: Started
    many thanks. this issue will be updated in the next release.
    Status: Started
  • Aug 18, 2008
    issue 3 (Problem with how "-an" is escaped causing ffmpeg to fail) commented on by j...@drone.ws   -   Here is a patch that fixes the problem by setting argument to NULL when the command option needs no argument.
    Here is a patch that fixes the problem by setting argument to NULL when the command option needs no argument.
 
Hosted by Google Code