You are not logged in.

#1 2017-01-14 12:46:46

addicted
Member
From: /home/addicted
Registered: 2016-07-13
Posts: 42

[Request] ffmpegthumbnailer with embedded coverart support

Here is repo with modified ffmpegthumbnailer.
I tested this & it's working.Though i have to copy some file from /usr/local to /usr directory.
AUR for this will be a good idea

Last edited by addicted (2017-01-23 13:30:18)

Offline

#2 2017-01-14 13:09:59

WorMzy
Forum Moderator
From: Scotland
Registered: 2010-06-16
Posts: 11,846
Website

Re: [Request] ffmpegthumbnailer with embedded coverart support

I think you forgot to include a link..


Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD

Making lemonade from lemons since 2015.

Offline

#3 2017-01-23 13:31:37

addicted
Member
From: /home/addicted
Registered: 2016-07-13
Posts: 42

Re: [Request] ffmpegthumbnailer with embedded coverart support

sorry i forgot to add repo url.
I updated main post with url now.

Offline

#4 2017-01-23 14:24:56

metak
Member
Registered: 2009-09-27
Posts: 198

Re: [Request] ffmpegthumbnailer with embedded coverart support

It's in the main repos since forever... ;-)  https://www.archlinux.org/packages/extr … umbnailer/

Offline

#5 2017-01-23 14:49:33

ugjka
Member
From: Latvia
Registered: 2014-04-01
Posts: 1,806
Website

Re: [Request] ffmpegthumbnailer with embedded coverart support

Alternative if you use kde https://aur.archlinux.org/packages/audio-thumbs5/

Last edited by ugjka (2017-01-23 15:29:04)


https://ugjka.net
paru > yay | webcord > discord
pacman -S spotify-launcher
mount /dev/disk/by-...

Offline

#6 2017-01-24 03:45:15

addicted
Member
From: /home/addicted
Registered: 2016-07-13
Posts: 42

Re: [Request] ffmpegthumbnailer with embedded coverart support

The difference between master & embeddedcover branch is embedded can show cover art file inside mkv file.
in main repo master branch is present.
@metak Can you confirm embedded cover is showing using that?(may be embedded cover merged to master branch)
I haven't used repo ffmpegthumbnailer since i started using embeddedcover branch & it's a pain to remove it , test repo package & again revert  back.
@ugjka thanks for suggestion.But that's for kde

Offline

#7 2017-01-24 10:40:58

metak
Member
Registered: 2009-09-27
Posts: 198

Re: [Request] ffmpegthumbnailer with embedded coverart support

@addicted sorry about that, I completely missed that you were talking about separate branch... ;-)
Anyway, you could just modify the official package?

pkgname=ffmpegthumbnailer-embeddedcover-git
pkgver=2.1.2.3.gc4d4e21
pkgrel=1
pkgdesc="Lightweight video thumbnailer that can be used by file managers."
url="https://github.com/dirkvdb/ffmpegthumbnailer"
license=('GPL2')
arch=('i686' 'x86_64')
depends=('ffmpeg' 'libjpeg' 'libpng')
makedepends=('cmake' 'git')
optdepends=('gvfs: support for gio uris')
conflicts=('ffmpegthumbnailer')
provides=('ffmpegthumbnailer')
source=("git+${url}#branch=embeddedcover")
sha1sums=('SKIP')

pkgver() {
  cd ffmpegthumbnailer
  git describe --tags | sed 's/-/./g'
}

build() {
  cd ffmpegthumbnailer
  cmake . \
	-DCMAKE_BUILD_TYPE=Release \
	-DCMAKE_INSTALL_PREFIX=/usr \
	-DCMAKE_INSTALL_LIBDIR=lib \
	-DENABLE_GIO=ON \
	-DENABLE_THUMBNAILER=ON
  make
}

package() {
  cd ffmpegthumbnailer
  make DESTDIR="${pkgdir}" install
}

Offline

Board footer

Powered by FluxBB