Package Details: photofilmstrip 4.0.0-1

Git Clone URL: https://aur.archlinux.org/photofilmstrip.git (read-only, click to copy)
Package Base: photofilmstrip
Description: Create video clips from photos
Upstream URL: http://www.photofilmstrip.org/en/
Licenses: GPL2
Submitter: joe1984
Maintainer: joe1984
Last Packager: joe1984
Votes: 6
Popularity: 0.000000
First Submitted: 2017-12-16 01:07 (UTC)
Last Updated: 2023-09-27 23:24 (UTC)

Dependencies (11)

Required by (0)

Sources (1)

Latest Comments

« First ‹ Previous 1 2

joe1984 commented on 2018-12-04 13:11 (UTC)

I'm getting this crash with the last 2 updates. And yes, my PKGBUILD looks identical to yours, and is using python 3. The program appears to work until you try to exit, in which case, it crashed with this error:

Traceback (most recent call last): File "/usr/lib/python3.7/site-packages/photofilmstrip/gui/FrmMain.py", line 224, in OnClose if self.ClosePage(idx): File "/usr/lib/python3.7/site-packages/photofilmstrip/gui/FrmMain.py", line 344, in ClosePage page.Close() File "/usr/lib/python3.7/site-packages/photofilmstrip/gui/PnlPfsProject.py", line 642, in Close self.imgProxyLeft.RemoveObserver(self.bitmapLeft) File "/usr/lib/python3.7/site-packages/photofilmstrip/lib/common/ObserverPattern.py", line 22, in RemoveObserver self.__observers.remove(observer) ValueError: list.remove(x): x not in list

I have to force close it. Are you not getting this error?

<deleted-account> commented on 2018-11-24 10:37 (UTC)

It works for me with this modified PKGBUILD. Attention to the python version, now use python 3

# Maintainer: Joseph Carta <cartakid@gmail.com>
# Contributor: Carlos Henrique Merces Moreira "chmercesmoreira" <ch.mercesmoreira@gmail.com>
#
pkgname="photofilmstrip"
pkgver="3.7.0"
pkgrel="1"
pkgdesc="Create video clips from photos"
arch=('i686' 'x86_64')
url="http://www.photofilmstrip.org/en/"
license=('GPL2')
depends=('python-wxpython' 'python-pillow' 'gst-python')
optdepends=('gst-plugins-bad: additional rendering formats'
        'gst-plugins-good: additional rendering formats'
        'gst-plugins-ugly: additional rendering formats'
        'gst-libav: additional rendering formats')
source=("https://github.com/PhotoFilmStrip/PFS/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
sha256sums=('91bfac9de0455b23a31b43595cf3d00bb73721af297575d0dcf687c658527ee7')

build() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    python setup.py build
}

package () {
    cd "${srcdir}/${pkgname}-${pkgver}"
    python setup.py install --root="${pkgdir}" --optimize=1

    chmod 644 "$pkgdir/usr/share/applications/photofilmstrip.desktop"

    find "$pkgdir/usr/share/doc/photofilmstrip/" -type f -exec chmod 644 {} \;

    for size in 32x32 48x48 64x64 192x192
    do
        chmod 644 "$pkgdir/usr/share/icons/hicolor/$size/apps/photofilmstrip.png"
    done
}

# vim:set ts=4 sw=4 ft=sh et syn=sh ft=sh:

Best regards,

joe1984 commented on 2018-09-23 21:23 (UTC)

What errors are you seeing? I know there are some warnings, which are fixed in the new version, but I don't want to upload it yet, as it has a very serious bug that causes crashes.

EgLe commented on 2018-09-23 10:46 (UTC)

Hmm, this package is "Out of date" :-(

Compile with errors, not working and the new Version is 3.5.1

joe1984 commented on 2018-03-12 23:31 (UTC)

This package doesn't appear to be out of date. A comment on upsteam's homepage indicating that a newer version is published might be misleading, as I wasn't able to find a download of a newer version, so I'm un-flagging this.