Closed GoogleCodeExporter closed 9 years ago
Sorry, I shall update the beta source package,
The bugfix is easy, in setup.py replace
+ [pythonlib]
by
+ (pythonlib,)
I will update the beta source package soon.
Original comment by bertrand...@gmail.com
on 12 Jul 2010 at 10:49
Original comment by bertrand...@gmail.com
on 12 Jul 2010 at 10:49
but the
+ [pythonlib]
is part of distutils, not pyffmpeg. I think the bug must be in the formatting
of the arguments that pyffmpeg passes to distutil's setup function.
Original comment by goodfell...@gmail.com
on 13 Jul 2010 at 4:08
You're right. I am sorry it has already been fixed in my source tree.
I just haven't uploaded the new package yet.
If you want you get the latest source tree by cloning my github
and by checking out the "beta" branch :
git clone "http://github.com/tranx/pyffmpeg.git/" || exit -1
cd pyffmpeg
git checkout origin/beta
Original comment by bertrand...@gmail.com
on 13 Jul 2010 at 4:16
I got an error or maybe just warning message for the last command:
$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 a74ad7e... Unabled truncated file support.
I'm not quite sure what that means, but I still get the same result if I run
setup.py/
Original comment by goodfell...@gmail.com
on 13 Jul 2010 at 4:24
Try, to see the possibles branches
git branch
If there is a "beta" branch, switch to it
git checkout beta
Else, it is likely that you are already on the good branch especially the
status fit with some change, I added this morning. So you may try to build the
package.
Sorry for all these troubles.
Original comment by bertrand...@gmail.com
on 13 Jul 2010 at 4:32
Actually the bugfix was indicated in issue 18,
Ok, the bugfix should consists in changing the line
libs = ('avformat', 'avcodec', 'avutil', 'swscale')
into
libs = ['avformat', 'avcodec', 'avutil', 'swscale']
in setup.py.
Original comment by bertrand...@gmail.com
on 13 Jul 2010 at 4:35
Thanks, that fixed for me!
Original comment by goodfell...@gmail.com
on 13 Jul 2010 at 4:54
Original comment by martin.h...@gmail.com
on 17 Mar 2011 at 11:41
Original issue reported on code.google.com by
goodfell...@gmail.com
on 12 Jul 2010 at 8:27