rbash88 / pyffmpeg

Automatically exported from code.google.com/p/pyffmpeg
0 stars 0 forks source link

Seg fault when interpreter closes #22

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
$ python
Python 2.5.1 (r251:54863, Jun 15 2008, 18:24:56)
[GCC 4.3.0 20080428 (Red Hat 4.3.0-8)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pyffmpeg
>>> quit()
Segmentation fault (core dumped)

What version of the product are you using? On what operating system?

beta, checked out from svn 2010-07-13 and edited to get it to build 
successfully.

Original issue reported on code.google.com by goodfell...@gmail.com on 14 Jul 2010 at 8:18

GoogleCodeExporter commented 8 years ago
Latest SVN or GIT ?

If SVN please switch to the git sources:

git clone "http://github.com/tranx/pyffmpeg.git/" || exit -1
cd pyffmpeg
git checkout origin/beta
python setup.py

If you have downloaded your sources from the GIT on the 13th of the july or the 
14th of july, please update, as the bugfix I made on the 13th, was not as 
simple as I thought at first sight.

Also, to understand better why your version crash, can you run this in gdb :

gdb python
## you are in GDB
run
## python starts from
import pyffmpeg
quit()
## normally python crash should happen there
bt

And, then return me the output of this command

Best regards,

Bertrand Nouvel

Original comment by bertrand...@gmail.com on 14 Jul 2010 at 11:59

GoogleCodeExporter commented 8 years ago
Thanks, I actually can't get the beta from git still. I get that same error 
message I mentioned before:
$ git checkout origin/beta
Note: moving to "origin/beta" which isn't a local branch
If you want to create a new branch from this checkout, you may do so
(now or later) by using -b with the checkout command again. Example:
  git checkout -b <new_branch_name>
HEAD is now at 712c146... safe mode truncated file support

If I list the branches, there is no beta branch:
$ git branch
* (no branch)
  master

Original comment by goodfell...@gmail.com on 15 Jul 2010 at 1:39

GoogleCodeExporter commented 8 years ago
Your "head" comment is actually the right head comment, so it is likely that 
your local branch is up-to-date. 

Sorry to be so busy, I have not that much time to be proactive in investigating 
your issue right now, but I have uploaded the latest source as package and a 
binary version for Ubuntu Linux in the repository.

Original comment by bertrand...@gmail.com on 15 Jul 2010 at 1:52

GoogleCodeExporter commented 8 years ago
Hey, no problem, you're giving us all free stuff :)
I don't think either git or the source package (the one uploaded 12 minutes 
ago) has the latest version, because setup.py still has the 'can only 
concatenate tuple (not "list") to tuple' bug in setup.py' bug in both of them. 
I'd check the ubuntu package fo you but I don't have access to a computer I'm 
allowed to install ubuntu on right now. (My own computer was recently broken by 
UPS and I'm still waiting for the replacement to arrive)

Original comment by goodfell...@gmail.com on 15 Jul 2010 at 2:05

GoogleCodeExporter commented 8 years ago
Well, at least it is the version that I have been using recently.
It is possible that I made the bugfix for the setup.py on another branch. 
I am not yet completly familiar with git.

For the Ubuntu, it is a contrib from an user, I haven't tried it yet. I have 
been
creating one once with launchpad, but I am not very good at maintaining it.

Original comment by bertrand...@gmail.com on 15 Jul 2010 at 2:15

GoogleCodeExporter commented 8 years ago

Original comment by martin.h...@gmail.com on 17 Mar 2011 at 11:43