She's Live Right Now. And She's Waiting for You Talk to Her Free Off Topic - Expired replays? | Social Media Girls
React Dislike Medal Cheers Love Haha Wow Sad Angry PepeBored MonkaS PepHands FeelsBadMan Pepega Clown BOOBA PepePerfect iLOVEyou PepoPopcorn PeepoFinger Wankge Gimme Love Simp FeelsOk Cheer FeelsLove Toxic Ban DMCA LOL Clap Shit

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+

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
Longtime ago before they changed their format on replays . There was a site like a back door . That would have all replays from all streamers. Even if the girl deleted them they could still be seen. But after the changes made 3y ago its gone. I tryed asking around but no one knows anymore.
 
  • React
Reactions: Mmkmrh
0 Comments
Until this summer I could get expired lives using the web url in vlc and changing the date or googling the exact user name to find other 'dead' lives that could be still downloaded as of july it no longer seems to work (oh and this girl has been on liveme for 5 years i know someone has something!)
 
0 Comments
There is a way to find all deleted broadcasts on LiveMe as MancW confirmed in this thread without mentioning how. I tried with google and only found a limited amount of broadcasts in a random order so that's not it.
Anyone have any idea on how to find all broadcasts? I only need a way to find broadcast id's or links.
 
0 Comments
Is it just me, or is the Vtime + 8hr ahead trick not working anymore? I haven't been able to load a single past broadcast since yesterday.
 
0 Comments
abc
 
Last edited:
0 Comments
part of a small script i wrote

usage: calclive.sh video-id

example:

calclive.sh 6322613567506544866

Code:
#!/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

after script is done you have 240 files in same directory. just sort by filesize. biggest one should be working liveme-replay-id
 
0 Comments
i modified the code. search is faster. no more files in directory. immediately stop after found replay url.

usage: calclive.sh video-id (variables #2 and #3 are optional)

output:
-nothing if no replay was found
-message if video is more than 3 months old
-url replay

note:
i could not test this code maybe webside_len need to be redefined. In next version i have to add error checks (curl: Could not resolve host).
maybe someone will convert this to windows batch.

Code:
#!/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
 
0 Comments