Problem
A hidden macOS resource-fork or metadata file consumes naming space in a constrained delivery directory and causes automated downstream import rules to behave unexpectedly.
Solution
Root Cause / Diagnostic:
Automated media watch folders and FTP delivery daemons frequently misinterpret hidden macOS `._` AppleDouble metadata files as actual media containers. When the watch daemon attempts to parse these small metadata headers, it crashes or triggers false import errors.
Actionable Fix:
1. Automated File Purge: Run `dot_clean -m /path/to/delivery/folder` prior to triggering downstream export or FTP synchronization tasks.
2. Watch Folder Regex Filtration: Configure automated ingest daemons with regex file filters to ignore hidden files (`^[^.].*\.(mp4|mov|mxf)$`).
3. Delivery Directory Audit: Check the destination delivery directory via terminal (`ls -la`) to verify zero hidden files or dot-underscore sidecars exist.
Pro Tip:
Configure your automated delivery scripts to execute a `dot_clean` pass immediately before triggering FTP uploads to avoid choking client ingestion servers.
Automated media watch folders and FTP delivery daemons frequently misinterpret hidden macOS `._` AppleDouble metadata files as actual media containers. When the watch daemon attempts to parse these small metadata headers, it crashes or triggers false import errors.
Actionable Fix:
1. Automated File Purge: Run `dot_clean -m /path/to/delivery/folder` prior to triggering downstream export or FTP synchronization tasks.
2. Watch Folder Regex Filtration: Configure automated ingest daemons with regex file filters to ignore hidden files (`^[^.].*\.(mp4|mov|mxf)$`).
3. Delivery Directory Audit: Check the destination delivery directory via terminal (`ls -la`) to verify zero hidden files or dot-underscore sidecars exist.
Pro Tip:
Configure your automated delivery scripts to execute a `dot_clean` pass immediately before triggering FTP uploads to avoid choking client ingestion servers.