From unknown Fri Jun 13 09:56:13 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#32223 <32223@debbugs.gnu.org> To: bug#32223 <32223@debbugs.gnu.org> Subject: Status: [PATCH] gnu: ffmpegthumbnailer: New variable. Reply-To: bug#32223 <32223@debbugs.gnu.org> Date: Fri, 13 Jun 2025 16:56:13 +0000 retitle 32223 [PATCH] gnu: ffmpegthumbnailer: New variable. reassign 32223 guix-patches submitter 32223 Brendan Tildesley severity 32223 normal tag 32223 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 20 09:34:04 2018 Received: (at submit) by debbugs.gnu.org; 20 Jul 2018 13:34:04 +0000 Received: from localhost ([127.0.0.1]:48982 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fgVXo-00021D-7i for submit@debbugs.gnu.org; Fri, 20 Jul 2018 09:34:04 -0400 Received: from eggs.gnu.org ([208.118.235.92]:43989) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fgVXl-00020M-IS for submit@debbugs.gnu.org; Fri, 20 Jul 2018 09:34:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fgVXf-0006fi-IA for submit@debbugs.gnu.org; Fri, 20 Jul 2018 09:33:56 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:52758) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fgVXf-0006fW-Dq for submit@debbugs.gnu.org; Fri, 20 Jul 2018 09:33:55 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34960) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fgVXe-0006Ut-6e for guix-patches@gnu.org; Fri, 20 Jul 2018 09:33:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fgVXZ-0006bC-Ng for guix-patches@gnu.org; Fri, 20 Jul 2018 09:33:54 -0400 Received: from lb1.openmailbox.org ([5.79.108.160]:44601 helo=mta-1.openmailbox.org) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fgVXZ-0006XP-G1 for guix-patches@gnu.org; Fri, 20 Jul 2018 09:33:49 -0400 Received: by mta-1.openmailbox.org (Postfix, from userid 20002) id AAF034E001D; Fri, 20 Jul 2018 15:33:41 +0200 (CEST) From: Brendan Tildesley To: guix-patches@gnu.org Subject: [PATCH] gnu: ffmpegthumbnailer: New variable. Date: Fri, 20 Jul 2018 23:33:35 +1000 Message-Id: <20180720133335.17268-1-brendan.tildesley@openmailbox.org> X-Mailer: git-send-email 2.18.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) * gnu/packages/video.scm (ffmpegthumbnailer): New variable. --- gnu/packages/video.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 820a7fc4c..29d1de642 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -817,6 +817,35 @@ audio/video codec library.") flag)) ,flags)))))) +(define-public ffmpegthumbnailer + (package + (name "ffmpegthumbnailer") + (version "2.2.0") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/dirkvdb/" + name "/archive/" version ".tar.gz")) + (sha256 + (base32 + "13qs4iwd4l3iiim30s5051n80z0vgsnikym8vsn321cnm9algiwb")))) + (build-system cmake-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("ffmpeg" ,ffmpeg) + ("libjpeg-turbo" ,libjpeg-turbo) + ("libpng" ,libpng) + ("gvfs" ,gvfs))) + (arguments + `(#:configure-flags (list "-DENABLE_GIO=ON" "-DENABLE_THUMBNAILER=ON"))) + (home-page "https://github.com/dirkvdb/ffmpegthumbnailer") + (synopsis "Create thumbnails from video files") + (description "FFmpegthumbnailer is a lightweight video thumbnailer that +can be used by file managers to create thumbnails for your video files. The +thumbnailer uses ffmpeg to decode frames from the video files, so supported +videoformats depend on the configuration flags of ffmpeg.") + (license license:gpl2+))) + (define-public vlc (package (name "vlc") -- 2.18.0 From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 22 10:51:39 2018 Received: (at 32223-done) by debbugs.gnu.org; 22 Jul 2018 14:51:39 +0000 Received: from localhost ([127.0.0.1]:52522 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fhFhz-0001M5-1o for submit@debbugs.gnu.org; Sun, 22 Jul 2018 10:51:39 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:43861) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fhFhx-0001Lx-Rb for 32223-done@debbugs.gnu.org; Sun, 22 Jul 2018 10:51:38 -0400 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.nyi.internal (Postfix) with ESMTP id 5892121A7D; Sun, 22 Jul 2018 10:51:37 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute5.internal (MEProxy); Sun, 22 Jul 2018 10:51:37 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm3; bh=n5ZQUKr6chf0TTNpgY/Ok0pKdpP1YbaDFrWh64ndrmA=; b=FGuVhd+6 AcwC+9Y5LLJK4iNiY29FEZUWdtZHP2Oe8V2vWUVhkYuMeJzV8NXR9y/33g0ANlKj GpP9Nd18zG8g7B0b8vfQl673wcSPQtG8K3MqA/SBBsisDiTR5hkCmVxdWPdfOvgl HAZgVKp0DClAeZRmPtlwwvS+EbP4R/koWZGErkqDdKfsPjyGeEhlNtRJbosYdgXT iMEZz8ob8WlMxDGBGNkVY1Ifpumw3aHzdlbvt9Zu/E7Nm4zCBbH3zsBpdwePvjja WeNX98UbT/PdUBrWXJXYfvJUSjscPQX7F4rYwERn0ISZnRI2fu25LiwNRpzqT8wh fvoVTMM2O6tzSw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=fm3; bh=n5ZQUKr6chf0TTNpgY/Ok0pKdpP1Y baDFrWh64ndrmA=; b=TWnR29TtZER7iiyoBvVvTdfrI0JIbEZq4DHKedj4zLvyF 2HL7T646566GIN2DQHGWOMWIGt2lDvPORfyin7BXS7Pd3nbjltb1PEpU3U1CCzQE qD70ir7ahiRExafHjb/0T1RYhA4vvRYuQcAFgqgzasKwF6o7Q8hQf89Kf2r/NZlG RLoVCXnjf+PJF3sdB6+hsTJgPLVxJBnOQfuPD7Hmk2daRLemMx4E5kvsi4cufe4/ vChD7VPQ4StJcrlnm6VcICyLqpOq2xKEUWd/ILG1ephak/LuMLAlrUHPnJPNIFWt mnWiO6oYai3Bua+3eQ2loNyYA5tsFJ03yJ07JpQTA== X-ME-Proxy: X-ME-Sender: Received: from localhost (95.92-221-151.customer.lyse.net [92.221.151.95]) by mail.messagingengine.com (Postfix) with ESMTPA id 8DE0B10268; Sun, 22 Jul 2018 10:51:36 -0400 (EDT) From: Marius Bakke To: Brendan Tildesley , 32223-done@debbugs.gnu.org Subject: Re: [bug#32223] [PATCH] gnu: ffmpegthumbnailer: New variable. In-Reply-To: <20180720133335.17268-1-brendan.tildesley@openmailbox.org> References: <20180720133335.17268-1-brendan.tildesley@openmailbox.org> User-Agent: Notmuch/0.27 (https://notmuchmail.org) Emacs/26.1 (x86_64-pc-linux-gnu) Date: Sun, 22 Jul 2018 16:51:34 +0200 Message-ID: <877eln5nnt.fsf@fastmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 32223-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --=-=-= Content-Type: text/plain Brendan Tildesley writes: > * gnu/packages/video.scm (ffmpegthumbnailer): New variable. Thank you! I added a copyright line for you and committed as 4febfdd0f33d1511bede56791f1362e04708aad9. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAltUmfYACgkQoqBt8qM6 VPq8qAgA0HEdpJ9FArelYa7cjR7MPUUedlU8/o8+NDfu+JGV2kgzeLYDbN+rARNl S7X64oKEmanljbq26vskMzsC+jnVPvg+k4iUj8l+HgDQ1flFxFY9TQ1mtddCeW0N ThicXi8y9pFoKgt4Wj/09Y6MQkG63VuSiB0r7fE6FAHMGj+lAiMh2SltE4R30z7u nFxW/AjlfG1pG5KUSQTVwj/UonasosqUDQEjNRPnlMeGkZDdgLQ93jc+iuoeABgF zvp+uTcFt1MsSP+gIrtMCrJeDd5gfa13OBMEMM5boGabjJph0hZKMh3rn2Z3xeLJ rUvTj3gDh5iLXOdUDHiza/ODyXFfFg== =DS9C -----END PGP SIGNATURE----- --=-=-=-- From unknown Fri Jun 13 09:56:13 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 20 Aug 2018 11:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator