peertubetorrent (369B)
1 #!/bin/sh 2 # torrent peertube videos, requires the transadd script 3 # first argument is the video link, second is the quality (360, 480 or 1080) 4 # 13/07/20 - Arthur Bais 5 6 instance=$(echo "$1" | sed "s|/w.\+||") 7 vidid=$(echo "$1" | sed "s|.\+/||") 8 link=$(curl -s "$instance/api/v1/videos/$vidid" | grep -o "$instance/download/torrents/.\{37\}$2.torrent") 9 transadd "$link"