CREATE and FUCK your own AI GIRLFRIEND
TRY FOR FREE
x

Discussion recurbate siezed

doesnt work for me. I have free account without vpn and I can watch the first minute of a video, while doing so i click on the stream recorded icon but i have a pop up that says:
"Waiting for the index file to be read.
If this situation continues, consider using the capture mode."
 
Looks like i will have to wait for another solution even with vpn it doesnt work, download finished but green button wont appear. I used hideme vpn., only solution that worked for me was recurbate download button(scripts that add download button for each video).
 
I just threw this together in the last 30 mins, just download the index.m3u8 file when you start the video through the network inspector (make sure the network inspector is open when you start the video)
Fill in the header= with your own information, found in the network inspector after clicking on the index.m3u8
run this python code when in the directory of the index.m3u8

Just download python and put the code in a file recurbate.py,
run pip install requests and then run python recurbate.py
Python:
import requests
import time
header = {
        "Accept":             "",
        "Accept-Language":    "",
        "Origin":             "",
        "Sec-Ch-Ua":          '',
        "Sec-Ch-Ua-Mobile":   "",
        "Sec-Ch-Ua-Platform": '',
        "Sec-Fetch-Dest":     "",
        "Sec-Fetch-Mode":     "",
        "Sec-Fetch-Site":     "",
        "User-Agent":         "",
    }
filename = "index.m3u8"
outputfile = "output.ts"
with open(filename, 'r') as file:
    indexfile = file.read()
index = indexfile.split('\n')
append = False
length = len(index)
for i in range(length):
    if index[i] != "" and index[i][0] != '#':
        trys = 0
        while True:
            if trys > 100:
                print(f"Error Downloading {(index[i]-4)/2}.ts ")
                exit()
            try:
                start = time.time()
                data = requests.get(index[i], headers=header).content
                stop = time.time()
                break
            except:
                trys += 1
        if not append:
            write = 'wb'
            append = True
        else:
            write = 'ab'
        with open(outputfile, write) as file:
                file.write(data)
        remaining = (stop-start)*(length-i)/2/60
        fill = "            "
        print(f"\rDownloaded: {(i/length*100):.1f}%\tRemaining: {remaining:.1f}mins{fill}",end= "")
Use mkvtoolnix to convert to mkv, if you want a mp4, then use OBS to convert mkv to mp4
 
Last edited:
anyone know if stripchat_archiver has come back under a different name or not? there were definitely some models I wish I was able to follow after they moved from CB
 
anyone know if stripchat_archiver has come back under a different name or not? there were definitely some models I wish I was able to follow after they moved from CB

There was no archiver for stripchat that was better than this one, and I don't know if we'll ever see anything like this again. But I'm hoping there's an alternative out there, but I haven't found one yet.
 
I just threw this together in the last 30 mins, just download the index.m3u8 file when you start the video through the network inspector (make sure the network inspector is open when you start the video)
Fill in the header= with your own information, found in the network inspector after clicking on the index.m3u8
run this python code when in the directory of the index.m3u8

Just download python and put the code in a file recurbate.py,
run pip install requests and then run python recurbate.py
Python:
import requests
import time
header = {
        "Accept":             "",
        "Accept-Language":    "",
        "Origin":             "",
        "Sec-Ch-Ua":          '',
        "Sec-Ch-Ua-Mobile":   "",
        "Sec-Ch-Ua-Platform": '',
        "Sec-Fetch-Dest":     "",
        "Sec-Fetch-Mode":     "",
        "Sec-Fetch-Site":     "",
        "User-Agent":         "",
    }
filename = "index.m3u8"
outputfile = "output.ts"
with open(filename, 'r') as file:
    indexfile = file.read()
index = indexfile.split('\n')
append = False
length = len(index)
for i in range(length):
    if index[i] != "" and index[i][0] != '#':
        trys = 0
        while True:
            if trys > 100:
                print(f"Error Downloading {(index[i]-4)/2}.ts ")
                exit()
            try:
                start = time.time()
                data = requests.get(index[i], headers=header).content
                stop = time.time()
                break
            except:
                trys += 1
        if not append:
            write = 'wb'
            append = True
        else:
            write = 'ab'
        with open(outputfile, write) as file:
                file.write(data)
        remaining = (stop-start)*(length-i)/2/60
        fill = "            "
        print(f"\rDownloaded: {(i/length*100):.1f}%\tRemaining: {remaining:.1f}mins{fill}",end= "")
Use mkvtoolnix to convert to mkv, if you want a mp4, then use OBS to convert mkv to mp4
can you create a small low res tutorial please?
 
I'm so sorry I tried my best to search on the net but couldn't figure out what you have saved that script in? Python, pyscript, visual code???
it doesn't matter how you save it, that's why I used notepad there, just have python installed and run, in the terminal, python <filename>, just make sure the requests package is installed by running pip install requests or python -m pip install requests
 
it doesn't matter how you save it, that's why I used notepad there, just have python installed and run, in the terminal, python <filename>, just make sure the requests package is installed by running pip install requests or python -m pip install requests
in my terminal, the download stop in 99%, and the script stop downloading. the output.ts is exist but it has only 178kb size, hence i know that the file i've downloaded should be above 1gb. Is it normal? do i can convert it into mkv? or it's just an error, but the download process doesn't shows any error
 
in my terminal, the download stop in 99%, and the script stop downloading. the output.ts is exist but it has only 178kb size, hence i know that the file i've downloaded should be above 1gb. Is it normal? do i can convert it into mkv? or it's just an error, but the download process doesn't shows any error
My bad, I forgot about other server responses, the reason was either the playlist expired or the header formating was wrong, I attached a fixed version
Python:
import requests
import time
import sys

