What ever happened to livemesimplegui? I can no longer seem to find a working version of it.
Comment
-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.
from datetime import datetime
import math
import urllib.request
from socket import timeout
epochtime = 16978870893091464654
prefix='https://vod.oc.linkv.fun/yolo-'
suffix='.m3u8'
starttime = math.floor(epochtime/10000000000) + (3600*8)
dt = datetime.utcfromtimestamp(starttime)
for x in range(600):
target=starttime+x
targetdt = datetime.utcfromtimestamp(target)
filename=prefix + str(epochtime) + '--' + targetdt.strftime('%Y%m%d%H%M%S') + suffix
try:
print(filename + urllib.request.urlopen(filename, timeout=.25).getcode())
except timeout:
continue
except:
print(filename + " found")
break
The Liveme API is broken but the videos are all still saved. So here's some quick python code that finds replays based on the replay ID (epoch timestamp). The basic principle is that you take the replay ID, strip it, convert it to Hong Kong time zone for the second part of the link, and add a second at a time until you find the video m3u8 link. Set up like this, it'll go through for a 10-minute window, and it'll print out any URLs that are valid (i.e. don't time out after 0.25 seconds). It goes for so long because sometimes the first valid link found is not the full video when searching this way.
from datetime import datetime
import math
import urllib.request
from socket import timeout
epochtime = 16978870893091464654
prefix='https://vod.oc.linkv.fun/yolo-'
suffix='.m3u8'
starttime = math.floor(epochtime/10000000000) + (3600*8)
dt = datetime.utcfromtimestamp(starttime)
for x in range(600):
target=starttime+x
targetdt = datetime.utcfromtimestamp(target)
filename=prefix + str(epochtime) + '--' + targetdt.strftime('%Y%m%d%H%M%S') + suffix
try:
print(filename + urllib.request.urlopen(filename, timeout=.25).getcode())
except timeout:
continue
except:
print(filename + " found")