Download videos and audio from YouTube, Facebook, LinkedIn, Instagram, TikTok
Or install CLI directly:
pip install socialmediadl
Download from YouTube, Facebook, LinkedIn, Instagram, TikTok and more
Choose from 4K, 1080p, 720p, 480p or audio-only MP3, WAV, M4A
Download multiple videos at once from a list of URLs
Download entire YouTube playlists with automatic organization
Command-line tool and Python library for automation
MIT licensed, community-driven development on GitHub
Quick download without installation
Full-featured, offline, high-performance
# Install via pip
pip install socialmediadl
# Download a video
socialmediadl https://youtube.com/watch?v=VIDEO_ID -q 1080p
# Download audio
socialmediadl https://youtube.com/watch?v=VIDEO_ID --audio -f mp3
# Batch download
socialmediadl --batch urls.txt -q 720p
from socialmediadl import SocialMediaDownloader
downloader = SocialMediaDownloader(output_dir="downloads")
# Download video
downloader.download_video(
url="https://youtube.com/watch?v=VIDEO_ID",
quality="1080p",
format_type="mp4"
)
# Download audio
downloader.download_audio(
url="https://youtube.com/watch?v=VIDEO_ID",
audio_format="mp3",
quality="best"
)