ai-music-generation
DiffrythmやTencent Song Generationを活用し、テキストや歌詞からAIが自動でBGMや歌、サウンドトラックを生成するSkill。
📜 元の英語説明(参考)
Generate AI music and songs with Diffrythm, Tencent Song Generation via inference.sh CLI. Models: Diffrythm (fast song generation), Tencent Song Generation (full songs with vocals). Capabilities: text-to-music, song generation, instrumental, lyrics to song, soundtrack creation. Use for: background music, social media content, game soundtracks, podcasts, royalty-free music. Triggers: music generation, ai music, generate song, ai composer, text to music, song generator, create music with ai, suno alternative, udio alternative, ai song, ai soundtrack, generate soundtrack, ai jingle, music ai, beat generator
🇯🇵 日本人クリエイター向け解説
DiffrythmやTencent Song Generationを活用し、テキストや歌詞からAIが自動でBGMや歌、サウンドトラックを生成するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 この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-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
AI音楽生成

inference.sh CLI を介して音楽や楽曲を生成します。
クイックスタート
# CLIをインストール
curl -fsSL https://cli.inference.sh | sh && infsh login
# 楽曲を生成
infsh app run infsh/diffrythm --input '{"prompt": "upbeat electronic dance track"}'
利用可能なモデル
| モデル | App ID | 最適な用途 |
|---|---|---|
| Diffrythm | infsh/diffrythm |
高速な楽曲生成 |
| Tencent Song | infsh/tencent-song-generation |
ボーカル付きのフル楽曲 |
オーディオアプリを閲覧する
infsh app list --category audio
例
インストゥルメンタル曲
infsh app run infsh/diffrythm --input '{
"prompt": "cinematic orchestral soundtrack, epic and dramatic"
}'
ボーカル付きの楽曲
infsh app sample infsh/tencent-song-generation --save input.json
# input.json を編集:
# {
# "prompt": "pop song about summer love",
# "lyrics": "Walking on the beach with you..."
# }
infsh app run infsh/tencent-song-generation --input input.json
動画のBGM
infsh app run infsh/diffrythm --input '{
"prompt": "calm lo-fi hip hop beat, study music, relaxing"
}'
ポッドキャストのイントロ
infsh app run infsh/diffrythm --input '{
"prompt": "short podcast intro jingle, professional, tech themed, 10 seconds"
}'
ゲームのサウンドトラック
infsh app run infsh/diffrythm --input '{
"prompt": "retro 8-bit video game music, adventure theme, chiptune"
}'
プロンプトのヒント
ジャンルキーワード: pop, rock, electronic, jazz, classical, hip-hop, lo-fi, ambient, orchestral
ムードキーワード: happy, sad, energetic, calm, dramatic, epic, mysterious, uplifting
楽器キーワード: piano, guitar, synth, drums, strings, brass, choir
構造キーワード: intro, verse, chorus, bridge, outro, loop
ユースケース
- ソーシャルメディア: 動画のBGM
- ポッドキャスト: イントロ/アウトロのジングル
- ゲーム: サウンドトラックと効果音
- 動画: BGM
- 広告: コマーシャルジングル
- コンテンツ作成: ロイヤリティフリーの音楽
関連スキル
# フルプラットフォームスキル (全150以上のアプリ)
npx skills add inferencesh/skills@inference-sh
# テキスト読み上げ
npx skills add inferencesh/skills@text-to-speech
# 動画生成 (動画に音楽を追加)
npx skills add inferencesh/skills@ai-video-generation
# 音声認識
npx skills add inferencesh/skills@speech-to-text
すべてのアプリを閲覧: infsh app list
ドキュメント
- Running Apps - CLI を介してアプリを実行する方法
- Content Pipeline Example - メディアワークフローの構築
- Apps Overview - アプリエコシステムの理解
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
AI Music Generation

Generate music and songs via inference.sh CLI.
Quick Start
# Install CLI
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a song
infsh app run infsh/diffrythm --input '{"prompt": "upbeat electronic dance track"}'
Available Models
| Model | App ID | Best For |
|---|---|---|
| Diffrythm | infsh/diffrythm |
Fast song generation |
| Tencent Song | infsh/tencent-song-generation |
Full songs with vocals |
Browse Audio Apps
infsh app list --category audio
Examples
Instrumental Track
infsh app run infsh/diffrythm --input '{
"prompt": "cinematic orchestral soundtrack, epic and dramatic"
}'
Song with Vocals
infsh app sample infsh/tencent-song-generation --save input.json
# Edit input.json:
# {
# "prompt": "pop song about summer love",
# "lyrics": "Walking on the beach with you..."
# }
infsh app run infsh/tencent-song-generation --input input.json
Background Music for Video
infsh app run infsh/diffrythm --input '{
"prompt": "calm lo-fi hip hop beat, study music, relaxing"
}'
Podcast Intro
infsh app run infsh/diffrythm --input '{
"prompt": "short podcast intro jingle, professional, tech themed, 10 seconds"
}'
Game Soundtrack
infsh app run infsh/diffrythm --input '{
"prompt": "retro 8-bit video game music, adventure theme, chiptune"
}'
Prompt Tips
Genre keywords: pop, rock, electronic, jazz, classical, hip-hop, lo-fi, ambient, orchestral
Mood keywords: happy, sad, energetic, calm, dramatic, epic, mysterious, uplifting
Instrument keywords: piano, guitar, synth, drums, strings, brass, choir
Structure keywords: intro, verse, chorus, bridge, outro, loop
Use Cases
- Social Media: Background music for videos
- Podcasts: Intro/outro jingles
- Games: Soundtracks and effects
- Videos: Background scores
- Ads: Commercial jingles
- Content Creation: Royalty-free music
Related Skills
# Full platform skill (all 150+ apps)
npx skills add inferencesh/skills@inference-sh
# Text-to-speech
npx skills add inferencesh/skills@text-to-speech
# Video generation (add music to videos)
npx skills add inferencesh/skills@ai-video-generation
# Speech-to-text
npx skills add inferencesh/skills@speech-to-text
Browse all apps: infsh app list
Documentation
- Running Apps - How to run apps via CLI
- Content Pipeline Example - Building media workflows
- Apps Overview - Understanding the app ecosystem