Package Details: 4kvideodownloaderplus 1.10.0.0154-1

Git Clone URL: https://aur.archlinux.org/4kvideodownloaderplus.git (read-only, click to copy)
Package Base: 4kvideodownloaderplus
Description: Download videos from all popular websites including YouTube, Vimeo, TikTok, SoundCloud, Facebook, Twitch, Bilibili and more in high-quality
Upstream URL: https://www.4kdownload.com/products/videodownloader-41
Licenses: LicenseRef-EULA
Submitter: Muflone
Maintainer: Muflone
Last Packager: Muflone
Votes: 6
Popularity: 1.27
First Submitted: 2023-08-06 21:38 (UTC)
Last Updated: 2024-12-01 16:54 (UTC)

Latest Comments

kazami1999 commented on 2024-07-29 19:57 (UTC) (edited on 2024-07-30 02:23 (UTC) by kazami1999)

How do I update this to the most recent version of 1.8.1.0110? I have edited the pkgver in the pkgbuild file, but it keeps failing the validity check and doesn't complete the process.

EDIT: I have figured it out now. After changing the pkgver in the pkgbuild file to whatever the current version is, there is a verification error when attempting to run the pkgbuild command. To skip this and complete the process, enter the --skipchecksums argument with the pkgbuild command.

oryschakj commented on 2024-07-26 00:50 (UTC) (edited on 2024-07-26 00:52 (UTC) by oryschakj)

Note for Wayland users - if you experience extremely laggy performance in the app try running it with Wayland off (DISABLE_WAYLAND=1 environment variable). If you want a more recent version than what's in this repo you can download the Ubuntu 64-bit Portable version from the vendor's website and run it directly from 4kvideodownloaderplus.sh, or change pkgver in the pkgbuild.

19topgun93 commented on 2024-07-15 17:56 (UTC) (edited on 2024-07-15 17:56 (UTC) by 19topgun93)

The new Version fixed YouTube parsing issue.

19topgun93 commented on 2024-06-21 15:21 (UTC) (edited on 2024-06-21 15:50 (UTC) by 19topgun93)

Hello :)

The Version 1.7.1.0097 is available to install.

url="https://www.4kdownload.com/products/videodownloader-42"

https://dl.4kdownload.com/app/4kvideodownloaderplus_1.7.1-1_amd64.deb?source=website

solarisfire commented on 2023-12-12 10:27 (UTC)

I believe this package stole my Facebook credentials and caused Facebook to flag that I had been hacked, use it with caution!

ireneuszi83 commented on 2023-08-17 13:37 (UTC)

new version 1.1.1.0026


# Maintainer: Muflone http://www.muflone.com/contacts/english/

pkgname=4kvideodownloaderplus
pkgver=1.1.1.0026
pkgrel=1
pkgdesc="Download videos from all popular websites including YouTube, Vimeo, TikTok, SoundCloud, Facebook, Twitch, Bilibili and more in high-quality"
arch=('x86_64')
url="https://www.4kdownload.com/products/videodownloader-41"
license=('custom:eula')
depends=('openssl' 'glib2' 'expat')
makedepends=('chrpath')
source=("${pkgname}_${pkgver}_amd64.tar.bz2"::"https://dl.4kdownload.com/app/${pkgname}_${pkgver%.*}_amd64.tar.bz2"
        "${pkgname}.desktop"
        "${pkgname}.svg"
        "fix_symlink_path.patch")
sha256sums=('e4d92629024c21fedd0ca878f125ccd163790b7d56a980d1f27e0dc6a7b18650'
            'd2266611e5104a97e5a11d033823dfbbef5b059a629cae3537c7f60767aaffe2'
            '1c2451ccaef8f3fe1c090d3f0f8431342a0adb363fcc18d35c130ec0a85fade5'
            '82e2519a2fb3c079ce34589c7ad063221095c77d0f968b414c36044a37908f0a')

prepare() {
  cd "${pkgname}"
  # Remove insecure RPATH
  chrpath --delete "${pkgname}-bin"
  # Fix symlink path
  patch -p1 -i "${srcdir}/fix_symlink_path.patch"
}

package() {
  # Install desktop file
  install -m 755 -d "${pkgdir}/usr/share/applications"
  install -m 755 -t "${pkgdir}/usr/share/applications" "${pkgname}.desktop"
  # Install icon file
  install -m 755 -d "${pkgdir}/usr/share/pixmaps"
  install -m 644 -t "${pkgdir}/usr/share/pixmaps" "${pkgname}.svg"
  # Install files
  install -m 755 -d "${pkgdir}/usr/lib"
  cp -r "${pkgname}" "${pkgdir}/usr/lib"
  chown root:root "${pkgdir}/usr/lib/${pkgname}"
  # Install launcher file
  install -m 755 -d "${pkgdir}/usr/bin"
  ln -s "/usr/lib/${pkgname}/${pkgname}.sh" "${pkgdir}/usr/bin/${pkgname}"
  # Install license file
  install -m 755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
  install -m 644 -t "${pkgdir}/usr/share/licenses/${pkgname}" "${pkgname}/doc/eula"
}