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
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?
 
M
MiguelSanchez commented
Python uses indents to define blocks of code, and pasting it into the chat ruined my indents! Sorry about that. Wherever there's a colon (i.e. "for x in range(600):") the line below it has to be indented. Let's try again...maybe this will work. I don't post much so apologies for the formatting mistakes.

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
 
M
MiguelSanchez commented
Nope, didn't work. Trying something else...sorry.
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