Page 1 of 1
pipe-viewer .deb package version 0.5.1
Posted: Mon Jul 22, 2024 5:12 pm
by fredx181
Here's a .deb package I made for the latest pipe-viewer (includes also gtk-pipe-viewer, the GUI version, run from Menu > Multimedia)
View Youtube videos without browser, from author "trizen" https://github.com/trizen/pipe-viewer, based on perl.
To install on BookwormPup: Remove the fake .gz extension. Right-click on pipe-viewer_0.5.1_all.deb and select "GDebi Package installer"
Then it will install it and also all the required perl dependencies will be installed.
![Screenshot(4).png](./download/file.php?id=25066&sid=c3be40bda7150a400f748e14faa80384)
- Screenshot(4).png (80.55 KiB) Viewed 329 times
Re: pipe-viewer .deb package version 0.5.1
Posted: Mon Jul 22, 2024 5:57 pm
by fredx181
Forgot to mention, (gtk-)pipe-viewer can make use of yt-dlp, I'd recommend to install it, if not already installed:
edit: changed url to "latest"
Code: Select all
curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp
chmod a+rx /usr/local/bin/yt-dlp
(this will install in /usr/local/bin, change above to /usr/bin if that's preferred) .
Re: pipe-viewer .deb package version 0.5.1
Posted: Mon Jul 22, 2024 6:23 pm
by darksun
fredx181 wrote: Mon Jul 22, 2024 5:57 pm
Forgot to mention, (gtk-)pipe-viewer can make use of yt-dlp, I'd recommend to install it, if not already installed:
Code: Select all
curl -L https://github.com/yt-dlp/yt-dlp/releases/download/2024.07.16/yt-dlp -o /usr/local/bin/yt-dlp
chmod a+rx /usr/local/bin/yt-dlp
(this will install in /usr/local/bin, change above to /usr/bin if that's preferred) .
thank you @fredx181 , just a little but important thing I would change in your post, which is the yt-dlp download url, to
Code: Select all
https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp
for reference
https://github.com/yt-dlp/yt-dlp/wiki/Installation
Re: pipe-viewer .deb package version 0.5.1
Posted: Mon Jul 22, 2024 7:24 pm
by fredx181
darksun wrote: Mon Jul 22, 2024 6:23 pm
fredx181 wrote: Mon Jul 22, 2024 5:57 pm
Forgot to mention, (gtk-)pipe-viewer can make use of yt-dlp, I'd recommend to install it, if not already installed:
Code: Select all
curl -L https://github.com/yt-dlp/yt-dlp/releases/download/2024.07.16/yt-dlp -o /usr/local/bin/yt-dlp
chmod a+rx /usr/local/bin/yt-dlp
(this will install in /usr/local/bin, change above to /usr/bin if that's preferred) .
thank you @fredx181 , just a little but important thing I would change in your post, which is the yt-dlp download url, to
Code: Select all
https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp
for reference
https://github.com/yt-dlp/yt-dlp/wiki/Installation
Thanks, I've edited my post above with that change.