Package Details: freetube-bin 0.24.0-1

Git Clone URL: https://aur.archlinux.org/freetube-bin.git (read-only, click to copy)
Package Base: freetube-bin
Description: An open source desktop YouTube player built with privacy in mind.
Upstream URL: https://github.com/FreeTubeApp/FreeTube
Keywords: youtube
Licenses: AGPL3
Conflicts: freetube
Provides: freetube
Submitter: plague-doctor
Maintainer: plague-doctor (bacteriostat)
Last Packager: bacteriostat
Votes: 224
Popularity: 4.91
First Submitted: 2019-04-02 03:28 (UTC)
Last Updated: 2026-04-01 04:48 (UTC)

Latest Comments

1 2 3 4 5 6 .. 10 Next › Last »

doblerone commented on 2026-04-01 17:31 (UTC)

Anyone else gets a blank window after the update to 0.24.0?

comradegodzilla commented on 2026-01-31 23:43 (UTC)

Works well. Thanks for maintaining this.

R4DH2N commented on 2025-11-26 02:55 (UTC) (edited on 2025-11-26 02:57 (UTC) by R4DH2N)

FreeTube refuses to start under pure wayland session on my machine. adding --ozone-platform-hint=auto does the job for me.


# diff /usr/share/applications/freetube.desktop .local/share/applications/freetube.desktop
3c3
< Exec=/opt/FreeTube/freetube %U
---
> Exec=/opt/FreeTube/freetube --ozone-platform-hint=auto %U

nube commented on 2025-10-13 01:32 (UTC)

When you can, please update to 0.23.10. Thank you for maintaining this package.

seth_greeen commented on 2025-09-14 12:11 (UTC)

Can you update to 0.23.9

noraj commented on 2025-09-06 16:28 (UTC)

Why using the debian package and not the Arch Linux package https://github.com/FreeTubeApp/FreeTube/releases/download/v0.23.8-beta/freetube-0.23.8-beta-amd64.pacman ?

An-dz commented on 2025-08-14 00:23 (UTC)

It would be nice to have a wrapper for setting flags like all browsers on Arch.

It would require to have this script in the installation and modifying the .desktop file.

#!/bin/bash
#
# Copyright (c) 2011 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# Let the wrapped binary know that it has been run through the wrapper.
export CHROME_WRAPPER="$(readlink -f "$0")"
export HERE="$(dirname "$CHROME_WRAPPER")"

# Allow users to override command-line options
XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-$HOME/.config}
FREETUBE_USER_FLAGS=""
if [[ -f "$XDG_CONFIG_HOME/freetube-flags.conf" ]]; then
   FREETUBE_USER_FLAGS="$(cat "$XDG_CONFIG_HOME/freetube-flags.conf" | sed -e '/^\s*#/d')"
fi

# Note: exec -a below is a bashism.
exec -a "$0" "$HERE/freetube" $FREETUBE_USER_FLAGS "$@"

bacteriostat commented on 2025-08-12 02:47 (UTC)

I have updated the PKGBUILD to use sha256sum.

@impulse, thanks for your willingness to contribute but there are already 2 maintainers on this package. You can always suggest changes on the repo where I push all the PKGBUILD I maintain: https://github.com/bacteriostat/pkgbuilds

impulse commented on 2025-08-11 20:32 (UTC) (edited on 2025-08-11 20:38 (UTC) by impulse)

FYI, You should replace MD5 checksum with one more modern like SHA-256, you can replace the string md5sums with sha256sums in PKGBUILD, then run updpkgsums.

Here is an example patch:

diff --git a/PKGBUILD b/PKGBUILD
index aa86be6..608fb18 100755
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -29,5 +29,5 @@ package() {
     ln -s "/opt/FreeTube/$_pkgname" "$pkgdir/usr/bin/$_pkgname"
 }

-md5sums_x86_64=('378299ab079ac1d44d780d4b0f42c017')
-md5sums_aarch64=('9b269300c05544a409cf1924d50c9e6a')
+sha256sums_x86_64=('15f42feb853cde3250c320b2e20f8195fdcf1be549b695914c1e6d90c8541ea4')
+sha256sums_aarch64=('c1eea303aa237fa10a3d9794708245539fb4a5d88ebbbbb79b701acb60aed3bb')

Also, Feel free to add me as co-maintainer if you want to, i use this package daily so will notice if something ever breaks.

Many Thanks,

James Clarke

Rollingthunder commented on 2025-08-09 16:23 (UTC)

May I ask, why use md5sums for "validation" and strip staticlibs?