blob: fd01badf13570282964f9af31cfa9f40ef4b21ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/env sh
#
# Install mps-youtube
# https://github.com/mps-youtube/mps-youtube
# Parameters
SHARE="$1"
# Include basic functions
. $SHARE/trashman/functions || exit 1
. $SHARE/trashman/debian || exit 1
# Requirements
trashman_apt_install_packages python3-pip mpv
pip3 install --user youtube-dl
# Install
pip3 install --user -U git+https://github.com/mps-youtube/mps-youtube.git
|