- Oct 29, 2019
- 19
- 21
- 1,487
-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+
IGUSR="<YOUR USERNAME GOES HERE>"
IGPWD="<PASSWORD GOES HERE>"
IGDLPATH="<FULL PATH TO TARGET DIRECTORY GOES HERE>"
igscrape() {
echo 'entering' ${IGDLPATH};
cd "$IGDLPATH";
echo 'Scraping' $1 'from instagram [types: image]';
instagram-scraper $1 -t image --latest --cookiejar _cookie.txt --template "{year}-{month}-{day}_{urlname}" -u $IGUSR -p $IGPWD
}
igscrapeall() {
echo 'entering' ${IGDLPATH};
cd "$IGDLPATH";
echo 'Scraping LATEST from _batch.txt [types: image]';
instagram-scraper -f _batch.txt -t image --latest --cookiejar _cookie.txt --template "{year}-{month}-{day}_{urlname}" -u $IGUSR -p $IGPWD
}
rdl() {
if [[ -z $2 ]];
then lim="1000";
else lim="$2"
fi
echo 'downloading maximum' $lim 'posts';
python3.9 -m bdfr download . --user $1 --limit $lim --authenticate --sort new --submitted --no-dupes --file-scheme '{POSTID}' --folder-scheme '{REDDITOR}'
}
alias ytd="yt-dlp -f 'bv*+ba/b' "
alias ytdc="yt-dlp -f 'bv*+ba/b' --cookies='<PATH TO A .TXT WITH YT COOKIES>'"
alias cleanjpeg="find . -type f \( -iname \*.jpg -o -iname \*.jpeg \) -exec exiv2 -d a {} \;"