ff(multi)converter v2.4.6
This commit is contained in:
@@ -13,4 +13,4 @@ def build():
|
|||||||
def install():
|
def install():
|
||||||
pythonmodules.install(pyVer = "3")
|
pythonmodules.install(pyVer = "3")
|
||||||
|
|
||||||
pisitools.dodoc("ChangeLog", "COPYING", "README*")
|
pisitools.dodoc("AUTHORS", "COPYING", "PKG-INFO", "TRANSLATORS")
|
||||||
|
|||||||
@@ -1,22 +0,0 @@
|
|||||||
From c47d47ab7f66a1973b1314ef531de2fb444c2fe6 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ilias Stamatis <ilstam@mailbox.org>
|
|
||||||
Date: Wed, 22 Dec 2021 14:43:22 +0000
|
|
||||||
Subject: [PATCH] QProgressBar.setValue() expects an int, not a float
|
|
||||||
|
|
||||||
---
|
|
||||||
ffmulticonverter/progress.py | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/ffmulticonverter/progress.py b/ffmulticonverter/progress.py
|
|
||||||
index 5d14efc..e196ef4 100755
|
|
||||||
--- a/ffmulticonverter/progress.py
|
|
||||||
+++ b/ffmulticonverter/progress.py
|
|
||||||
@@ -304,7 +304,7 @@ def convert_video(self, from_file, to_file, command):
|
|
||||||
time = utils.duration_in_seconds(time)
|
|
||||||
now_sec = int(float(time))
|
|
||||||
try:
|
|
||||||
- self.nowQPBar.setValue(100 * now_sec / total)
|
|
||||||
+ self.nowQPBar.setValue(int(100 * now_sec / total))
|
|
||||||
except (UnboundLocalError, ZeroDivisionError):
|
|
||||||
pass
|
|
||||||
self.update_text_edit_signal.emit(myline)
|
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
<PISI>
|
<PISI>
|
||||||
<Source>
|
<Source>
|
||||||
<Name>ffmulticonverter</Name>
|
<Name>ffmulticonverter</Name>
|
||||||
<Homepage>https://github.com/Ilias95/FF-Multi-Converter</Homepage>
|
<Homepage>https://github.com/l-koehler/FF-converter</Homepage>
|
||||||
<Packager>
|
<Packager>
|
||||||
<Name>Kamil Atlı</Name>
|
<Name>Kamil Atlı</Name>
|
||||||
<Email>suvari@pisilinux.org</Email>
|
<Email>suvari@pisilinux.org</Email>
|
||||||
@@ -11,17 +11,18 @@
|
|||||||
<License>GPLv3</License>
|
<License>GPLv3</License>
|
||||||
<Icon>ffmulticonverter</Icon>
|
<Icon>ffmulticonverter</Icon>
|
||||||
<IsA>app:gui</IsA>
|
<IsA>app:gui</IsA>
|
||||||
<Summary>A multi converter.</Summary>
|
<Summary>GUI File Format Converter.</Summary>
|
||||||
<Description>FF Multi Converter is a simple graphical application that enables you to convert audio, video, image and document files between all popular formats, using and combining other programs. It uses ffmpeg for audio/video files, unoconv for document files (which uses the OpenOffice's UNO bindings) and PIL library for image file conversions.</Description>
|
<Description>A simple graphical application which enables you to convert between all popular formats, by utilizing and combining other programs.</Description>
|
||||||
<Archive sha1sum="bae21490cc0cb7c38fccc8b1a4e77dc0c1f31a32" type="targz">mirrors://sourceforge/ffmulticonv/ffmulticonverter-1.8.0.tar.gz</Archive>
|
<Archive sha1sum="005cfc782d2d8221014d1bfabf01e35f1cf616a5" type="targz">https://github.com/l-koehler/FF-converter/releases/download/v2.4.6/ffconverter-2.4.6.tar.gz</Archive>
|
||||||
<BuildDependencies>
|
<BuildDependencies>
|
||||||
<Dependency>ffmpeg-devel</Dependency>
|
<Dependency>ffmpeg-devel</Dependency>
|
||||||
<Dependency>gettext-devel</Dependency>
|
<Dependency>gettext-devel</Dependency>
|
||||||
<Dependency>python3-devel</Dependency>
|
<Dependency>python3-devel</Dependency>
|
||||||
<Dependency>python3-qt5-devel</Dependency>
|
<Dependency>python3-qt5-devel</Dependency>
|
||||||
|
<Dependency>python3-setuptools</Dependency>
|
||||||
</BuildDependencies>
|
</BuildDependencies>
|
||||||
<Patches>
|
<Patches>
|
||||||
<Patch level="1">QProgressBar_value_replaced_to_int.patch</Patch>
|
<!-- <Patch level="1"></Patch> -->
|
||||||
</Patches>
|
</Patches>
|
||||||
</Source>
|
</Source>
|
||||||
|
|
||||||
@@ -30,21 +31,26 @@
|
|||||||
<RuntimeDependencies>
|
<RuntimeDependencies>
|
||||||
<Dependency>ffmpeg</Dependency>
|
<Dependency>ffmpeg</Dependency>
|
||||||
<Dependency>unoconv</Dependency>
|
<Dependency>unoconv</Dependency>
|
||||||
|
<Dependency>pandoc-bin</Dependency>
|
||||||
<Dependency>python3-qt5</Dependency>
|
<Dependency>python3-qt5</Dependency>
|
||||||
<Dependency>imagemagick</Dependency>
|
<Dependency>imagemagick</Dependency>
|
||||||
|
<Dependency>squashfs-tools</Dependency>
|
||||||
</RuntimeDependencies>
|
</RuntimeDependencies>
|
||||||
<Files>
|
<Files>
|
||||||
<Path fileType="executable">/usr/bin</Path>
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
<Path fileType="library">/usr/lib</Path>
|
<Path fileType="library">/usr/lib</Path>
|
||||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
<Path fileType="data">/usr/share</Path>
|
||||||
<Path fileType="data">/usr/share/applications</Path>
|
|
||||||
<Path fileType="data">/usr/share/ffmulticonverter</Path>
|
|
||||||
<Path fileType="man">/usr/share/man</Path>
|
|
||||||
<Path fileType="doc">/usr/share/doc</Path>
|
|
||||||
</Files>
|
</Files>
|
||||||
</Package>
|
</Package>
|
||||||
|
|
||||||
<History>
|
<History>
|
||||||
|
<Update release="5">
|
||||||
|
<Date>2025-06-21</Date>
|
||||||
|
<Version>2.4.6</Version>
|
||||||
|
<Comment>New maintained upstream.</Comment>
|
||||||
|
<Name>Kamil Atlı</Name>
|
||||||
|
<Email>suvari@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
<Update release="4">
|
<Update release="4">
|
||||||
<Date>2023-11-03</Date>
|
<Date>2023-11-03</Date>
|
||||||
<Version>1.8.0</Version>
|
<Version>1.8.0</Version>
|
||||||
|
|||||||
Reference in New Issue
Block a user