gamdl
A command-line app for downloading Apple Music songs, music videos and post videos.
Top Related Projects
A feature-rich command-line audio/video downloader
Command-line program to download videos from YouTube.com and other video sites
A libre lightweight streaming front-end for Android.
yewtube, forked from mps-youtube , is a Terminal based YouTube player and downloader. No Youtube API key required.
Download your Spotify playlists and songs along with album art and metadata (from YouTube if a match is found).
Web GUI for youtube-dl
Quick Overview
GAMDL (GitHub Actions Markdown Link) is a GitHub Action that automatically updates markdown links in your repository. It scans your markdown files for broken links, updates them if possible, and creates a pull request with the changes. This tool helps maintain the integrity of documentation and README files in GitHub repositories.
Pros
- Automatically detects and fixes broken links in markdown files
- Creates pull requests for easy review and merging of changes
- Customizable through various input parameters
- Supports both relative and absolute links
Cons
- May require additional configuration for complex repository structures
- Could potentially create unnecessary pull requests for temporary link issues
- Limited to GitHub-hosted repositories
- Might not handle all types of markdown link formats
Getting Started
To use GAMDL in your GitHub repository, add the following workflow file to your .github/workflows directory:
name: Update Markdown Links
on:
schedule:
- cron: '0 0 * * 0' # Run weekly
workflow_dispatch: # Allow manual triggering
jobs:
update-links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update Markdown Links
uses: glomatico/gamdl@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
This workflow will run weekly and can also be triggered manually. Customize the cron schedule and other input parameters as needed for your project.
Competitor Comparisons
A feature-rich command-line audio/video downloader
Pros of yt-dlp
- More comprehensive support for various video platforms and formats
- Actively maintained with frequent updates and bug fixes
- Extensive documentation and community support
Cons of yt-dlp
- Larger codebase and potentially more complex to use
- May have more dependencies and system requirements
Code Comparison
yt-dlp:
from yt_dlp import YoutubeDL
ydl_opts = {}
with YoutubeDL(ydl_opts) as ydl:
ydl.download(['https://www.youtube.com/watch?v=dQw4w9WgXcQ'])
gamdl:
import gamdl
gamdl.download('https://www.youtube.com/watch?v=dQw4w9WgXcQ')
yt-dlp offers more configuration options and flexibility, while gamdl provides a simpler interface for basic downloading tasks. yt-dlp's extensive feature set and active development make it suitable for more complex use cases, whereas gamdl might be preferable for users seeking a lightweight solution with minimal setup.
Command-line program to download videos from YouTube.com and other video sites
Pros of youtube-dl
- Extensive support for a wide range of websites and platforms
- Well-established project with a large community and frequent updates
- Robust features including playlist downloading and format selection
Cons of youtube-dl
- Written in Python, which may be slower than Go for some operations
- More complex installation process, especially on Windows
- Larger codebase, potentially making it harder to maintain or contribute to
Code Comparison
youtube-dl (Python):
def _real_extract(self, url):
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
title = self._html_search_regex(r'<title>([^<]+)</title>', webpage, 'title')
return {'id': video_id, 'title': title, 'url': url}
gamdl (Go):
func (e *Extractor) Extract(url string) (*Video, error) {
id := e.extractID(url)
page, err := e.fetchPage(url)
if err != nil {
return nil, err
}
title := e.extractTitle(page)
return &Video{ID: id, Title: title, URL: url}, nil
}
The code comparison shows that both projects follow similar patterns for extracting video information, but gamdl's Go implementation may be more concise and potentially faster. However, youtube-dl's Python code might be more accessible to a wider range of contributors due to Python's popularity.
A libre lightweight streaming front-end for Android.
Pros of NewPipe
- More comprehensive feature set, including background playback and downloads
- Larger community and more active development
- Better UI/UX with a polished, native Android look and feel
Cons of NewPipe
- Larger app size due to more features and dependencies
- May be overwhelming for users who only need basic YouTube functionality
- Requires more frequent updates to maintain compatibility with YouTube changes
Code Comparison
NewPipe (Java):
@Override
protected void onCreateMainFragment() {
if (getIntent().hasExtra(Constants.KEY_OPEN_SEARCH)) {
addFragment(new SearchFragment());
} else {
addFragment(new MainFragment());
}
}
gamdl (Python):
def download_video(url, output_path):
ydl_opts = {
'outtmpl': output_path,
'format': 'bestaudio/best',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
'preferredquality': '192',
}],
}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download([url])
NewPipe is a full-featured YouTube client for Android, while gamdl is a simpler command-line tool for downloading YouTube videos. NewPipe offers a richer user experience but comes with a larger footprint, whereas gamdl is more lightweight and focused on a single task.
yewtube, forked from mps-youtube , is a Terminal based YouTube player and downloader. No Youtube API key required.
Pros of yewtube
- More mature project with a larger community and longer development history
- Offers a text-based interface for browsing and playing YouTube content
- Supports playlists and user subscriptions
Cons of yewtube
- Limited to YouTube content only
- Requires more system resources due to its broader feature set
- Less focused on audio-only downloads compared to gamdl
Code comparison
yewtube:
def play_audio(vid, seek=None, repeat=False, override=False):
""" Play audio. Return status of play. """
if not override:
if g.preload_disabled:
screen.writestatus("preload disabled")
else:
preload(vid, audio=True)
return _play(vid, seek=seek, repeat=repeat, audio=True)
gamdl:
def download_audio(url, output_dir):
ydl_opts = {
'format': 'bestaudio/best',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
'preferredquality': '192',
}],
'outtmpl': os.path.join(output_dir, '%(title)s.%(ext)s'),
}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download([url])
Download your Spotify playlists and songs along with album art and metadata (from YouTube if a match is found).
Pros of spotify-downloader
- More mature project with a larger community and more frequent updates
- Supports downloading entire playlists and albums in addition to individual tracks
- Offers a web UI option for easier use by non-technical users
Cons of spotify-downloader
- Slower download speeds compared to gamdl
- Requires more dependencies and has a more complex setup process
- Limited to Spotify as the sole music source
Code Comparison
spotify-downloader:
from spotdl import Spotdl
spotdl = Spotdl(client_id="your_client_id", client_secret="your_client_secret")
songs = spotdl.search(["song_name"])
spotdl.download_songs(songs)
gamdl:
from gamdl import Downloader
downloader = Downloader()
downloader.download("song_name")
The code comparison shows that gamdl has a simpler API and requires less setup, while spotify-downloader offers more flexibility in searching and downloading multiple songs at once.
Both projects aim to provide easy access to music downloads, but they differ in their approach and feature set. spotify-downloader focuses exclusively on Spotify and offers more comprehensive playlist and album support, while gamdl is designed for simplicity and faster downloads across multiple platforms.
Web GUI for youtube-dl
Pros of AllTube
- More comprehensive web interface for video downloading
- Supports a wider range of video hosting platforms
- Better documentation and user guides
Cons of AllTube
- Larger codebase, potentially more complex to maintain
- Requires a web server to run, less portable than GAMDL
- May have higher resource requirements due to web interface
Code Comparison
AllTube (PHP):
public function getVideo(string $url, string $format = null, string $password = null, string $username = null)
{
$video = new Video($url, $format, $password, $username);
$video->getJson();
return $video;
}
GAMDL (Python):
def download_video(url, output_path=None):
ydl_opts = {'outtmpl': output_path or '%(title)s.%(ext)s'}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download([url])
The code snippets show different approaches: AllTube uses a Video class for handling downloads, while GAMDL directly utilizes youtube-dl for a more straightforward download process. AllTube's approach allows for more flexibility in handling various video sources, while GAMDL's implementation is simpler and more focused on YouTube downloads.
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
Gamdl (Glomatico's Apple Music Downloader)
A command-line app for downloading Apple Music songs, music videos and post videos.
Join our Discord Server: https://discord.gg/aBjMEZ9tnq
⨠Features
- ðµ High-Quality Songs - Download songs in AAC 256kbps and other codecs
- ð¬ High-Quality Music Videos - Download music videos in resolutions up to 4K
- ð Synced Lyrics - Download synced lyrics in LRC, SRT, or TTML formats
- ð·ï¸ Rich Metadata - Automatic tagging with comprehensive metadata
- ð¤ Artist Support - Download all albums or music videos from an artist
- âï¸ Highly Customizable - Extensive configuration options for advanced users
ð Prerequisites
Required
- Python 3.10 or higher
- Apple Music Cookies - Export your browser cookies in Netscape format while logged in with an active subscription at the Apple Music website:
- Firefox: Export Cookies
- Chromium: Get cookies.txt LOCALLY
Dependencies
Add these tools to your system PATH or specify their paths via command-line arguments or the config file. The tools needed depend on which audio quality, video format, and download mode you want. Use the table below to find the required tools for your use case:
| Use Case | Configuration | Required Tools |
|---|---|---|
| Songs in Legacy Codecs | song_codec_priority: aac-legacy|aac-he-legacy | None |
| Songs in Non Legacy Codecs | song_codec_priority: aac|aac-he|aac-binaural|aac-downmix|aac-he-binaural|aac-he-downmix|atmos|ac3use_wrapper: true | Wrapper |
| Music Videos | music_video_remux_mode: ffmpeg | FFmpeg mp4decrypt |
music_video_remux_mode: mp4box | MP4Box mp4decrypt | |
| Faster Downloads | download_mode: nm3u8dlre | N_m3u8DL-RE |
Tool Reference
| Tool | Download | Purpose |
|---|---|---|
| FFmpeg | Windows / Linux | Required for music video remuxing with FFmpeg mode |
| MP4Box | Download | Alternative for music video remuxing |
| mp4decrypt | Download | Decrypts MP4 files when used with MP4Box |
| N_m3u8DL-RE | Download | Faster download alternative |
| Wrapper | Download | For downloading songs in ALAC and other experimental codecs |
ð¦ Installation
-
Install Gamdl via pip:
pip install gamdl -
Set up the cookies file:
- Place the cookies file in the working directory as
cookies.txt, or - Specify the path using
--cookies-pathor in the config file
- Place the cookies file in the working directory as
-
Optional: Set up tools (only if you need the functionality)
See the Dependencies section to determine which tools you need based on your use case, then follow the Tool Reference for download and installation instructions.
ð Usage
gamdl [OPTIONS] URLS...
Supported URL Types
- Songs
- Albums (Public/Library)
- Playlists (Public/Library)
- Music Videos
- Artists
- Post Videos
- Apple Music Classical
Examples
Download a song:
gamdl "https://music.apple.com/us/album/never-gonna-give-you-up-2022-remaster/1624945511?i=1624945512"
Download an album:
gamdl "https://music.apple.com/us/album/whenever-you-need-somebody-2022-remaster/1624945511"
Download from an artist:
gamdl "https://music.apple.com/us/artist/rick-astley/669771"
Interactive Prompt Controls:
| Key | Action |
|---|---|
| Arrow keys | Move selection |
| Space | Toggle selection |
| Ctrl + A | Select all |
| Enter | Confirm selection |
âï¸ Configuration
Configure Gamdl using command-line arguments or a config file.
Config file location:
- Linux:
~/.gamdl/config.ini - Windows:
%USERPROFILE%\.gamdl\config.ini
The file is created automatically on first run. Command-line arguments override config values.
Configuration Options
| Option | Description | Default |
|---|---|---|
| General Options | ||
--read-urls-as-txt, -r | Read URLs from text files | false |
--config-path | Config file path | <home>/.gamdl/config.ini |
--log-level | Logging level | INFO |
--log-file | Log file path | - |
--no-exceptions | Don't print exceptions | false |
--artist-auto-select | Automatically select artist content to download (artist URLs) | - |
--database-path | Path to the SQLite database file for registering downloaded media | - |
--no-config-file, -n | Don't use a config file | false |
| Apple Music Options | ||
--cookies-path, -c | Cookies file path | ./cookies.txt |
--wrapper-account-url | Wrapper account URL | http://127.0.0.1:30020 |
--language, -l | Metadata language | en-US |
| Output Options | ||
--cover-format | Cover format | jpg |
--cover-size | Cover size in pixels | 1200 |
--wvd-path | .wvd file path | - |
--wrapper-m3u8-ip | Wrapper m3u8 IP address and port | - |
| Song Options | ||
--synced-lyrics-format | Synced lyrics format | lrc |
--song-codec-priority | Comma-separated codec priority | aac-legacy |
--use-album-date | Use album release date for songs | false |
--no-synced-lyrics | Don't download synced lyrics | false |
--synced-lyrics-only | Download only synced lyrics | false |
| Music Video Options | ||
--music-video-resolution | Max music video resolution | 1080p |
--music-video-codec-priority | Comma-separated codec priority | h264,h265 |
--music-video-remux-mode | Remux mode | ffmpeg |
--music-video-remux-format | Music video remux format | m4v |
| Post Video Options | ||
--uploaded-video-quality | Post video quality | best |
| Download & Path Options | ||
--output-path, -o | Output directory path | ./Apple Music |
--temp-path | Temporary directory path | . |
--nm3u8dlre-path | N_m3u8DL-RE executable path | N_m3u8DL-RE |
--mp4decrypt-path | mp4decrypt executable path | mp4decrypt |
--ffmpeg-path | FFmpeg executable path | ffmpeg |
--mp4box-path | MP4Box executable path | MP4Box |
--use-wrapper | Use wrapper for decrypting songs | false |
--wrapper-decrypt-ip | Wrapper decryption server IP | 127.0.0.1:10020 |
--download-mode | Download mode | ytdlp |
| Template Options | ||
--album-folder-template | Album folder template | {album_artist}/{album} |
--compilation-folder-template | Compilation folder template | Compilations/{album} |
--no-album-folder-template | No album folder template | {artist}/Unknown Album |
--playlist-folder-template | Playlist folder template | Playlists/{playlist_artist}/{playlist_title} |
--single-disc-file-template | Single disc file template | {track:02d} {title} |
--multi-disc-file-template | Multi disc file template | {disc}-{track:02d} {title} |
--no-album-file-template | No album file template | {title} |
--playlist-file-template | Playlist file template | Playlists/{playlist_artist}/{playlist_title} |
--date-tag-template | Date tag template | %Y-%m-%dT%H:%M:%SZ |
--exclude-tags | Comma-separated tags to exclude | - |
--truncate | Max filename length | - |
| File Output Options | ||
--overwrite | Overwrite existing files | false |
--save-cover, -s | Save cover as separate file | false |
--save-playlist | Save M3U8 playlist file | false |
Template Variables
Tags for templates and exclude-tags:
album,album_artist,album_idartist,artist_idcomposer,composer_iddate(supports strftime format:{date:%Y})disc,disc_totalmedia_typeplaylist_artist,playlist_id,playlist_title,playlist_tracktitle,title_idtrack,track_total
Tags for exclude-tags only:
album_sort,artist_sort,composer_sort,title_sortcomment,compilation,copyright,cover,gapless,genre,genre_id,lyrics,rating,storefront,xidall(special: skip all tagging)
Logging Level
DEBUG,INFO,WARNING,ERROR
Download Mode
ytdlp,nm3u8dlre
[!NOTE]
- yt-dlp is only used as a file download library. Media is still fetched directly from Apple Music's servers, and yt-dlp is only responsible for handling the file download process.
Remux Mode
ffmpegmp4box- Preserve the original closed caption track in music videos and some other minor metadata
Cover Format
jpgpngraw- Raw format as provided by the artist (requiressave_coverto be enabled as it doesn't embed covers into files)
Metadata Language
Use ISO 639-1 language codes (e.g., en-US, es-ES, ja-JP, pt-BR). Don't always work for music videos.
Song Codecs
Stable:
aac-legacy- AAC 256kbps 44.1kHzaac-he-legacy- AAC-HE 64kbps 44.1kHz
Experimental (may not work due to API limitations):
aac- AAC 256kbps up to 48kHzaac-he- AAC-HE 64kbps up to 48kHzaac-binaural- AAC 256kbps binauralaac-downmix- AAC 256kbps downmixaac-he-binaural- AAC-HE 64kbps binauralaac-he-downmix- AAC-HE 64kbps downmixatmos- Dolby Atmos 768kbpsac3- AC3 640kbpsalac- ALAC up to 24-bit/192kHz (unsupported)ask- Interactive experimental codec selection
Synced Lyrics Format
lrcsrt- SubRip subtitle format (more accurate timing)ttml- Native Apple Music format (not compatible with most media players)
Music Video Codecs
h264h265ask- Interactive codec selection
Music Video Resolutions
- H.264:
240p,360p,480p,540p,720p,1080p - H.265 only:
1440p,2160p
Music Video Remux Formats
m4v,mp4
Post Video Quality
best- Up to 1080p with AAC 256kbpsask- Interactive quality selection
Artist Auto-Select Options
main-albumscompilation-albumslive-albumssingles-epsall-albumstop-songsmusic-videos
âï¸ Wrapper
Use the wrapper to download songs in ALAC and other experimental codecs without API limitations. Cookies are not required when using the wrapper.
Setup Instructions
- Start the wrapper server - Run the wrapper server
- Enable wrapper in Gamdl - Use
--use-wrapperflag or setuse_wrapper = truein config - Run Gamdl - Download as usual with the wrapper enabled
ð Embedding
Use Gamdl as a library in your Python projects:
import asyncio
from gamdl.api import AppleMusicApi
from gamdl.downloader import (
AppleMusicBaseDownloader,
AppleMusicDownloader,
AppleMusicMusicVideoDownloader,
AppleMusicSongDownloader,
AppleMusicUploadedVideoDownloader,
)
from gamdl.interface import (
AppleMusicBaseInterface,
AppleMusicInterface,
AppleMusicMusicVideoInterface,
AppleMusicSongInterface,
AppleMusicUploadedVideoInterface,
)
async def main():
# Create AppleMusicApi instance from cookies
apple_music_api = await AppleMusicApi.create_from_netscape_cookies(
cookies_path="cookies.txt",
)
# Check subscription
if not apple_music_api.active_subscription:
print("No active Apple Music subscription")
return
# Create base interface
base_interface = await AppleMusicBaseInterface.create(
apple_music_api=apple_music_api,
)
# Create specialized interfaces
song_interface = AppleMusicSongInterface(
base=base_interface,
)
music_video_interface = AppleMusicMusicVideoInterface(
base=base_interface,
)
uploaded_video_interface = AppleMusicUploadedVideoInterface(
base=base_interface,
)
# Create main interface
interface = AppleMusicInterface(
song=song_interface,
music_video=music_video_interface,
uploaded_video=uploaded_video_interface,
)
# Create base downloader
base_downloader = AppleMusicBaseDownloader(
interface=interface,
)
# Create specialized downloaders
song_downloader = AppleMusicSongDownloader(base=base_downloader)
music_video_downloader = AppleMusicMusicVideoDownloader(
base=base_downloader,
)
uploaded_video_downloader = AppleMusicUploadedVideoDownloader(base=base_downloader)
# Create main downloader
downloader = AppleMusicDownloader(
song=song_downloader,
music_video=music_video_downloader,
uploaded_video=uploaded_video_downloader,
)
# Download from URL
url = "https://music.apple.com/us/album/never-gonna-give-you-up-2022-remaster/1624945511?i=1624945512"
download_queue = []
async for media in downloader.get_download_item_from_url(url):
download_queue.append(media)
for download_item in download_queue:
try:
await downloader.download(download_item)
except Exception as e:
print(f"Error downloading: {e}")
if __name__ == "__main__":
asyncio.run(main())
ð License
MIT License - see LICENSE file for details
ð¤ Contributing
Currently, I'm not interested in reviewing pull requests that change or add features. Only critical bug fixes will be considered. However, feel free to open issues for bugs or feature requests.
Top Related Projects
A feature-rich command-line audio/video downloader
Command-line program to download videos from YouTube.com and other video sites
A libre lightweight streaming front-end for Android.
yewtube, forked from mps-youtube , is a Terminal based YouTube player and downloader. No Youtube API key required.
Download your Spotify playlists and songs along with album art and metadata (from YouTube if a match is found).
Web GUI for youtube-dl
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot