Package Details: tartube 2.5.0-1

Git Clone URL: https://aur.archlinux.org/tartube.git (read-only, click to copy)
Package Base: tartube
Description: A GUI front-end for youtube-dl, yt-dlp and other compatible video downloaders
Upstream URL: https://github.com/axcore/tartube
Keywords: youtube youtube-dl yt-dlp
Licenses: LGPL-2.1-or-later
Submitter: ragouel
Maintainer: mhdi
Last Packager: mhdi
Votes: 16
Popularity: 0.27
First Submitted: 2020-05-06 04:54 (UTC)
Last Updated: 2024-02-04 16:25 (UTC)

Dependencies (17)

Required by (0)

Sources (1)

Latest Comments

1 2 Next › Last »

langfingaz commented on 2023-04-28 16:52 (UTC)

Can you please add yt-dlp as dependency? (Or maybe just as optional dependency.) Without it, I was not able to download videos. And the "update yt-dlp" button inside tartube failed.

quiquevisuet commented on 2022-02-05 15:36 (UTC)

I use pip install tartube

mosgerila commented on 2022-01-24 12:51 (UTC)

Does not work in Manjaro KDE. tartube  ✔ Traceback (most recent call last): File "/usr/bin/tartube", line 40, in <module> import mainapp ModuleNotFoundError: No module named 'mainapp'

crankyfoxinabox commented on 2021-03-27 20:19 (UTC)

This package needs to be updated, it is now two versions behind master! v2.3.110

ragouel commented on 2020-12-03 01:03 (UTC)

Thanks for the tip, I'll update the PKGBUILD.

djmattyg007 commented on 2020-12-03 00:57 (UTC)

A more reliable way to get the correct site-packages directory is with this code:

sitepkgs_dir="$(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")"

This will work even if python isn't installed in '/usr/lib/pythonXX'.

jstitch commented on 2020-12-02 22:21 (UTC)

package() breaks since the mv line needs python3.8 to be installed. Currently, Arch's python version is python3.9

DanAE111 commented on 2020-11-11 13:02 (UTC) (edited on 2020-11-11 13:02 (UTC) by DanAE111)

Had some issues getting tartube to run, getting the following error on launch. When python-ffmpeg or python-libffmpeg were installed.

Traceback (most recent call last):
  File "/usr/bin/tartube", line 83, in <module>
    app = mainapp.TartubeApp()
  File "/usr/lib/python3.8/site-packages/tartube/mainapp.py", line 249, in __init__
    self.ffmpeg_manager_obj = ffmpeg.FFmpegManager(self)
AttributeError: module 'ffmpeg' has no attribute 'FFmpegManager'

Active issue in upstream repository here