Social Media Girls

Social Media Girls

  • Going forward please follow these rules when posting:

    -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+

  • Please make sure all of the videos and screenshots you're posting are only of people over the age of 18.

    This also means no children in the background.

    No more warnings.

  • Absolutely no doxing. This includes everything from using and asking for real names, asking for IG and other social media accounts. No social media rips.

    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.

Welcome to the Social Media Girls Forum!
Feel free to sign up and join the discussion on all your favourite Social Media Girls. YouTube and Twitch oops moments, Onlyfans leaks, Celebrity sex tapes and More! It's free and takes 10 seconds!
Sign up
11 Comments
G
GordoTheStiff commented
Praying to like 30 different gods right now that some hero comes down for the clouds and fixes it
 
M
MiguelSanchez commented
Cloud hero here with marginal coding skills...and not in Python at all...so sorry if this is hackish. I'm also too lazy to throw a GUI or even a command line on it. Download IDLE or something, paste it in a file, change the epochtime variable, run it, and enjoy replays. That's what I do, at least. And if you're a coder, make it better.

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")
 
Almeno390
Almeno390 commented
thanks so much. Most of us here are noobs in code.. :(

We really dont know how to even start working on this. But thanks a lot for sharing. I really hope someone here figures out or develops further.

Is there a slightest possibility that we take LIVEMEPRO tools COde and update ?

 
C
Clement669 commented
Thank you for this. I put this in IDLE and ran it but I get this error: IndentationError: expected an indented block after 'for' statement on line 13

How would one change the epochtime variable?