Tools Ways to rip entire TikTok profile?

Dummkopf3000

Bathwater Drinker
Mar 11, 2022
32
1,497
1,242
0fya082315al84db03fa9bf467e3.png
Hey boys, I was wondering if there are any applications, programs or browser extensions that let you rip an entire TikTok profile. I've been looking around for something like that for a while now, but only found old, non-working programs or ones that will only let you download one by one.

If anyone knows something like that it'd be greatly appreciated! Thank you in advance.
 
  • Like
Reactions: nobody5

neolith

egirl shill
Mar 11, 2022
595
37,128
1,793
0fya082315al84db03fa9bf467e3.png
if you're looking for a scriptable or automated way, yt-dlp supports entire profiles without watermark.

i just run this from my terminal. obv change the username, and the path. keep the % sections if you don't recognize youtube-dl.

Code:
Please, Log in or Register to view codes content!
 
Last edited:

neolith

egirl shill
Mar 11, 2022
595
37,128
1,793
0fya082315al84db03fa9bf467e3.png
%(uploader)s puts the videos in a folder named after the user you ripped from. %(id)s gives the filename the video id, and %(ext)s gives it the proper file extension. .mp4 generally. but it's kind of useless atm since tiktok changed some stuff so yt-dlp is incapable of scraping entire tiktok accounts at the moment. but direct tiktok links do work.

so what i do at the moment is i have the Link Gopher extension installed, then i scroll to the bottom of the tiktok profile, open link gopher and choose "extract links by filter" and then i put /video/, then i copy all of those links, and put them in a file named urls.txt, and then i open a command prompt and run

yt-dlp -a urls.txt --convert-thumbnails jpg -o "%(uploader)s/%(id)s.%(ext)s" --add-metadata --embed-thumbnail
 

Casablancas

Bathwater Drinker
Mar 11, 2022
182
15,861
1,349
0fya082315al84db03fa9bf467e3.png
Please, Log in or Register to view quotes
Just tested it out, still working. Go to the profile page you want to download, and at the far right of the address bar will be the Tiktok music note symbol, next to the bookmark star. Click that, and it'll load the preview for all videos then start downloading. Then, next time you click it on that profile, it'll only download videos posted since you last downloaded.
 

BartleSkeet

🟢💥𝕯𝖔 𝖙𝖍𝖊 𝕯𝖊𝖜💥🟢
Mar 11, 2022
245
9,688
1,318
0fya082315al84db03fa9bf467e3.png
Please, Log in or Register to view quotes
Hi there neoliberal, sorry to bother.

So I ended up trying this method, hoping it would work and surprisingly it did.

(Not sure if it stops or bugs when it reaches a certain threshold of videos or something, the profile had like 300 videos and managed to grab them all.)

However it doesn't download them in what, I believe, could be a higher quality.

Ex: Downloading from tiktok directly provides a larger file size, compared to that of the script, not sure if that correlates exactly to higher resolution/quality. (The only real difference, while looking at the property details, are the frame (width & height) and the rates (data, bit and frame)

Anyway, to make a long story short, is this meant to happen? or is there a way to get a higher resolution/quality, if any at all?

Apologies if anything comes across redundant, just trying to get some clarification, as I'm trying familiarize with these programs.
 
Last edited:

neolith

egirl shill
Mar 11, 2022
595
37,128
1,793

neolith

egirl shill
Mar 11, 2022
595
37,128
1,793
0fya082315al84db03fa9bf467e3.png
Since yt-dlp is still broken for crawling user pages, but still works ok for downloading direct video links, I made a bookmarklet for getting them all copied to your clipboard quicker than using other extensions, and typing filters, etc.

JavaScript:
Please, Log in or Register to view codes content!

and then just throw that code into
Please, Log in or Register to see links and images
to make it a clickable function.

so just load up a tiktok profile, scroll to the bottom, click the bookmarklet, then once you have your links, place them into a text file and run this from your terminal

Code:
Please, Log in or Register to view codes content!

if anyone who's proficient at js would add the scrolling to bottom step to it, please do so. I couldn't get a function for that to work right, since I'm a noob at js, and pretty much using copilot to write this for me, since all i know is python.
 
Last edited:

Aztecmonk

Lurker
Nov 26, 2021
5
9
58
0fya082315al84db03fa9bf467e3.png
Hey guys! Can someone guide me through this? Neither of the two ways are working for me.
Which terminal should I enter the command line in? I tried in command prompt and VS but errors pop up. Can someone help me with figuring out what I'm doing wrong?
Sorry for the unnecessary trouble 😅
 

neolith

egirl shill
Mar 11, 2022
595
37,128
1,793
0fya082315al84db03fa9bf467e3.png
Please, Log in or Register to view quotes
yt-dlp has been broken for scraping entire profiles for a bit, but someone forked it and fixed it.

1. make sure python 3 is installed and in your path (its a checkbox you need to select during installation)
2. then enter this command in your cmd or terminal.
Code:
Please, Log in or Register to view codes content!
3. then close any terminals/cmd prompts you have open, and then reopen them to update your paths/profile.
4. then run this command in either your cmd or terminal
Code:
Please, Log in or Register to view codes content!
5. then run this command in either your cmd or terminal
Code:
Please, Log in or Register to view codes content!

updated on 2022-11-14
 
Last edited: