Miscellaneous Leaks

[Guide] Ripping models from Sketchfab

Submitted by HDR, , Thread ID: 152601

Thread Closed

RE: [Guide] Ripping models from Sketchfab

crazyboyy
Novice
Level:
2
Reputation:
0
Posts:
21
Likes:
2
Credits:
0
27-03-2022, 12:31 AM
#321
guys let me know if some of you guys still need the discord server

RE: [Guide] Ripping models from Sketchfab

kurcina00
Newbie
Level:
1
Reputation:
0
Posts:
16
Likes:
1
Credits:
9
27-03-2022, 12:54 AM
#322
These are soo good! I appreciate it!

RE: [Guide] Ripping models from Sketchfab

CGIbro
Lurker
Level:
0
Reputation:
0
Posts:
2
Likes:
0
Credits:
2
27-03-2022, 07:31 PM
#323
27-03-2022, 12:31 AM
crazyboyy Wrote:
guys let me know if some of you guys still need the discord server

Hi , i would like to check it out ... thanks in advance

RE: [Guide] Ripping models from Sketchfab

HoReyModZ12
Novice
Level:
2
Reputation:
0
Posts:
26
Likes:
41
Credits:
26
29-03-2022, 05:42 PM
#324
27-03-2022, 07:31 PM
CGIbro Wrote:
Hi , i would like to check it out ... thanks in advance
Check page 32, I've left a pretty big list with a lot of resources that should help you.

RE: [Guide] Ripping models from Sketchfab

SonicSav
Novice
Level:
2
Reputation:
0
Posts:
22
Likes:
1
Credits:
1
09-05-2022, 02:11 AM
#327
yoo thank you, needed this

RE: [Guide] Ripping models from Sketchfab

v0av0av0av0a
Lurker
Level:
0
Reputation:
0
Posts:
5
Likes:
1
Credits:
2
11-05-2022, 04:12 AM
#328
do you know if this still works?

RE: [Guide] Ripping models from Sketchfab

shandilya
Lurker
Level:
0
Reputation:
0
Posts:
1
Likes:
0
Credits:
1
17-05-2022, 09:51 AM
This post was last modified: 17-05-2022, 09:52 AM by shandilya
#330
21-07-2021, 05:28 PM
Vido Wrote:
Hi guys,
here I will write briefly what you gone need to do to download unencrypted "binz" model's from Sketchfab
Open Chrome and Dev tools (F12), make tool horizontal and go to "Sources" and close all files in sources, hit "Ctrl + Shift + F" and type "this._xhr=" and hit enter, double click on bottom text line to open it
Click on "{}" to format code and hit "Ctrl +F" and find this line of code


Code:
this._xhr = {
              response: i,
              responseText: i


and insert break point at this line "his._xhr =" and reload page with "Ctrl + R", after that you will hit first break point and then go to "Console" and paste this code


Code:
var downloadBlob, downloadURL;

downloadBlob = function(data, fileName, mimeType) {
var blob, url;
blob = new Blob([data], {
  type: mimeType
});
url = window.URL.createObjectURL(blob);
downloadURL(url, fileName);
setTimeout(function() {
  return window.URL.revokeObjectURL(url);
}, 1000);
};

downloadURL = function(data, fileName) {
var a;
a = document.createElement('a');
a.href = data;
a.download = fileName;
document.body.appendChild(a);
a.style = 'display: none';
a.click();
a.remove();
};

downloadBlob(i, 'file.osgjs', 'application/octet-stream');



Hit "Enter" and save it in some directory. Reload page skip first break point by clicking on blue arrow (blue triangle) and paste code once more in Console from above "var downloadBlob, downloadURL; ...." just change name at bottom from "file.osgjs" to "model_file.bin" and that you will see blue bar go to up to half on load indicator . Now go in "Sources" and add second break point where "t ()" is line 33771 and reload page, click twice on first break point (blue triangle) and again hit twice "continue button blue triangle" to continue and click twice to continue once more time and after that you will see your model so paste code in Console and name it "model_file_wireframe.bin" and save it.
When you do all that open "file.osgjs" in text editor and open "find and replace" tool and replace all ."binz" with ".bin.gz".

Open Blender and hit Alt+P and open "file.osgjs" and that's it

Or you can follow my video tutrial which is on mega with other necessary files and codes

mega.nz/folder/cYZxDYIA#QcEoO-VY9kDQJqJYyXpsbA

I followed these instructions and managed to get the textures and the model, but I am not able to get the animations for this model, I tried to use chrome, brave browser and even firefox and microsoft edge. In case of chrome =, firefox and brave, the html\htm file that supposedly helps get the animations is not present and in case of edge, I got the file but I cannot import it in the blender app that I got from the link. Can you please help me? I need this animation, I tried everything, but I am not able to get the animations. Any form of help would be appreciated.
PS - the model I am trying to download is -

https://sketchfab.com/3d-models/ninja-an...c1fafaf060

If someone can help me get animations for this file, I will be very grateful.

Users browsing this thread: 2 Guest(s)