5 ways to download a Twitter video - Aware Online (2024)

We are regularly asked how a video can be downloaded from Twitter. Unlike platforms such as Facebook and Instagram, downloading a video on Twitter is a bit more difficult. This has to do with the fact that videos on Twitter are loaded in a different way. In this blog post, we’ll explain five different ways you can download a video from Twitter.

Twitter video file extensions

In order to download videos from Twitter, it is important to know the filetype of a video on Twitter and how the video is loaded on Twitter. We will show you how to find out how the video is played on Twitter using the video below (https://twitter.com/fdavw/status/1294732687857655810/).

5 ways to download a Twitter video - Aware Online (1)

If you watch the above video on Twitter, unfortunately you do not have the option to save the video with your right mouse button and the option “Save video as …“. Also if you want to find the link to the video via “Inspect element“, or if you look up the video in the source code, you will not be successful. This is because videos are loaded different on Twitter. We will explain exactly how below.

To find out how videos are played on Twitter, navigate to the respective video you wish to save. Open your Browser developer tools via F12 and click on the “Network” tab. Once you’ve done this, refresh the page to view all requests from your web browser. Then click on the “Media” tab, after which you will see the requests below.

5 ways to download a Twitter video - Aware Online (2)

In the image above, you can see that your web browser has sent seven requests to the domain video.twimg.com. You will also see that there are two different file types, a “.m3u8” extension and a “.ts” extension. The M3U8 extension is a file format for multimedia playlists. It is text file that contains information about the location of one or more media files. The extension TS is an abbreviation for “MPEG Transport Stream” and is a file format for the transmission and storage of audio and video files

Have a close look at a m3u8 file

To open the .m3u8 file, right-click on “video.twimg.com” and click “Copy” to copy the URL. Open a new tab and paste the copied URL*. You can now try to open the file with a media player, which will most likely not work. Instead, you can save and view the file with a text editor like “Notepad” (your default Windows notepad) or “Notepad ++“. When you open the file, you will see that the text file referers to other .TS files.

* You can also double click to open the file directly.

5 ways to download a Twitter video - Aware Online (3)

The image above is a screenshot of a part of the downloaded text file. If you look at the contents of the full text file, you will see that there is a link to a .TS file 23 times. These links are 22 times “3.000” and once “2.013“. These numbers represent the duration of the .TS file in seconds and the number of seconds added together results in 68 seconds. This is exactly the duration of the video in seconds. Apparently the .TS files are a sort of cutted videos which form a complete video once they are put together.

How to view a TS file

If you want to open a .TS file, you can do so by copying the URL of the file again or by double clicking the “video.twimg.com” with your left mouse. You will probably find that you can play the file with your Media Player, but the video will only have a duration of three seconds. After all, as we have already seen in the .M3U8 file, the .TS files only last three seconds. So in order to save the entire video, you could save all .TS files individually and then play them seperately or stitch them together*. This is not very practical, so below we explain five different ways to download Twitter videos.

* Make sure to load all .TS files via the browser developer tools first.

Method #1: use youtube-dl

Our favorite tool to download videos from Twitter (and YouTube) is youtube-dl. With this open source* commandline tool downloading videos from various platforms like Twitter and YouTube is fast and easy. Youtube-dl requires the installation of Python, is maintained on Github and can be used in both Windows and Mac OS X environments.

* Because the program is “open source” you can view the source code of the program yourself. The advantage of this is that you have control over what you are doing. After all, you know exactly what the program does and does not do and what happens with your data.

Step 1: install Python & PIP

Before downloading youtube-dl, we recommend you to install Python and PIP . Please have a look at our previous blogpost to learn how to install Python. PIP, included in the Python installation, is needed to install and manage Python packages. Check whether Python and PIP are installed using the commands below in your Windows command prompt (CMD). If you get an error, please go through the steps from our earlier blog post again.

Python
Pip

Step 2: download youtube-dl

Youtube-dl is not included by default in Python, so you must install this program before you can use the program. To install the youtube-dl program via PIP in your Windows command prompt (CMD):

pip install youtube-dl

Step 3: download a video with youtube-dl

To download a video, run the command below. The video will be automatically saved into the user’s folder on the computer.

youtube-dl https://video.twimg.com/ext_tw_video/1294732618374811650/pu/pl/490x270/8BWd_nuHKWqg-px7.m3u8

Step 4: all set! Just play the video

Open the folder where the video is saved and you will see that the video has been automatically converted to a .mp4 file . You can easily play this file via your standard media player.

Method #2: use VLC Mediaplayer

Another way to download videos from Twitter (and YouTube) is through the program VLC Mediaplayer . With this program you can open network streams and automatically convert these streams to MP4 files. You can find out how to do this below.

Step 1: download VLC Mediaplayer

Download VLC Mediaplayer via https://www.videolan.org/vlc/index.nl.html.

Step 2: convert the video

Open VLC Mediaplayer and click “Convert/save as…” below the “Media” tab.

5 ways to download a Twitter video - Aware Online (4)

Click on the “Network” tab and fill in the URL of the video on Twitter. Click on “Convert/save“.

5 ways to download a Twitter video - Aware Online (5)

Next, make sure to check “Profile” “(MP4) ” and select the location where you want to save the video. Then click on “Start” to convert the video and wait.

5 ways to download a Twitter video - Aware Online (6)

Step 3: There you go! Just play the video

The video has now been converted and saved in the location you designated. You can now play the video with your Mediaplayer.

Method #3: use FFMPEG

The program FFMPEG actually is indispensable if you work with videos a lot. For example, please check out nixintel’s blogpost about extracting frames and audio files from videos. Please read on to see how to use FFMPEG to download a video on Twitter.

Step 1: download FFMPEG

Typ in the following commands to download FFMPEG via PIP.

pip install ffmpeg

To check if FFMPEG has been installed successfully, simply type “ffmpeg” in your command prompt. Are you getting an error message? Then we advise you to read this tutorial about installing FFMPEG.

Step 2: download a video

To download a video via FFMPEG, enter the following command in your Windows command prompt (CMD). Make sure that you enter the .m3u8 link and that you can give a name to the video yourself. In our case, the video is just called “video“.

ffmpeg -i https://video.twimg.com/ext_tw_video/1294732618374811650/pu/pl/490x270/8BWd_nuHKWqg-px7.m3u8 video.mp4

Step 3: Let’s go! Play the video

The FFMPEG program will download the video in MP4 file format. The file is automatically saved in the current user’s folder on the computer. You can play this file with your Mediaplayer.

Method #4: use a third party website

Why make it difficult when it can be done easily? After all, there are many websites that allow downloading videos on platforms such as Twitter. A website such as http://twittervideodownloader.com/ is a good example. Just fill in the video URL and click on “Download” to download the video.

5 ways to download a Twitter video - Aware Online (7)

Method #5: use a browse extension

There are various browser extensions developed which extensions can be used to download Twitter videos. Examples of browser extensions are Video Downloader Plus (thanks for the tip Serge Courrier!) and Twitter Media Downloader. You just need to install these extensions and then you can easily download videos on Twitter.

Warning! Please be careful

We strongly advise you to carefully consider whether the use of a tool, website or extension is desired. If you cannot check whether your privacy and safety is being infringed, then you can assume that (at least some) data will be collected about you.

This blog post is only for the purpose of giving you various options for downloading videos on Twitter. For that reason, Aware Online is not liable for the use of the aforementioned tools, websites and extensions.

Want to know more about investigating Twitter?

Would you like to learn more about how to conduct investigations on Twitter? Or how to save videos on other platforms? Or do you have any additions to this article? Please contact us.

Contact

5 ways to download a Twitter video - Aware Online (2024)

FAQs

How can I download videos from Twitter? ›

Follow the steps mentioned below:
  1. Open Twitter.com and find the tweet with the video you want to download on your computer.
  2. Click on the video tweet and copy its URL.
  3. Go to Twitter Video Downloader and paste the copied URL into the box. ...
  4. Right-click the download button next to the resolution.
Jan 2, 2024

How to download a Twitter protected video? ›

🔎Check the steps below to see how to use an online download site:
  1. Open the video you'd like to download and copy its URL. Then, open the official site of KeepVid.
  2. Paste the video's URL to the blank sheet. Click "Go".
  3. A new page will appear. Choose the video format and quality you'd like to download.

How to download a video from Twitter using Inspect Element? ›

Here's how I did it:
  1. Inspect Element: Right-click on the video you want to download and select "Inspect" from the dropdown menu. ...
  2. Find the Video URL: In the developer tools, look for the HTML code related to the video. ...
  3. Paste and Go: Now, paste the URL into a new tab in your browser and hit enter.

How can I download videos? ›

Download videos
  1. Make sure your device is connected to the internet.
  2. Open Google Play Movies & TV .
  3. Tap Library.
  4. Find the movie or TV episode you want to download.
  5. Tap Download .

What is the tool to download Twitter videos? ›

Twitter Vid allows you to download videos on almost any device or platform. This means you can download any Twitter video on iPhone, iPad, Android, iOS, Windows, Mac, or even Linux using TwitterVid.com. You can also install the official Twitter Video Downloader extension on Chrome, Firefox, or Edge.

Why can't i download Twitter videos? ›

Why Can Twitter Videos Not Be Downloaded Directly? Usually, If you can't download a video online, it's often because of copyright policies. But with Twitter videos, there's no built-in save option, so you need to use third-party tools to download them.

How do you download a Twitter video from a private message? ›

Open Twitter and click on Messages in the left-hand sidebar, and then select the DM that has the video you want to download. Click on the Video Downloader PLUS icon in your URL bar. Chrome and Opera (and most browsers) store extensions in the URL bar near the top of the window.

How do I download a video from Twitter without a link? ›

How can I download Twitter videos without the app? Simply prefix the video URL with “sfrom.net/” or “savefrom.net/”. Alternatively, convert Twitter videos to mp4 on the SaveFrom.net site and download directly to your device.

How to download a video using Inspect? ›

Quick Steps
  1. Go to the video you want to download in a web browser.
  2. Right-click the page and select Inspect Element.
  3. Click the Network tab, then the Media tab.
  4. Play the video.
  5. Right-click the URL and select Open in a new tab.
  6. Right-click the video and click Save video as...

How do I extract a video from any website? ›

Use an Online Video Downloader
  1. Access the web page where your desired video is embedded.
  2. Copy the URL of the video you want to download.
  3. Access the video downloader.
  4. Paste the URL of your desired video.
  5. Tap the download button below the box where you've posted the URL.
  6. It will start validating the given URL.
Mar 12, 2024

Can you download videos or gifs from Twitter? ›

Head to https://twittervideodownloader.com/ or a similar site. Paste the GIF link into the corresponding field. Select the option to download the clip. Twitter Video Downloader saves the GIF as an MP4.

How can I download free video footage? ›

Coverr video is a completely free stock footage website that allows you to download and use high-quality stock videos anywhere. And there is no catch! No sign-up needed, no attribution required or hidden tricks anywhere, when we say free, we mean it.

Why won t Twitter let you download videos? ›

Why Can Twitter Videos Not Be Downloaded Directly? Usually, If you can't download a video online, it's often because of copyright policies. But with Twitter videos, there's no built-in save option, so you need to use third-party tools to download them.

How do I download a video from Twitter to my inbox? ›

A Quick Guide: How to Download a Video from Twitter DMs
  1. Method 1: Using a Video Downloader Website. ...
  2. Step 1: Open Twitter and Go To the Video. ...
  3. Step 2: Copy the Video URL. ...
  4. Step 3: Visit a Video Downloader Website. ...
  5. Step 4: Paste the URL and Click Download. ...
  6. Step 5: Choose the Quality and Save the Video.
Sep 6, 2023

Is a Twitter video downloader safe? ›

Twittervideodownloader.com or this site does not host any copyrighted material or support unauthorized file sharing, all the videos are saved directly from twitter CDN.

References

Top Articles
Latest Posts
Article information

Author: Melvina Ondricka

Last Updated:

Views: 6274

Rating: 4.8 / 5 (68 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Melvina Ondricka

Birthday: 2000-12-23

Address: Suite 382 139 Shaniqua Locks, Paulaborough, UT 90498

Phone: +636383657021

Job: Dynamic Government Specialist

Hobby: Kite flying, Watching movies, Knitting, Model building, Reading, Wood carving, Paintball

Introduction: My name is Melvina Ondricka, I am a helpful, fancy, friendly, innocent, outstanding, courageous, thoughtful person who loves writing and wants to share my knowledge and understanding with you.