スキル一覧に戻る

c-video

daxaur
更新日 2 days ago
3 閲覧
143
6
143
GitHubで表示
その他videoaudiodownloadyt-dlpffmpegconversion

について

c-videoスキルは、Claudeが`yt-dlp`と`ffmpeg`を使用して動画のダウンロードとメディア処理を可能にします。数百のサイトからのダウンロード、オーディオトラックの抽出、フォーマット間の変換、動画セグメントのクリッピングが可能です。このスキルは、Claude内で直接、動画・オーディオのダウンロード、抽出、変換タスクを自動化するためにご利用ください。

クイックインストール

Claude Code

推奨
メイン
npx skills add daxaur/openpaw -a claude-code
プラグインコマンド代替
/plugin add https://github.com/daxaur/openpaw
Git クローン代替
git clone https://github.com/daxaur/openpaw.git ~/.claude/skills/c-video

このコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします

ドキュメント

What This Skill Does

Enables Claude to download online videos, extract audio tracks, convert between formats, and cut/clip video segments using yt-dlp and ffmpeg.

Available CLI Tools

yt-dlp — Video Downloading

# Download a video (best quality)
yt-dlp "https://youtube.com/watch?v=ID"

# Download audio only as MP3
yt-dlp -x --audio-format mp3 "https://youtube.com/watch?v=ID"

# Download specific format/resolution
yt-dlp -f "bestvideo[height<=1080]+bestaudio" "URL"

# Download to specific output path
yt-dlp -o "~/Downloads/%(title)s.%(ext)s" "URL"

# List available formats
yt-dlp -F "URL"

ffmpeg — Processing & Conversion

# Convert video format
ffmpeg -i input.mp4 output.webm

# Extract audio from video
ffmpeg -i input.mp4 -vn -acodec mp3 output.mp3

# Clip a segment (start time, duration)
ffmpeg -i input.mp4 -ss 00:01:30 -t 00:00:45 -c copy clip.mp4

# Resize video
ffmpeg -i input.mp4 -vf scale=1280:720 output.mp4

Usage Guidelines

  • Confirm the output directory before downloading large files
  • Use -x with yt-dlp for audio-only extraction instead of downloading video first

Notes

  • Only download content you have rights to use
  • yt-dlp may need periodic updates: pip install -U yt-dlp

GitHub リポジトリ

daxaur/openpaw
パス: skills/c-video
0
ai-agentanthropicautomationclaudeclaude-codecli

関連スキル

llamaguard

その他

LlamaGuardは、暴力やヘイトスピーチなど6つの安全性カテゴリーにおいて、LLMの入力と出力をモデレートするMetaの70-80億パラメータモデルです。94〜95%の精度を提供し、vLLM、Hugging Face、Amazon SageMakerを使用してデプロイ可能です。このスキルを使用して、AIアプリケーションにコンテンツフィルタリングと安全策を簡単に統合できます。

スキルを見る

cost-optimization

その他

このClaudeスキルは、リソースの適正サイジング、タグ付け戦略、支出分析を通じて、開発者がクラウドコストを最適化することを支援します。AWS、Azure、GCPにわたるクラウド支出の削減とコストガバナンスの実施のためのフレームワークを提供します。インフラコストの分析、リソースの適正サイジング、または予算制約への対応が必要な際にご利用ください。

スキルを見る

quantizing-models-bitsandbytes

その他

このスキルは、bitsandbytesを使用してLLMを8ビットまたは4ビット精度に量子化し、精度の低下を最小限に抑えつつ50〜75%のメモリ削減を実現します。限られたGPUメモリでより大規模なモデルを実行したり、推論を高速化するのに理想的で、INT8、NF4、FP4などのフォーマットをサポートしています。HuggingFace Transformersと統合され、QLoRAトレーニングや8ビットオプティマイザーを可能にします。

スキルを見る

dispatching-parallel-agents

その他

このClaudeスキルは、複数のエージェントを配備し、3つ以上の独立した問題を並行して調査・修正します。共有状態や依存関係がなく解決可能な、無関係な障害が発生するシナリオ向けに設計されています。中核となる機能は並列問題解決であり、効率を最大化するために独立した問題領域ごとに1つのエージェントを割り当てます。

スキルを見る