Skip to content

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.

Notifications You must be signed in to change notification settings

loglux/LearnVideoDownloader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

LearnVideoDownloader

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.

Features

  • Download videos in high, medium, or low quality.
  • Download audio files.
  • Download subtitles in specified languages.

Important

  • Downloads videos and audio files in their original quality without re-encoding.

Requirements

  • Python 3.x
  • Requests library
  • BeautifulSoup library

Installation

  1. 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

Usage:

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

Example:

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)

Fetch All Links in a Video Series

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.

Usage:

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.

Example:

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.

Fetch Links from File

In addition to the existing functionality, the script allows you to fetch and download content from a text file containing a list of links.

How to Use:

  1. Save your list of links in a file (for example, links.txt).
  2. 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.

License

This project is licensed under the MIT License.

About

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.

Topics

Resources

Stars

Watchers

Forks

Languages