LearnVideoDownloader is a Python script designed to download videos, audios and subtitles from the Microsoft Learn platform. The script allows users to specify the quality of videos and the preferred languages for subtitles.
- Download videos in high, medium, or low quality.
- Download audio files.
- Download subtitles in specified languages.
- Downloads videos and audio files in their original quality without re-encoding.
- Python 3.x
- Requests library
- BeautifulSoup library
- Clone the repository:
git clone https://github.com/loglux/LearnVideoDownloader.git
Navigate to the project directory:
cd LearnVideoDownloader
Install the required libraries:
pip install requests beautifulsoup4
Edit the urls list in the script to include the URLs of the Microsoft Learn videos you want to download.
Set your preferred languages for subtitles by modifying the preferred_languages list.
Run the script:
python learn_video_helper.py
if __name__ == "__main__":
urls = [
"https://learn.microsoft.com/en-us/shows/on-demand-instructor-led-training-series/ai-050-module-1/",
"https://learn.microsoft.com/en-us/shows/on-demand-instructor-led-training-series/ai-050-module-2/",
# Add more URLs as needed
]
preferred_languages = ['en-us', 'ru-ru'] # Example preferred languages: English and Russian subtitles
for url in urls:
downloader = VideoDownloader(url)
downloader.run(download_high_quality=True,
download_medium_quality=False,
download_low_quality=False,
download_audio=True,
download_captions=True,
preferred_languages=preferred_languages)
The LearnVideoFetcher script extends the functionality of the main project by dynamically generating URLs for a series of videos based on a specified base URL and number of modules.
To fetch all links in a video series, follow these steps: Run the Script:
python fetch_all_links.py [base_url] [num_modules]
Replace [base_url] with any URL from the series and [num_modules] with the total number of modules in the series.
Suppose you have a series with a URL like "https://learn.microsoft.com/en-us/shows/on-demand-instructor-led-training-series/ai-900-module-3" and there are 7 modules in the series. You can generate URLs dynamically by passing the URL as it is:
python fetch_all_links.py https://learn.microsoft.com/en-us/shows/on-demand-instructor-led-training-series/ai-900-module-3 7
This script will automatically generate URLs for modules 1 through 7 and download their associated content.
In addition to the existing functionality, the script allows you to fetch and download content from a text file containing a list of links.
- Save your list of links in a file (for example,
links.txt
). - Run the script, specifying the file path that contains the links:
python fetch_from_file.py links.txt --languages en-us ru-ru
In this command, --languages is an optional argument to specify the preferred languages for subtitles. This script should correctly process each link from your file and perform the necessary operations with each of them, including downloading videos and subtitles.
This project is licensed under the MIT License.