Debian Bug report logs -
#608926
php5-ffmpeg: Loop while using the extension with FLV files
Reported by: Saulo Soares de Toledo <saulotoledo@gmail.com>
Date: Tue, 4 Jan 2011 17:24:01 UTC
Severity: normal
Tags: moreinfo
Found in version ffmpeg-php/0.5.3.1-3
Fixed in version 0.6.0-2.2+rm
Done: Debian FTP Masters <ftpmaster@ftp-master.debian.org>
Bug is archived. No further changes may be made.
Toggle useless messages
Report forwarded
to debian-bugs-dist@lists.debian.org, saulotoledo@gmail.com, Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>:
Bug#608926; Package php5-ffmpeg.
(Tue, 04 Jan 2011 17:24:04 GMT) (full text, mbox, link).
Acknowledgement sent
to Saulo Soares de Toledo <saulotoledo@gmail.com>:
New Bug report received and forwarded. Copy sent to saulotoledo@gmail.com, Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>.
(Tue, 04 Jan 2011 17:24:05 GMT) (full text, mbox, link).
Message #5 received at submit@bugs.debian.org (full text, mbox, reply):
Package: php5-ffmpeg
Version: 0.5.3.1-3
Severity: normal
I'm just using "$movie = new ffmpeg_movie('someFLVFile.flv') and my script
enter in a loop. Apache logs shows me a lot of messages like this:
*** glibc detected *** /usr/sbin/apache2: corrupted double-linked list:
*** 0x00000000026574a0 ***
= { laEntry 2 }
Cannot adopt OID in UCD-SNMP-MIB: laIndex ::= { laEntry 1 }
-- System Information:
Debian Release: squeeze/sid
APT prefers unstable
APT policy: (500, 'unstable'), (500, 'stable'), (101, 'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.32-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages php5-ffmpeg depends on:
ii libapache2-mod-p 5.2.6.dfsg.1-1+lenny8 server-side, HTML-embedded scripti
ii libavcodec51 0.svn20080206-18+lenny1 ffmpeg codec library
ii libavformat52 5:0.6~svn20100526-0.0 ffmpeg file format library
ii libc6 2.10.2-9 Embedded GNU C Library: Shared lib
ii php5-cgi [phpapi 5.2.6.dfsg.1-1+lenny8 server-side, HTML-embedded scripti
ii php5-cli [phpapi 5.2.6.dfsg.1-1+lenny8 command-line interpreter for the p
Versions of packages php5-ffmpeg recommends:
ii php5-gd 5.2.6.dfsg.1-1+lenny8 GD module for php5
php5-ffmpeg suggests no packages.
-- no debconf information
Information forwarded
to debian-bugs-dist@lists.debian.org, Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>:
Bug#608926; Package php5-ffmpeg.
(Wed, 05 Jan 2011 01:36:03 GMT) (full text, mbox, link).
Acknowledgement sent
to Raphael Geissert <geissert@debian.org>:
Extra info received and forwarded to list. Copy sent to Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>.
(Wed, 05 Jan 2011 01:36:03 GMT) (full text, mbox, link).
Message #10 received at 608926@bugs.debian.org (full text, mbox, reply):
tag 608926 moreinfo
thanks
On 4 January 2011 23:18, Saulo Soares de Toledo <saulotoledo@gmail.com> wrote:
> I'm just using "$movie = new ffmpeg_movie('someFLVFile.flv') and my script
> enter in a loop. Apache logs shows me a lot of messages like this:
I would need more information, like what does the script do after
creating the ffmpeg_movie object? what version of ffmpeg are you
using?
> *** glibc detected *** /usr/sbin/apache2: corrupted double-linked list:
> *** 0x00000000026574a0 ***
Please generate a backtrace and paste it here. You can find
instructions to do so at
http://bugs.php.net/bugs-generating-backtrace.php
> = { laEntry 2 }
> Cannot adopt OID in UCD-SNMP-MIB: laIndex ::= { laEntry 1 }
>
That comes from snmp (via php5-snmp maybe) and is irrelevant.
Cheers,
--
Raphael Geissert - Debian Developer
www.debian.org - get.debian.net
Added tag(s) moreinfo.
Request was from Raphael Geissert <geissert@debian.org>
to control@bugs.debian.org.
(Wed, 05 Jan 2011 01:36:04 GMT) (full text, mbox, link).
Information forwarded
to debian-bugs-dist@lists.debian.org, Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>:
Bug#608926; Package php5-ffmpeg.
(Mon, 10 Jan 2011 17:48:04 GMT) (full text, mbox, link).
Acknowledgement sent
to Saulo Soares de Toledo <saulotoledo@gmail.com>:
Extra info received and forwarded to list. Copy sent to Debian PHP Maintainers <pkg-php-maint@lists.alioth.debian.org>.
(Mon, 10 Jan 2011 17:48:04 GMT) (full text, mbox, link).
Message #17 received at 608926@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
I think this is a problem from ffmpeg-php lib, not Debian.
Debian its our local server. This PHP application need be deployed in a
CentOS server (external server). After install the same version of the lib,
I got the same error. I installed 0.6.0 version: same problem. Then, I got
the trunk version and installed here (Debian) and at CentOS server, both
solved.
At moment, I can't regride the lib version at server because there are
projects here running and needing this library working, I will not have
permission to do this for now. I will try recreate the problem in another
machine to put here.
If somebody more can try recreate, here are the steps:
1) Install Apache + PHP 5 + php5-ffmpeg
2) At server root, put any FLV file and a php file with this content (change
the FLV filename at php file):
<?php
header("Content-Type: image/jpeg");
$movie = new ffmpeg_movie("flv_file_name_here.flv");
$height = $movie->getFrameHeight ();
$width = $movie->getFrameWidth ();
$image = imagecreatetruecolor ( $width , $height ) ;
$frame = new ffmpeg_frame($image);
$frame = $movie->getFrame(100);
$image = $frame->toGDImage();
imagejpeg($image, null, 100);
?>
3) If an image of frame 100 appear, sucess! But will be a loop and Apache
logs will show the message.
Saulo
2011/1/4 Raphael Geissert <geissert@debian.org>
> tag 608926 moreinfo
> thanks
>
> On 4 January 2011 23:18, Saulo Soares de Toledo <saulotoledo@gmail.com>
> wrote:
> > I'm just using "$movie = new ffmpeg_movie('someFLVFile.flv') and my
> script
> > enter in a loop. Apache logs shows me a lot of messages like this:
>
> I would need more information, like what does the script do after
> creating the ffmpeg_movie object? what version of ffmpeg are you
> using?
>
> > *** glibc detected *** /usr/sbin/apache2: corrupted double-linked list:
> > *** 0x00000000026574a0 ***
>
> Please generate a backtrace and paste it here. You can find
> instructions to do so at
> http://bugs.php.net/bugs-generating-backtrace.php
>
> > = { laEntry 2 }
> > Cannot adopt OID in UCD-SNMP-MIB: laIndex ::= { laEntry 1 }
> >
>
> That comes from snmp (via php5-snmp maybe) and is irrelevant.
>
> Cheers,
> --
> Raphael Geissert - Debian Developer
> www.debian.org - get.debian.net
>
[Message part 2 (text/html, inline)]
Reply sent
to Debian FTP Masters <ftpmaster@ftp-master.debian.org>:
You have taken responsibility.
(Tue, 20 May 2014 06:51:56 GMT) (full text, mbox, link).
Notification sent
to Saulo Soares de Toledo <saulotoledo@gmail.com>:
Bug acknowledged by developer.
(Tue, 20 May 2014 06:51:56 GMT) (full text, mbox, link).
Message #22 received at 608926-done@bugs.debian.org (full text, mbox, reply):
Version: 0.6.0-2.2+rm
Dear submitter,
as the package ffmpeg-php has just been removed from the Debian archive
unstable we hereby close the associated bug reports. We are sorry
that we couldn't deal with your issue properly.
For details on the removal, please see https://bugs.debian.org/747952
The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.
This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmaster@ftp-master.debian.org.
Debian distribution maintenance software
pp.
Ansgar Burchardt (the ftpmaster behind the curtain)
Bug archived.
Request was from Debbugs Internal Request <owner@bugs.debian.org>
to internal_control@bugs.debian.org.
(Tue, 17 Jun 2014 07:30:48 GMT) (full text, mbox, link).
Send a report that this bug log contains spam.
Debian bug tracking system administrator <owner@bugs.debian.org>.
Last modified:
Sun Jul 2 01:07:08 2023;
Machine Name:
bembo
Debian Bug tracking system
Debbugs is free software and licensed under the terms of the GNU
Public License version 2. The current version can be obtained
from https://bugs.debian.org/debbugs-source/.
Copyright © 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson,
2005-2017 Don Armstrong, and many other contributors.