Skip to main content

Typed forced-alignment task-adapter interface — ForcedAlignmentAdapter ABC, ForcedAlignResult/ForcedAlignItem wire DTOs, and forced-alignment persistence helpers.

Project description

cjm-forced-alignment-adapter-interface

Install latest from the GitHub [repository][repo]:

pip install cjm_forced_alignment_adapter_interface

Project Structure

nbs/
├── adapter.ipynb # The typed forced-alignment task contract — `ForcedAlignmentAdapter` ABC +
├── core.ipynb    # Standardized word-level forced-alignment DTOs — wire-registered so
└── storage.ipynb # Standardized SQLite storage for forced alignment results with content hashing

Total: 3 notebooks

Module Dependencies

graph LR
    adapter["adapter<br/>Forced Alignment Adapter"]
    core["core<br/>Core Data Structures"]
    storage["storage<br/>Forced Alignment Storage"]

    adapter --> core

1 cross-module dependencies detected

CLI Reference

No CLI commands found in this project.

Module Overview

Detailed documentation for each module in the project:

Forced Alignment Adapter (adapter.ipynb)

The typed forced-alignment task contract — ForcedAlignmentAdapter ABC +

Import

from cjm_forced_alignment_adapter_interface.adapter import (
    ForcedAlignmentToolProtocol,
    ForcedAlignmentAdapter
)

Classes

@runtime_checkable
class ForcedAlignmentToolProtocol(Protocol):
    """
    PROVISIONAL structural contract for forced-alignment-capable tools.
    
    Mirrors the fused-era surface (task-shaped `execute`); re-derived from
    native tool surfaces when the Option C cascade splits tools (stage 8).
    """
    
    def execute(self, audio: Union[str, Path], text: str, **kwargs) -> Any: ...
class ForcedAlignmentAdapter(TaskAdapter):
    """
    Typed forced-alignment task adapter: model-ready audio + transcript
    text in, `ForcedAlignResult` (word-level timings) out.
    
    Input contract (carried over from the fused-era ForcedAlignmentPlugin):
    the caller guarantees MODEL-READY audio; `text` is the transcript to
    align against the audio.
    
    Persistence sits BESIDE the task method: the storage module's
    `ForcedAlignmentStorage` is the cache / persist seam — note the
    FOUR-key cache identity (`audio_path`, `audio_hash`, `text_hash`,
    `config_hash`): the task input is the (audio, transcript) PAIR, so the
    text hash is part of the cache key (unlike transcription's three-key).
    
    The result DTO is wire-registered ("forced_alignment.result"): items
    arrive at the host as typed `ForcedAlignItem`s, not dicts.
    """
    
    def align(
            self,
            audio: Union[str, Path],  # Path to MODEL-READY audio (converted upstream)
            text: str,                # Transcript text to align against the audio
            **kwargs,                 # Adapter-specific options (language, ...)
        ) -> ForcedAlignResult:       # Word-level alignment output
        "Align transcript text to model-ready audio at word level."

Core Data Structures (core.ipynb)

Standardized word-level forced-alignment DTOs — wire-registered so

Import

from cjm_forced_alignment_adapter_interface.core import (
    ForcedAlignItem,
    ForcedAlignResult
)

Classes

@dataclass
class ForcedAlignItem:
    "A single word-level alignment result."
    
    text: str  # The aligned word (punctuation typically stripped by model)
    start_time: float  # Start time in seconds
    end_time: float  # End time in seconds
@dataclass
class ForcedAlignResult:
    "Standardized output for all forced alignment plugins."
    
    items: List[ForcedAlignItem]  # Word-level alignments
    metadata: Dict[str, Any] = field(...)  # Plugin-specific metadata
    
    def from_dict(
        "Reconstruct from a wire payload, re-typing nested items.

Nested-DTO reconstruction is why this class defines its own
`from_dict` instead of relying on @wire_type's flat default
(which would leave `items` as plain dicts)."

Forced Alignment Storage (storage.ipynb)

Standardized SQLite storage for forced alignment results with content hashing

Import

from cjm_forced_alignment_adapter_interface.storage import (
    ForcedAlignmentRow,
    ForcedAlignmentStorage
)

Classes

@dataclass
class ForcedAlignmentRow:
    "A single row from the forced_alignments table."
    
    job_id: str  # Unique job identifier
    audio_path: str  # Path to the source audio file
    audio_hash: str  # Hash of source audio in "algo:hexdigest" format
    text: str  # Input transcript text that was aligned
    text_hash: str  # Hash of input text in "algo:hexdigest" format
    config_hash: str  # Hash of the effective alignment config used
    items: Optional[List[Dict[str, Any]]]  # Serialized ForcedAlignItems
    metadata: Optional[Dict[str, Any]]  # Plugin metadata
    created_at: Optional[float]  # Unix timestamp
class ForcedAlignmentStorage:
    def __init__(
        self,
        db_path: str  # Absolute path to the SQLite database file
    )
    "Standardized SQLite storage for forced alignment results."
    
    def __init__(
            self,
            db_path: str  # Absolute path to the SQLite database file
        )
        "Initialize storage, create table, run migrations, and build indexes."
    
    def save(
            self,
            job_id: str,        # Unique job identifier
            audio_path: str,    # Path to the source audio file
            audio_hash: str,    # Hash of source audio in "algo:hexdigest" format
            text: str,          # Input transcript text
            text_hash: str,     # Hash of input text in "algo:hexdigest" format
            config_hash: str,   # Hash of the effective alignment config
            items: Optional[List[Dict[str, Any]]] = None,  # Serialized ForcedAlignItems
            metadata: Optional[Dict[str, Any]] = None       # Plugin metadata
        ) -> None
        "Save or replace a forced alignment result (upsert by audio_path + text_hash + config_hash)."
    
    def save_with_logging(
            self,
            *,
            job_id: str,        # Unique job identifier
            audio_path: str,    # Path to the source audio file
            audio_hash: str,    # Hash of source audio in "algo:hexdigest" format
            text: str,          # Input transcript text
            text_hash: str,     # Hash of input text in "algo:hexdigest" format
            config_hash: str,   # Hash of the effective alignment config
            items: Optional[List[Dict[str, Any]]] = None,  # Serialized ForcedAlignItems
            metadata: Optional[Dict[str, Any]] = None,      # Plugin metadata
            logger: Optional[logging.Logger] = None         # Optional logger for success/failure messages
        ) -> bool:  # True if saved; False if the save failed (error logged, not raised)
        "Save a result, logging success/failure. Failures are logged and swallowed (returns False).

Centralizes the try/save/log/except block every forced-alignment plugin reimplements.
Returns True on success so callers can gate post-save side effects on the result."
    
    def get_cached(
            self,
            audio_path: str,   # Path to the source audio file
            audio_hash: str,   # Content hash of the audio (cache miss if the file changed)
            text_hash: str,    # Hash of the input transcript text (part of the cache key)
            config_hash: str   # Hash of the effective alignment config
        ) -> Optional[ForcedAlignmentRow]:  # Cached row or None
        "Retrieve a content-correct cached alignment for an (audio, transcript) pair.

Matches on audio_path + audio_hash + text_hash + config_hash. A changed audio
file (new audio_hash) misses even if a stale row exists at the same
(audio_path, text_hash, config_hash)  the next save() replaces it."
    
    def get_by_job_id(
            self,
            job_id: str  # Job identifier to look up
        ) -> Optional[ForcedAlignmentRow]:  # Row or None if not found
        "Retrieve a forced alignment result by job ID."
    
    def list_jobs(
            self,
            limit: int = 100  # Maximum number of rows to return
        ) -> List[ForcedAlignmentRow]:  # List of forced alignment rows
        "List forced alignment jobs ordered by creation time (newest first)."
    
    def verify_audio(
            self,
            job_id: str  # Job identifier to verify
        ) -> Optional[bool]:  # True if audio matches, False if tampered, None if job not found
        "Verify the source audio file still matches its stored hash."
    
    def verify_text(
            self,
            job_id: str  # Job identifier to verify
        ) -> Optional[bool]:  # True if text matches, False if tampered, None if job not found
        "Verify the input text still matches its stored hash."

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file cjm_forced_alignment_adapter_interface-0.0.10.tar.gz.

File metadata

File hashes

Hashes for cjm_forced_alignment_adapter_interface-0.0.10.tar.gz
Algorithm Hash digest
SHA256 e871af5da3073b0184671ce4447374d3222f63b7829eee53e1bfe64dbdce6cfe
MD5 5a1363333b50a8511b75625e4a34f013
BLAKE2b-256 e206f326dac9a5196fe880372ae513d7393da6fb219e2d2e96aeef9be1556d38

See more details on using hashes here.

File details

Details for the file cjm_forced_alignment_adapter_interface-0.0.10-py3-none-any.whl.

File metadata

File hashes

Hashes for cjm_forced_alignment_adapter_interface-0.0.10-py3-none-any.whl
Algorithm Hash digest
SHA256 6185f40595359242c83f5ca61a1de96de0074f21a1dd0791ae031bfaa9fc4824
MD5 ee9bd193ee25c9a85b235944bbd63b28
BLAKE2b-256 1bdcba638a7ab1a2cf10893c20337e1a7c1a2d248dbca55b09077b104e99dff9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page