blob: c8e22adf29ed98fde1435d40aaf49981f2814a0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/env sh
#
# Install mps-youtube
# https://github.com/mps-youtube/mps-youtube
# Parameters
SHARE="$1"
LIB="$2"
# Include basic functions
. $LIB/trashman/functions || exit 1
. $LIB/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
|