blender-vse-pipeline
BlenderのVSE(ビデオシーケンスエディター)で、動画・画像・音声の追加、トランジション作成、エフェクト適用、タイムライン構築など、動画編集作業をPythonで自動化し、コマンドラインからVSEのワークフローをスクリプト化するSkill。
📜 元の英語説明(参考)
Automate video editing in Blender's Video Sequence Editor with Python. Use when the user wants to add video, image, or audio strips, create transitions, apply effects, build edit timelines, batch assemble footage, estimate render times, or script any VSE workflow from the command line.
🇯🇵 日本人クリエイター向け解説
BlenderのVSE(ビデオシーケンスエディター)で、動画・画像・音声の追加、トランジション作成、エフェクト適用、タイムライン構築など、動画編集作業をPythonで自動化し、コマンドラインからVSEのワークフローをスクリプト化するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o blender-vse-pipeline.zip https://jpskill.com/download/14696.zip && unzip -o blender-vse-pipeline.zip && rm blender-vse-pipeline.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/14696.zip -OutFile "$d\blender-vse-pipeline.zip"; Expand-Archive "$d\blender-vse-pipeline.zip" -DestinationPath $d -Force; ri "$d\blender-vse-pipeline.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
blender-vse-pipeline.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
blender-vse-pipelineフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Blender VSE パイプライン
概要
Python を使用して Blender の Video Sequence Editor (VSE) でビデオ編集を自動化します。ストリップ (ビデオ、画像、オーディオ) の追加と配置、トランジションの作成、エフェクトの適用、ファイルリストからの編集のアセンブル、最終ビデオのレンダリングをすべてターミナルからヘッドレスで行います。
手順
1. シーケンスエディタの初期化
import bpy
scene = bpy.context.scene
if not scene.sequence_editor:
scene.sequence_editor_create()
sequences = scene.sequence_editor.sequences
scene.frame_start = 1
scene.frame_end = 250
scene.render.fps = 24
2. ストリップの追加
# ビデオストリップ
strip = sequences.new_movie(name="Clip_A", filepath="/path/to/video.mp4", channel=1, frame_start=1)
strip.frame_offset_start = 24 # 開始をトリム (1秒スキップ)
strip.frame_offset_end = 48 # 終了をトリム
# イメージストリップ (指定時間保持)
img = sequences.new_image(name="Title_Card", filepath="/path/to/title.png", channel=2, frame_start=1, fit_method='FIT')
img.frame_final_duration = 72 # 24fps で 3 秒
# イメージシーケンス
import glob
img_files = sorted(glob.glob("/path/to/frames/frame_*.png"))
img_seq = sequences.new_image(name="Render", filepath=img_files[0], channel=1, frame_start=1)
for f in img_files[1:]:
img_seq.elements.append(f.split("/")[-1])
# フェードイン/アウト付きのオーディオストリップ
audio = sequences.new_sound(name="Music", filepath="/path/to/music.mp3", channel=3, frame_start=1)
audio.volume = 0.0
audio.keyframe_insert(data_path="volume", frame=1)
audio.volume = 0.6
audio.keyframe_insert(data_path="volume", frame=24)
audio.volume = 0.6
audio.keyframe_insert(data_path="volume", frame=audio.frame_final_end - 48)
audio.volume = 0.0
audio.keyframe_insert(data_path="volume", frame=audio.frame_final_end)
3. トランジションとエフェクト
# クロスディゾルブ (ストリップはオーバーラップし、異なるチャンネルにある必要があります)
cross = sequences.new_effect(
name="CrossDissolve", type='GAMMA_CROSS', channel=3,
frame_start=clip_a.frame_final_end - 24,
frame_end=clip_b.frame_final_start + 24,
seq1=clip_a, seq2=clip_b
)
# カラーストリップ (単色の背景)
color = sequences.new_effect(name="BlackBG", type='COLOR', channel=1, frame_start=1, frame_end=48)
color.color = (0, 0, 0)
# テキストオーバーレイ
text = sequences.new_effect(name="Title", type='TEXT', channel=4, frame_start=1, frame_end=72)
text.text = "My Video Title"
text.font_size = 80
text.color = (1, 1, 1, 1)
text.location = (0.5, 0.5)
text.align_x = 'CENTER'
text.align_y = 'CENTER'
text.use_shadow = True
# スピードコントロール
speed = sequences.new_effect(name="SlowMo", type='SPEED', channel=5,
frame_start=clip_a.frame_final_start, frame_end=clip_a.frame_final_end, seq1=clip_a)
speed.speed_factor = 0.5
# トランスフォーム (位置、スケール、回転)
transform = sequences.new_effect(name="Transform", type='TRANSFORM', channel=5, frame_start=1, frame_end=100, seq1=clip_a)
transform.scale_start_x = 1.2
transform.scale_start_y = 1.2
4. カラーコレクションのためのストリップモディファイア
strip = sequences["Clip_A"]
bc = strip.modifiers.new(name="BrightContrast", type='BRIGHT_CONTRAST')
bc.bright = 0.1
bc.contrast = 0.15
cb = strip.modifiers.new(name="ColorBalance", type='COLOR_BALANCE')
cb.color_balance.lift = (0.95, 0.95, 1.0)
cb.color_balance.gain = (1.1, 1.05, 0.95)
5. 最終ビデオのレンダリング
scene = bpy.context.scene
scene.render.filepath = "/tmp/final_edit.mp4"
scene.render.image_settings.file_format = 'FFMPEG'
scene.render.ffmpeg.format = 'MPEG4'
scene.render.ffmpeg.codec = 'H264'
scene.render.ffmpeg.audio_codec = 'AAC'
scene.render.ffmpeg.audio_bitrate = 192
scene.render.resolution_x = 1920
scene.render.resolution_y = 1080
# ストリップからフレーム範囲を自動設定
all_strips = scene.sequence_editor.sequences_all
if all_strips:
scene.frame_start = min(s.frame_final_start for s in all_strips)
scene.frame_end = max(s.frame_final_end for s in all_strips)
bpy.ops.render.render(animation=True)
例
例 1: ショットリストから編集を組み立てる
ユーザーリクエスト: 「ビデオクリップからタイムラインを作成し、それらの間にクロスフェードを入れます」
import bpy, os
clips = ["/path/to/shot_01.mp4", "/path/to/shot_02.mp4", "/path/to/shot_03.mp4", "/path/to/shot_04.mp4"]
crossfade_frames = 12
scene = bpy.context.scene
scene.render.fps = 24
if not scene.sequence_editor:
scene.sequence_editor_create()
sequences = scene.sequence_editor.sequences
current_frame = 1
prev_strip = None
for i, clip_path in enumerate(clips):
if prev_strip and crossfade_frames > 0:
current_frame -= crossfade_frames
strip = sequences.new_movie(
name=os.path.splitext(os.path.basename(clip_path))[0],
filepath=clip_path, channel=1 + (i % 2), frame_start=current_frame
)
if prev_strip and crossfade_frames > 0:
sequences.new_effect(name=f"Fade_{i}", type='GAMMA_CROSS', channel=3,
frame_start=current_frame, frame_end=current_frame + crossfade_frames,
seq1=prev_strip, seq2=strip)
current_frame += strip.frame_final_duration
prev_strip = strip
scene.frame_start = 1
scene.frame_end = current_frame
例 2: データからテキストオーバーレイを一括追加する
ユーザーリクエスト: 「特定のタイムコードでテキストタイトルを追加します」
import bpy
titles = [("Introduction", 0, 3), ("Chapter 1", 15, 4), ("Chapter 2", 120, 4), ("Conclusion", 300, 5)]
fps = bpy.context.scene.render.fps
sequences = bpy.context.scene.sequence_editor.sequences
for text_content, start_sec, dur_sec in titles:
start_frame = int(start_sec * fps) + 1
text = sequences.new_effect(name=text_content[:20], type='TEXT', channel=5,
frame_start=start_frame, frame_end=start_frame + int(dur_sec * fps))
text.text = text_content
text.font_size = 60
text.color = (1, 1, 1, 1)
text.location = (0.5, 0.15)
text.align_x = 'CENTER'
text.use_shadow = True
ガイドライン
scene.sequence_editorがNoneの場合は、常にscene.sequence_editor_create()を呼び出してください。sequences.new_movie()、`new_im
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Blender VSE Pipeline
Overview
Automate video editing with Blender's Video Sequence Editor (VSE) using Python. Add and arrange strips (video, image, audio), create transitions, apply effects, assemble edits from file lists, and render final video — all headlessly from the terminal.
Instructions
1. Initialize the sequence editor
import bpy
scene = bpy.context.scene
if not scene.sequence_editor:
scene.sequence_editor_create()
sequences = scene.sequence_editor.sequences
scene.frame_start = 1
scene.frame_end = 250
scene.render.fps = 24
2. Add strips
# Video strip
strip = sequences.new_movie(name="Clip_A", filepath="/path/to/video.mp4", channel=1, frame_start=1)
strip.frame_offset_start = 24 # trim start (skip 1 sec)
strip.frame_offset_end = 48 # trim end
# Image strip (hold for duration)
img = sequences.new_image(name="Title_Card", filepath="/path/to/title.png", channel=2, frame_start=1, fit_method='FIT')
img.frame_final_duration = 72 # 3 seconds at 24fps
# Image sequence
import glob
img_files = sorted(glob.glob("/path/to/frames/frame_*.png"))
img_seq = sequences.new_image(name="Render", filepath=img_files[0], channel=1, frame_start=1)
for f in img_files[1:]:
img_seq.elements.append(f.split("/")[-1])
# Audio strip with fade in/out
audio = sequences.new_sound(name="Music", filepath="/path/to/music.mp3", channel=3, frame_start=1)
audio.volume = 0.0
audio.keyframe_insert(data_path="volume", frame=1)
audio.volume = 0.6
audio.keyframe_insert(data_path="volume", frame=24)
audio.volume = 0.6
audio.keyframe_insert(data_path="volume", frame=audio.frame_final_end - 48)
audio.volume = 0.0
audio.keyframe_insert(data_path="volume", frame=audio.frame_final_end)
3. Transitions and effects
# Cross dissolve (strips must overlap and be on different channels)
cross = sequences.new_effect(
name="CrossDissolve", type='GAMMA_CROSS', channel=3,
frame_start=clip_a.frame_final_end - 24,
frame_end=clip_b.frame_final_start + 24,
seq1=clip_a, seq2=clip_b
)
# Color strip (solid background)
color = sequences.new_effect(name="BlackBG", type='COLOR', channel=1, frame_start=1, frame_end=48)
color.color = (0, 0, 0)
# Text overlay
text = sequences.new_effect(name="Title", type='TEXT', channel=4, frame_start=1, frame_end=72)
text.text = "My Video Title"
text.font_size = 80
text.color = (1, 1, 1, 1)
text.location = (0.5, 0.5)
text.align_x = 'CENTER'
text.align_y = 'CENTER'
text.use_shadow = True
# Speed control
speed = sequences.new_effect(name="SlowMo", type='SPEED', channel=5,
frame_start=clip_a.frame_final_start, frame_end=clip_a.frame_final_end, seq1=clip_a)
speed.speed_factor = 0.5
# Transform (position, scale, rotation)
transform = sequences.new_effect(name="Transform", type='TRANSFORM', channel=5, frame_start=1, frame_end=100, seq1=clip_a)
transform.scale_start_x = 1.2
transform.scale_start_y = 1.2
4. Strip modifiers for color correction
strip = sequences["Clip_A"]
bc = strip.modifiers.new(name="BrightContrast", type='BRIGHT_CONTRAST')
bc.bright = 0.1
bc.contrast = 0.15
cb = strip.modifiers.new(name="ColorBalance", type='COLOR_BALANCE')
cb.color_balance.lift = (0.95, 0.95, 1.0)
cb.color_balance.gain = (1.1, 1.05, 0.95)
5. Render the final video
scene = bpy.context.scene
scene.render.filepath = "/tmp/final_edit.mp4"
scene.render.image_settings.file_format = 'FFMPEG'
scene.render.ffmpeg.format = 'MPEG4'
scene.render.ffmpeg.codec = 'H264'
scene.render.ffmpeg.audio_codec = 'AAC'
scene.render.ffmpeg.audio_bitrate = 192
scene.render.resolution_x = 1920
scene.render.resolution_y = 1080
# Auto-set frame range from strips
all_strips = scene.sequence_editor.sequences_all
if all_strips:
scene.frame_start = min(s.frame_final_start for s in all_strips)
scene.frame_end = max(s.frame_final_end for s in all_strips)
bpy.ops.render.render(animation=True)
Examples
Example 1: Assemble an edit from a shot list
User request: "Build a timeline from video clips with crossfades between them"
import bpy, os
clips = ["/path/to/shot_01.mp4", "/path/to/shot_02.mp4", "/path/to/shot_03.mp4", "/path/to/shot_04.mp4"]
crossfade_frames = 12
scene = bpy.context.scene
scene.render.fps = 24
if not scene.sequence_editor:
scene.sequence_editor_create()
sequences = scene.sequence_editor.sequences
current_frame = 1
prev_strip = None
for i, clip_path in enumerate(clips):
if prev_strip and crossfade_frames > 0:
current_frame -= crossfade_frames
strip = sequences.new_movie(
name=os.path.splitext(os.path.basename(clip_path))[0],
filepath=clip_path, channel=1 + (i % 2), frame_start=current_frame
)
if prev_strip and crossfade_frames > 0:
sequences.new_effect(name=f"Fade_{i}", type='GAMMA_CROSS', channel=3,
frame_start=current_frame, frame_end=current_frame + crossfade_frames,
seq1=prev_strip, seq2=strip)
current_frame += strip.frame_final_duration
prev_strip = strip
scene.frame_start = 1
scene.frame_end = current_frame
Example 2: Batch add text overlays from data
User request: "Add text titles at specific timecodes"
import bpy
titles = [("Introduction", 0, 3), ("Chapter 1", 15, 4), ("Chapter 2", 120, 4), ("Conclusion", 300, 5)]
fps = bpy.context.scene.render.fps
sequences = bpy.context.scene.sequence_editor.sequences
for text_content, start_sec, dur_sec in titles:
start_frame = int(start_sec * fps) + 1
text = sequences.new_effect(name=text_content[:20], type='TEXT', channel=5,
frame_start=start_frame, frame_end=start_frame + int(dur_sec * fps))
text.text = text_content
text.font_size = 60
text.color = (1, 1, 1, 1)
text.location = (0.5, 0.15)
text.align_x = 'CENTER'
text.use_shadow = True
Guidelines
- Always call
scene.sequence_editor_create()ifscene.sequence_editorisNone. - Use
sequences.new_movie(),new_image(),new_sound(),new_effect(). Avoidbpy.ops.sequencer.*in background mode. - Cross dissolves need strips on different channels with overlapping frames. Alternate channels (1, 2, 1, 2).
frame_offset_start/endtrims content without moving the strip.frame_startmoves it on the timeline.- For audio fades, keyframe
strip.volume— no built-in fade effect in VSE. - Render long edits as image sequences first, then assemble with ffmpeg.
- Set resolution to match source footage to avoid scaling artifacts.
- VSE processes channels bottom-to-top — higher channels layer on top.