You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
258 B
8 lines
258 B
2 years ago
|
#!/bin/sh
|
||
|
# torrent peertube videos, requires the transadd script
|
||
|
# first argument is the video link, second is the quality (480 or 1080)
|
||
|
# 13/07/20 - Arthur Bais
|
||
|
|
||
|
link="$(echo "$1" | sed "s/videos\/watch/download\/torrents/")""-$2.torrent"
|
||
|
transadd "$link"
|