sharktank3r
Well-known member
Contributor
Advanced Leaker
Five Years
-The content MUST be from TikTok, do not post slips from other platforms.
-You MUST include profile names / link to the profile, or make every attempt to include it.
-Include timestamps if you post a long video or a full live video.
-Make sure ALL girls posted are 18+
This also means no children in the background.
No more warnings.
Anyone breaking this rule will be banned as stated in rule 4 of the forum:
4) No doxing. Breaking this rule will result in a permanent ban. Under no circumstances the real names or personal information of model should to be revealed.
#!/bin/bash
dlurl=$1
dlname=$2
timeouttime=$3
loop=$4
if [ "$timeouttime" = "" ]; then timeouttime=60; fi
if [ "$loop" = "" ]; then loop=0; fi
# Screen Title
screen -X title "$dlurl $dlname $timeouttime $loop"
while [ true ] ; do
DATE=$(date +%Y-%m-%d-%H-%M)
# Output Informationen
let "loop+=1"; echo "----------"; echo "loop: $loop"; date; echo "$0 $dlurl"
streamlink -l debug --http-no-ssl-verify $dlurl best -o "/home/XXX your download path here XXX/$dlname$loop_$DATE.ts"
echo "sleep $timeouttime"
sleep $timeouttime
done
#!/bin/bash
rec_dir="$(pwd)/recorded"
streamlink_command=$(command -v streamlink)
sed_command=$(command -v sed)
if [[ ! -d "${rec_dir}" ]]; then
mkdir -p "${rec_dir}"
fi
append_to_url='_720p/playlist.m3u8'
wss_to_http='s/wss:\/\//https:\/\//g'
date=$(date +%Y-%m-%d-%H-%M)
if echo "${1}" | grep -q 'wss:\/\/'; then
video_http=$(echo "${1}" | "${sed_command}" "${wss_to_http}")
video_http="${video_http}""${append_to_url}"
echo "Recording ${video_http}......"
"${streamlink_command}" -l debug --http-no-ssl-verify "${video_http}" best -o "${rec_dir}/crazy_cash_${date}.ts"
else
echo "Error ${1} is not a wss:// link."
fi
exit 0