Skip to content

Instantly share code, notes, and snippets.

@konsumer
Last active January 21, 2021 23:35
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save konsumer/07b16ff05c02067a58babc94a763b723 to your computer and use it in GitHub Desktop.
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/
#!/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