-
-
Save konsumer/07b16ff05c02067a58babc94a763b723 to your computer and use it in GitHub Desktop.
Parler is shutdown, but you can still download their videos. Use this on mac or linux. Goes great with this map: https://kylemcdonald.net/parler/map/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ "${1}" == "" ];then | |
echo "Usage: ./getvid.sh <ID>" | |
exit 1 | |
fi | |
URL="http://8.240.242.124/${1:0:2}/${1:2:2}/${1}" | |
curl --header "Host:video.parler.com" "${URL}" --output "${1}.mp4" | |
echo "Saved to ${1}.mp4" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment