Is it possible to download a video shared over Microsoft SharePoint or 365 when we can watch it but are unable to download it?
Introduction:
Have you ever encountered a situation where you're able to watch a video shared on Microsoft SharePoint or 365, but you can't seem to find a way to download it? In this guide, we'll walk you through a simple solution that empowers you to download these videos using the versatile media converter, ffmpeg.
Solution: Using FFmpeg Video Converter
FFmpeg is a powerful and universal media converter that can handle a wide range of media tasks, including converting and transcoding videos. Follow these steps to download videos that you can watch but can't download directly from Microsoft SharePoint or 365:
Step 1: Install FFmpeg (Version 6.0)
Linux: Use APT or DNF to install FFmpeg.
apt install ffmpeg
Windows: Utilize CHOCO for a quick installation or manually download and install FFmpeg.
choco install ffmpeg
Step 2: Copy the Video Manifest Link
- Open your web browser and navigate to the video you wish to download.
- Start the video playback and then access the browser's inspect tools.
- In the inspect tools, select the "Network" tab and use the filter to search for "videomanifest".
- Reload the video page and let it play for a moment. This action will generate network activity related to the video.
- Within the network activity, locate the "videomanifest" entry and copy the associated link.
Step 3: Download the Video Using FFmpeg
Now that you have the "videomanifest" link, you can use FFmpeg to download the video:
Open a terminal or command prompt and use the following command, replacing "past-link-here" with the copied manifest link and "any-name.mp4" with your preferred filename.
ffmpeg -i "past-link-here" -codec copy any-name.mp4
No comments:
Post a Comment