filename = "index.m3u8"
outputfile = "output.ts"

header = {
        "Accept":             "*/*",
        "Accept-Language":    "en-US,en;q=0.9",
        "Origin":             "https://recu.me",
        "Sec-Ch-Ua":          '"Not_A Brand";v="8", "Chromium";v="120", "Microsoft Edge";v="120"',
        "Sec-Ch-Ua-Mobile":   "?0",
        "Sec-Ch-Ua-Platform": '"Windows"',
        "Sec-Fetch-Dest":     "empty",
        "Sec-Fetch-Mode":     "cors",
        "Sec-Fetch-Site":     "cross-site",
        "User-Agent":         "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0",
    }

class average:
    array = []
    pos = 0
    size = 0
    def __init__(self, size):
        self.size = size
    def add(self, value):
        if self.pos >= self.size:
            self.pos = 0
        while len(self.array) <= self.pos:
            self.array.append(value)
        self.array[self.pos] = value
        self.pos += 1
    def average(self):
        return sum(self.array)/len(self.array)

def download(link,header):
    try:
        data = requests.get(link, headers=header)
        if data.status_code != 200:
            return data.text, data.status_code
        return data.content, None
    except KeyboardInterrupt:
        exit()
    except:
        return None, sys.exc_info()

with open(filename, 'r') as file:
    indexfile = file.read()
index = indexfile.split('\n')
append = False
length = len(index)
buffer = average(25)
for i in range(length):
    if index[i] != "" and index[i][0] != '#':
        trys = 0
        while True:
            if trys > 100:
                print(data)
                if type(err) == int:
                    print(f"Status Code: {err}")
                    print("Either Download Expired or header formating is wrong")
                    exit()
                print(err)
                print(f"Error Downloading {(index[i]-8)/2}.ts ")
                exit()
            start = time.time()
            data, err = download(index[i], header)
            stop = time.time()
            if err == None:
                break
            trys += 1
            print("\rRetrying...",end="")
        if not append:
            write = 'wb'
            append = True
        else:
            write = 'ab'
        with open(outputfile+".ts", write) as file:
                file.write(data)
        data = None
        buffer.add((stop-start)*(length-i)/2/60)
        fill = "            "
        eta = buffer.average()
        unit = "mins"
        if eta > 1440:
            eta = eta/1440
            unit = "days"
        if eta > 60:
            eta = eta/60
            unit = "hrs"
        if eta < 1:
            eta = eta *60
            unit = "secs"
        print(f"\rDownloaded: {(i/length*100):.1f}%\tRemaining: {eta:.1f} {unit}{fill}",end= "")
print(f"\rFinished Download{fill}{fill}")
 
Last edited:
  • Like
Reactions: LS9
It seems like they put a time limit on how long you can download for, seems to be an hour ☠️
 
so they will have the same issue as the last time they called themselves recurbate but they don't seem the brightest of people.
 
ACCESS THE ATTACHED FILE TO YOUR COMPUTER LABELED "RECURBATE WORKAROUND" TO FOLLOW ALONG THE PROMPT
open chrome
hit f12
hit refresh
hit refresh
hit refresh + hit refresh
open recu
select video
hit play
verify u are human and let the process reload the page DO NOT MANUALLY F5 REFRESH
press play
* YOU NOW HAVE 3 MINUTES TO SUCCESSFULLY NAVIGATE THIS PROCEDURE - DON'T FAIL *
go to NETWORK in the f12 tab - IN THE SEARCH BAR ENTER m3u8
COPY THAT LINK AND REFER TO THE ATTACHED FILE ON YOUR COMPUTER LABELED "RECURBATE WORKAROUND" - YOU DID GRAB THIS FROM PAGE THREE FOUR OF THIS THREAD DIDN'T YOU ANON?
remove /hl/
replace the highlighted field with .mp4 (REFER TO THE ATTACHED FILE)
KEEP THE VIDEO YOU ARE CURRENTLY GRABBING - OPEN IN ANOTHER TAB - PAUSE THE VIDEO - DO NOT CLOSE THIS FILE UNTIL THE DOWNLOAD IS COMPLETE
DO NOT LET YOUR COMPUTER GO TO SLEEP- if the file you are grabbing is less than 700mb - chances are you can prob grab another file but due to the 3 minute time-limit - you will have to dual synchronize and grab two files at once - doing the process for two links SIMULTAENOUSLY


if the file you desire is greater than 2gb and beyond (6gb to 16gb)
LOG OFF STEAM/DISCORD- WATCH A GODDAMN MOVIE - KEEP YOUR VLC PLAYLIST ON REPEAT UNTIL THE DOWNLOAD IS COMPLETE - PUT LAWRENCE OF ARABIA AND KHARTOUM ON A PLAYLIST OR GO WATCH TITANIC THATS 6 HOURS - YOU GET THE IDEA
RETHINK YOUR LIFE IF IT TOOK YOU THIS LONG TO GET HERE
 
Last edited by a moderator:
recurbate.me

Nope. That url simply redirects you to recu.me which works fine. Just read the top banner 'New name — same me! Now Recurbate is on Recu.me.'

so they will have the same issue as the last time they called themselves recurbate but they don't seem the brightest of people.

Ironic comment since it takes 2 seconds to double-check.
 
Last edited:
Nope. That url simply redirects you to recu.me which works fine. Just read the top banner 'New name — same me! Now Recurbate is on Recu.me.'



Ironic comment since it takes 2 seconds to double-check.
When I made my comment recu.me redirected to recurbate.me, it seems they fixed it again.
 
Has anyone had any success downloading one the 0 view videos that ultimate users supposedly can see? I can download a regular video easily, but the 0 view video just says "video unavailable" so there is no way to generate a url for the actual video.
 
Back
Top Bottom