Skip to content

Instantly share code, notes, and snippets.

@orther
Forked from kylemcdonald/parler-video.md
Created January 14, 2021 17:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orther/ec30ec12826b5bf435234bca0667c934 to your computer and use it in GitHub Desktop.
Save orther/ec30ec12826b5bf435234bca0667c934 to your computer and use it in GitHub Desktop.
How to view a video on Parler.

How to view a video on Parler

Let's say you have a video ID, like wfy02V209EwU taken from this map

The link for the video kiBnNejo0JW0 is at https://video.parler.com/ki/Bn/kiBnNejo0JW0. Notice that the link is: https://video.parler.com/ followed by the first two characters of the video ID, then /, then the next two characters, another /, and the video ID.

But if you click on this, you will get an error.

This is because the Parler video servers are still running (as of January 12) but the Domain Name System (DNS) is not running.

That means that video.parler.com does not get mapped to the video server address correctly.

To fix this, you need to manually patch your system's DNS records. Then you can click on the link.

Mac

  1. Open the Terminal app.
  2. Type sudo nano /etc/hosts
  3. Type your password.
  4. Press the down arrow key until you are past the lines starting with #.
  5. Paste this line: 8.240.242.124 video.parler.com
  6. Type Ctrl+O to save.
  7. Type Ctrl+X to exit.

Windows

Follow these instructions and add the line 8.240.242.124 video.parler.com to your hosts file.

Errors

Some of the videos have been taken down. These will show a message saying "AllAccessDisabled".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment