ATH-MaaS/Pixelle-Video · error · FileNotFoundError

输入视频片段不存在: {first_clip_path}

Error message

输入视频片段不存在: {first_clip_path}

What it means

generate_video raises FileNotFoundError when first_clip_path (the input video segment for video-to-video continuation) points to a non-existent file. Fail-fast validation before any API request.

Source

Thrown at pixelle_video/services/api_services/video_dashscope.py:184

            reference_audio_path: 可选参考音频/音色路径(r2v)
            audio_path: 可选驱动音频本地路径(wan2.7)

        Returns:
            video_url: 远端视频 URL

        Raises:
            FileNotFoundError: 输入图片不存在
            RuntimeError: API 调用或下载失败
        """
        if VideoSynthesis is None:
            raise RuntimeError("dashscope package not installed. Run: pip install dashscope")

        if image_path and not os.path.exists(image_path):
            raise FileNotFoundError(f"输入图片不存在: {image_path}")
        if last_image_path and not os.path.exists(last_image_path):
            raise FileNotFoundError(f"尾帧图片不存在: {last_image_path}")
        if first_clip_path and not os.path.exists(first_clip_path):
            raise FileNotFoundError(f"输入视频片段不存在: {first_clip_path}")
        if reference_image_path and not os.path.exists(reference_image_path):
            raise FileNotFoundError(f"参考图片不存在: {reference_image_path}")
        for ref_image_path in reference_image_paths or []:
            if ref_image_path and not os.path.exists(ref_image_path):
                raise FileNotFoundError(f"参考图片不存在: {ref_image_path}")
        for ref_video_path in reference_video_paths or []:
            if ref_video_path and not os.path.exists(ref_video_path):
                raise FileNotFoundError(f"参考视频不存在: {ref_video_path}")
        if reference_audio_path and not os.path.exists(reference_audio_path):
            raise FileNotFoundError(f"参考音频不存在: {reference_audio_path}")
        if audio_path and not os.path.exists(audio_path):
            raise FileNotFoundError(f"驱动音频不存在: {audio_path}")

        logger.info(f"DashscopeVideoClient: model={model}, prompt={prompt[:60]}...")

        if self._is_text_to_video_model(model):
            call_kwargs = {
                "api_key": self.api_key,

View on GitHub (pinned to 848b054e4f)

Solutions

  1. Check os.path.exists(first_clip_path) before calling and correct the path
  2. Ensure the previous step that produced the clip wrote to the expected save_path
  3. Use absolute paths in pipeline configuration
  4. In Docker/K8s, mount the directory holding the clip

Example fix

// before
client.generate_video(prompt, first_clip_path='tmp/clip.mp4')  # FileNotFoundError
// after
clip = os.path.abspath('tmp/clip.mp4')
assert os.path.exists(clip), f"clip missing: {clip}"
client.generate_video(prompt, first_clip_path=clip)
Defensive patterns

Strategy: validation

Validate before calling

import os
if first_clip_path and not os.path.isfile(first_clip_path):
    raise FileNotFoundError(f'输入视频片段不存在: {first_clip_path}')

Type guard

def is_existing_file(path) -> bool:
    return isinstance(path, str) and os.path.isfile(path)

Try / catch

try:
    video = client.generate_video(prompt, first_clip_path=clip)
except FileNotFoundError as e:
    logging.error(f'Input clip missing: {e}')
    video = None  # regenerate or locate the clip first

Prevention

When it happens

Trigger: generate_video(..., first_clip_path='clip.mp4', ...) where the clip file is missing — e.g. the video was generated in a previous run into another directory, or the extension/name differs.

Common situations: Pipeline where the clip comes from a prior generation step that output to a different save_path; file overwritten/removed by cleanup jobs; wrong cwd for relative paths; not copying the clip into the container.

Understand the failure class

Background: "File not found" and ENOENT errors: why libraries can't find a file that should exist — this error's family across 50 libraries.

Related errors


AI-assisted analysis of ATH-MaaS/Pixelle-Video@848b054e4f (2026-08-30). Data as JSON: /api/errors/20c22ac86ba0a429. Report an issue: GitHub.