Skip to main content

Download view only videos from sharepoint or teams

To Download view only videos from sharepoint or teams, where only link sharing option is visible.

Using Google Chrome => Chromium / (latest) Microsoft Edge / Safari should follow approximately the same flow.

  1. Open the Sharepoint page with the video you want to download

  2. Press F12 or Ctrl + Shift + C on your keyboard to open the browser inspector. (Cmd + Option + C on Mac OS X)

  3. In the top part, click on the Network tab

  4. In the top left part - right below the Network tab - you should see a field with the word "Filter" inside it. Click it to gain focus and type: manifest

  5. Refresh the Sharepoint page

  6. After a few seconds you should now see 1 result in the browser inspector's network part. That should be something looking like:
    videomanifest?provider=spo... => that right there is the manifest URL you will need later on. Right-click on it and copy the link address.

Step 7)

The method I described in my earlier answer is a terminal command and it requires the ffmpeg tool to be installed. It will also depend on what system you are using right now, that might be Windows / Linux / Mac OS X and changes the method how to be able to execute this command.

  • On Windows: Ctrl + R, type this: cmd and press enter.

  • On Mac OS X: Cmd + space, type this: terminal and press enter.

  • On Linux (there are many flavors, but linux users probably already know where to find a terminal prompt.) Ctrl + Alt + T might work - if not... I'm afraid you chose the wrong operating system for your daily needs.

Step 8)

Once the terminal has opened, enter this command to start the download:
ffmpeg -i "https://theURLtoTheManifestYouCopiedHere" -codec copy downloadedVideo.mp4


If you receive a message displaying something like "Command not found" it means that you still have to install ffmpeg on your system. The method to install this also varies on the operating sytem you are using:

  • on Windows: this should help: https://youtu.be/r1AtmY-RMyQ

  • on Mac OS X terminal, type this: brew install ffmpeg

  • on Linux (Debian based) terminal, type this: sudo apt install ffmpeg


You can also download via VLC media player.
  1. Open VLC application
  2. Ctrl + R / Media > Convert/Save
  3. Paste url under network tab
  4. Enter desired output file name and format of video
  5. Now press play button, it will take time but your video will be saved in background.

Comments

Popular posts from this blog

Gujarati/Family relations

Gujarati/Family relations - Wikibooks, open books for an open world In Gujarati culture: These are the "titles" for family members. With the exception of Father, Mother, and Grandparents (who are called by the title only), all of these titles are added after the name of the person. Father: Papa or Bapuji Mother: Ba, Mummy or Maa Brother (also male cousins): Bhai (e.g. Haresh Bhai) Brother's Wife: Bhabhi (e.g. Komal Bhabhi) Sister (also female cousins): Ben (e.g. Mayuri Ben) Older Sister: Didi (e.g. Mayuri Didi) Sister's Husband: Banevi or Jijaji (e.g. mahesh Jijaji) Father's Younger Brother: Kaka (e.g. Rajesh Kaka) Father's Younger Brother's Wife: Kaki (e.g. Komal Kaki) Father's Older Brother: Kaka(e.g. Jiten Kaka) Father's Older Brother's Wife: Kaki (e.g. Bhavna Kaki) Father's Oldest Brother: Mota Kaka(e.g. Jiten Kaka) Father's Oldest Brother's Wife: Moti Kaki (e.g. Bhavna Kaki) Father's Sister: Foi,Fui (also ...

How to turn off Xiaomi "Don't cover the orange area" or "Don't cover the earphone area"

If you get the “Don’t cover the orange/earphone area of the screen” message when you turn on your phone’s screen all the time, it means that you’ve turned on the Prevent pocket dial feature and something is blocking the proximity sensor at the top part of your phone. Sometimes it's quite annoying and simple one-time solution is to press volume up & back button at a time to disable. Infact Prevent pocket dial is a good feature that prevents you from rejecting or picking up calls by accident when the phone is in your pocket by using the proximity sensor. If this feature isn’t working properly on your Xiaomi phone, the check whether anything is blocking area next to earphone where proximity sensor is placed. Mostly it caused by screen guard. You should remove it. If you still facing problem then here’s how to turn it off: 1. From your device’s Settings, tap Lock screen & password. 2. Slide the Prevent pocket dials switch to the off position. (Slider will be greye...

Change default audio track from Android

 Change default audio track of Video from Android itself! It is very annoying to select your desired audio track or language every time after playing a video.  Looking for a way to force play the audio track after playing the video? Here is the solution.  Download termux Follow steps for changing 'track 2' to default audio track. After downloading, type following commands in termux. pkg update && pkg upgrade pkg install ffmpeg -y termux-setup-storage   (android window will open. Search and allow termux for enabling storage access) cd /sdcard (file must be in internal storage) ls (this will give list of folders, navigate to folder containing video file) ffmpeg -i "name of your video file with extension" -map 0:v:0 -map 0:a:1 -map 0:a:0 -c copy "name of your output file with extension" Done!