- Dec 16, 2019
- 125
- 241
- 1,447
-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+
#!/bin/bash
liveme_video_id=$1
echo "LiveMe Video-ID: $liveme_video_id"
screen -X title "liveme-video-id: $liveme_video_id"
liveme_unixtime=${liveme_video_id::10}
liveme_unixtime_plus8=$(expr $liveme_unixtime + 28800)
count_variable=1
while [ $count_variable -lt 120 ]; do
dlurl=$(expr $liveme_unixtime - 10 + $count_variable)
echo $dlurl
url100=$( date -u -d @$dlurl +%Y%m%d%H%M%S )
curl "http://record.linkv.fun/oc/yolo-"$liveme_video_id"--"$url100".m3u8" -m20 > $liveme_video_id"--"$url100".old.txt"
count_variable=$[$count_variable+1]
done
#
count_variable=1
while [ $count_variable -lt 120 ]; do
echo "$count_variable"
dlurl=$(expr $liveme_unixtime_plus8 - 10 + $count_variable)
url100=$( date -u -d @$dlurl +%Y%m%d%H%M%S )
curl "http://vod.oc.linkv.fun/yolo-"$liveme_video_id"--"$url100".m3u8" -m20 > $liveme_video_id"--"$url100".txt"
count_variable=$[$count_variable+1]
done
#!/bin/bash
liveme_video_id=$1
count_variable=$2; if [ "$count_variable" = "" ]; then count_variable=120 ; fi
curltimeout=$3; if [ "$curltimeout" = "" ]; then curltimeout=10 ; fi
liveme_unixtime=${liveme_video_id::10}
liveme_unixtime_plus8=$(expr $liveme_unixtime + 28800)
liveme_video_date_plus8=$( date -u -d @$liveme_unixtime_plus8 +%Y%m%d%H%M%S )
datecheck=$[$(date +%s)-$liveme_unixtime]
if (( datecheck > 8000000))
then
echo "Video-ID more than 3 months old"
exit
fi
if (( liveme_unixtime < 1630986656 ))
then
loop_counter=1
while [ $loop_counter -lt $count_variable ]; do
dlurl=$(expr $liveme_unixtime - 1 + $loop_counter)
url100=$( date -u -d @$dlurl +%Y%m%d%H%M%S )
webside_variable=$(curl -s "http://record.linkv.fun/oc/yolo-"$liveme_video_id"--"$url100".m3u8" -m$curltimeout)
webside_len=`expr length "$webside_variable"`
if (( webside_len > 1000 ))
then
echo "http://record.linkv.fun/oc/yolo-"$liveme_video_id"--"$url100".m3u8"
loop_counter=$count_variable
fi
loop_counter=$[$loop_counter+1]
done
else
loop_counter=1
while [ $loop_counter -lt $count_variable ]; do
dlurl=$(expr $liveme_unixtime_plus8 - 10 + $loop_counter)
url100=$( date -u -d @$dlurl +%Y%m%d%H%M%S )
webside_variable=$(curl -s "http://vod.oc.linkv.fun/yolo-"$liveme_video_id"--"$url100".m3u8" -m$curltimeout)
webside_len=`expr length "$webside_variable"`
if (( webside_len > 1000 ))
then
echo "http://vod.oc.linkv.fun/yolo-"$liveme_video_id"--"$url100".m3u8"
loop_counter=$count_variable
fi
loop_counter=$[$loop_counter+1]
done
fi