Install
openclaw skills install @helloene/photoplus-album-downloaderDownload PhotoPlus / 谱时图片直播 albums from a URL or activity ID; use to inspect metadata, filter date tabs, save JSON, or write caption/GPS metadata.
openclaw skills install @helloene/photoplus-album-downloaderUse the upstream Python project helloene/live-album-downloader to download original images from public PhotoPlus live albums. Always confirm the user has permission to download/store the album contents when the album is not clearly theirs.
https://live.photoplus.cn/live/12345678
https://live.photoplus.cn/live/pc/12345678/#/live
python3 /path/to/photoplus-album-downloader/scripts/download_photoplus_album.py \
"https://live.photoplus.cn/live/12345678" \
--workdir /path/to/output-root \
--install-deps
python3 live_album_downloader.py --id 12345678
./PhotoPlus/<activity_id>/ from the command working directory, or ./PhotoPlus/<folder-name>/ when --folder-name is used.Inspect album metadata and tab names before downloading:
python3 scripts/download_photoplus_album.py 12345678 --inspect --install-deps
Download only a date-like tab:
python3 scripts/download_photoplus_album.py 12345678 --tab 3.29 --folder-name "event-3.29"
Save metadata sidecars and preserve useful filenames:
python3 scripts/download_photoplus_album.py 12345678 \
--save-metadata \
--rename-template "{date}_{time}_{name}"
Write album title caption and GPS EXIF/IPTC metadata:
python3 scripts/download_photoplus_album.py 12345678 \
--write-caption \
--gps-lat 31.2304 \
--gps-lon 121.4737
--count N for test runs or partial downloads.--tab all for all photos; date tabs such as 3.28 are matched from photo timestamp metadata by the upstream project.--folder-name NAME to avoid numeric output folders.--dry-run on the wrapper to print the resolved upstream command without network or download work.--repo-dir PATH when an existing clone of helloene/live-album-downloader should be reused.--install-deps when requests, tqdm, or piexif are missing.Wrong ID, re-check that the number came from /live/<id> or /live/pc/<id>, and that the album is public/available.pip/network command with escalation.--inspect or --count 10._2.references/upstream-project.md for the exact upstream repository URL, pinned commit observed while creating this skill, and supported CLI flags.scripts/download_photoplus_album.py as the low-friction command wrapper.