Off Topic Expired replays?

Yeah, I haven't been able to get a replay from the 7th until now to work. I know after 30ish days all replays are deleted, but with the new url changes I can't even get a replay that expired right now to work. I'm curious about how you're getting the time stamp because it doesn't seem my timestamp method works anymore.
 
Comment
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!)
https://www.liveme.com/us/v/15802618417215637481/index.html?f=liveOMG
 
Comment
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.
 
Comment
D

Deleted member 1187380

Guest
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.
 
Comment
part of a small script i wrote

usage: calclive.sh video-id

example: https://pro.liveme.com/br/v/16322613567506544866/index.html?f=liveOMG

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
 
Comment

Infinite Void

Banned
Leaker
Aug 10, 2021
94
4,974
Hey,
Request if anyone can get the last 2 Banned/Deleted Replays of her.
Would Appreciate it. Thank You!
 

Attachments

  • IMG_20210928_150139.jpg
    IMG_20210928_150139.jpg
    395.3 KB · Views: 0
Comment
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
 
Comment