Package Details: python-mediainfodll 1:24.06-1

Git Clone URL: https://aur.archlinux.org/python-mediainfodll.git (read-only, click to copy)
Package Base: python-mediainfodll
Description: Python shared library for reading metadata from media files
Upstream URL: https://github.com/MediaArea/MediaInfoLib
Licenses: BSD 2-Clause
Submitter: yochananmarqos
Maintainer: Corax
Last Packager: Corax
Votes: 9
Popularity: 0.000871
First Submitted: 2018-09-02 22:33 (UTC)
Last Updated: 2024-09-12 19:07 (UTC)

Latest Comments

1 2 Next › Last »

Corax commented on 2024-09-12 19:10 (UTC)

I've bumped this package to the latest release. It does include one fix compared to 17.10. However, the main reason this was needed is that all python-* packages need to be rebuilt after a major Python 3.x release is made, and there have been quite a few since 2018.

yochananmarqos commented on 2024-06-12 16:24 (UTC)

@infernys20: What plugins menu? Either way, see the pinned comment.

infernys20 commented on 2024-06-12 16:23 (UTC)

The extension disappeared from the plugins menu. Can confirm, updating to 23.04 fixes it.

yochananmarqos commented on 2023-06-30 01:03 (UTC)

@JoaoMachado: See my comment I just pinned. More than likely the recent updates to nemo broke nemo-mediainfo-tab. Create an upstream issue.

JoaoMachado commented on 2023-06-30 00:38 (UTC)

The package needs to be updated to 23.04 regardless because not doing so breaks nemo-medialinfo-tab.

dekart811 commented on 2023-05-05 16:43 (UTC)

@yochananmarqos OK, my bad then.

yochananmarqos commented on 2023-05-05 16:17 (UTC)

@dekart811: The only file this package installs is MediaInfoDLL3.py which has not been updated since the 17.10 release.

dekart811 commented on 2023-05-05 16:14 (UTC)

@yochananmarqos: https://github.com/MediaArea/MediaInfoLib/releases/tag/v23.04

yochananmarqos commented on 2023-05-05 15:50 (UTC) (edited on 2023-05-05 16:17 (UTC) by yochananmarqos)

@dekart811: There's nothing to update, the file hasn't been touched in 4 years. With the Python 3.11 update, you just need to rebuild all AUR Python packages that place files in site-packages.

dekart811 commented on 2023-05-05 12:39 (UTC)

Needs to be updated to 23.04, otherwise it breaks nemo-mediainfo-tab.

# Maintainer: Mark Wagie <yochanan dot marqos at gmail dot com>
# Co-Maintainer: Corax <cor dot ax26 at gmail dot com>
pkgname=python-mediainfodll
pkgver=23.04
pkgrel=1
epoch=1
pkgdesc="Python shared library for reading metadata from media files"
arch=('any')
url="https://github.com/MediaArea/MediaInfoLib"
license=('BSD')
depends=('libmediainfo' 'python')
source=("MediaInfoLib-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha256sums=('afcbab2f849952d8e5ec9c4887db110b6f4d22f592ab6d8787232e9ef93c6fbb')

package() {
  local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")

  cd "MediaInfoLib-$pkgver"
  install -Dm644 Source/MediaInfoDLL/MediaInfoDLL3.py -t "$pkgdir/$site_packages"
  install -Dm644 License.html -t "$pkgdir/usr/share/licenses/$pkgname"
}