synapse-file-conversion

Convert incompatible image, video, and audio files to accepted formats before data uploads.

1|1|Updated Jan 14, 2026
One-click install
npx skills add https://github.com/datamaker-kr/synapse-claude-marketplace --skill synapse-file-conversion
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: synapse-file-conversion
Source: https://github.com/datamaker-kr/synapse-claude-marketplace/tree/main/plugins/synapse-upload/skills/file-conversion
Command: npx skills add https://github.com/datamaker-kr/synapse-claude-marketplace --skill synapse-file-conversion

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill addresses the issue of incompatible file formats that prevent successful uploads to data collections by providing a robust file conversion mechanism.

Core Features & Use Cases

  • Format Validation: Checks if source file extensions are compatible with data collection specifications.
  • Image Conversion: Supports conversion of TIFF, BMP, WEBP, and GIF to PNG or JPG using Pillow.
  • Video/Audio Conversion: Utilizes ffmpeg to convert common video (MOV, AVI, MKV, etc.) and audio (WAV, FLAC, OGG, etc.) formats to MP4 or MP3.
  • Use Case: When uploading medical scans in TIFF format to a system that only accepts PNG or JPG, this Skill automatically converts the TIFF files to PNG before the upload process begins.

Quick Start

Use the synapse-file-conversion skill to convert the file located at /data/patient_001/scan.tiff to PNG format.

Frequently Asked Questions about synapse-file-conversion

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I convert TIFF files to PNG for data upload?

To convert TIFF files to PNG for data upload, the Skill validates the source extension and uses Pillow to transform TIFF, BMP, WEBP, and GIF images into PNG or JPG format. This ensures image format compatibility before data ingestion begins.

Can I convert MOV and AVI videos to MP4 before ingestion?

Yes, you can convert MOV and AVI videos to MP4 before ingestion. The Skill utilizes ffmpeg to convert common video formats like MKV to MP4 and audio formats like WAV or FLAC to MP3, ensuring successful data uploads.

Do I need ffmpeg and Pillow installed to run file format conversions?

Yes, you need ffmpeg and Pillow installed to run file format conversions. The Skill requires ffmpeg in your PATH for video and audio processing, and Pillow version 10.0 or higher for image format transformations.

What is the best way to handle incompatible file formats during data uploads?

The best way to handle incompatible file formats during data uploads is using an automated conversion mechanism. This Skill checks if source file extensions match data collection specifications and automatically converts them to compatible formats.

Why does video conversion fail when uploading audio files like FLAC?

Video conversion fails when uploading audio files like FLAC if ffmpeg is not configured correctly. The Skill relies on ffmpeg in your PATH to process audio formats like OGG and WAV into MP3, so missing dependencies will halt format compatibility checks.