Off Topic - Expired replays? | Page 3 | Social Media Girls

Off Topic Expired replays?

  • 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
All tools seems dead.?

Someone please revive LIVEME PRO TOOL !!!
 
  • Like
Reactions: GordoTheStiff
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?
 
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
 
M
MiguelSanchez commented
There we go. And changing the epochtime variable is as easy as replacing "epochtime = 16978870893091464654" with whatever your replay ID is. If there's actual interest in this, I could make a simple GUI tool like the one tetudin made a while back where you can type it in without changing code. I think that one no longer works because it relied on underlying API calls that were removed...so it's broken for the same reason as Liveme Pro Tools.
 
D
Deleted member 4896769 commented
Crazylooker the tbot doesn't find all of the lives and some accounts don't work at all
 
Almeno390
Almeno390 commented
I appreciate everyone who is trying to get things working. One small suggestion.. I think we already have 90% working code and GUI (Live-me-pro-tool) : https://thecoder75.***/liveme-pro-tools/ , Coders can branch this and fix the code to work ? LMpro Tools had gui, easy following function and also lets us view video inside app itself.
Q]
 
K
kaan11 commented
Yes we want
 
Almeno390
Almeno390 commented
Thanks.. But i thought when almost most of hte work is done iwth the project , probably it needs update or links/api code etc to make it work.

Ofcourse developers know better ..

We really need something before liveme locks down the access to replays
 
for anyone that uses desktop computer and liveomg website, it now goes to a 404 page after showing the broadcast for 3 seconds. you will have to change the url and put pro.liveme and so on to get it to work.

It seems it only happens sometimes.
 
Last edited:
  • Like
Reactions: Casey Nice
Comment
How do I get the m3u8 links from the broadcast urls. They all have wins but I can't seem to get the m3u8 links
 
  • Like
Reactions: triantafyllos13
1 Comment
Braavosi33
Braavosi33 commented
type /convert
 
Okay, for those that still have LMPT installed, it still works, somewhat. It shows new follows/followers and number of new replays but you can't view any of them. This is where you use the Tgram bot with the user ID.

You just hit Open Recent Activity window and scroll down past all of the follows NaN less accounts to the good stuff.
 
Comment
I do this as a hobby so my code isn't very good, anyone is welcome to make it faster/better.

vtime "brute-force" (exe and source code): https://gofile.io/d/jnUuum
-Rewrote the old app with Tkinter since PySimpleGUI is now paid, added the check for the bugged playlists that domie detected, main problem is there are still some playlists that it wont find because of the weird liveme storing. This is a "brute-force" mode, so use with caution cause it could end up getting your ip blocked from their app/website. Any bug you encounter post here.

edited out the login version

WARNING: Microsoft Defender and some other AV's flag this as a Trojan because it was packaged by Pyinstaller so it gives out a false positive result on some antivirus software, I submitted a request on their website but it might take some time until it is approved. Either you disable the anti-virus or allow the executable to run.

 
Last edited:
N
nostrilbob commented
Bot is not responding at all right now. How do i find Video ID for past replays? Also where can i find Livemesimplegui? Struggling to find the resources to learn.
 
Last edited:
D
Deleted member 1046453 commented
Anyone has other tool than the bot one? It would really be nice to get the last 30 days replays instead of what the bot give to us. There is some girls that I certain know that did something on the past lives, but the bot only show the last 10 days replays, this really sucks.
 
D
Deleted member 6431912 commented
have you found a solution yet
 
G
greggyy12 commented
can somw1 reup