之前接触过Sonic Pi进行编程创作歌曲。
正好接着DeepSeek大火,想试试生成式大模型的创作能力如何。
于是我这样问。
请用方文山的作词风格写一首关于春天歌曲歌歌词,中国风的作曲。使用Sonic Pi生成伴奏并在代码中备注歌词

得到了这样的代码。
use_bpm 80 # 设置节奏为每分钟80拍
定义中国传统乐器音色
flute = :bamboo_flute
guzheng = :gu_zheng
erhu = :erhu
drum = :tabla
主旋律部分
live_loop :main_melody do
use_synth flute
主歌1 - 柳絮飘...
play_pattern_timed [:C5, :E5, :G5, :A5], [0.5, 0.5, 1, 1], release: 1
sleep 4
副歌 - 燕归来...
play_pattern_timed [:D5, :F5, :A5, :B5], [0.5, 0.5, 1, 1], release: 1
sleep 4
end
和弦铺垫
live_loop :chord_progression do
use_synth guzheng
主歌1 - 谁执笔...
play_chord chord(:C4, :major), attack: 0.5, release: 3
sleep 4
主歌2 - 纸鸢飞...
play_chord chord(:G4, :minor), attack: 0.5, release: 3
sleep 4
end
打击乐节奏
live_loop :percussion do
sample drum, rate: 1, amp: 0.6
sleep 1
副歌 - 雨滴落...
sample drum, rate: 1.2, amp: 0.7
sleep 1
end
尾声 - 月下笛...
live_loop :ending do
use_synth erhu
with_fx :reverb, room: 0.8 do
play_pattern_timed [:C5, :E5, :G5, :A5], [1, 1, 1, 1], release: 2
sleep 4
end
end
很好,我把这些代码放到Sonic PI中运行起来。

于是一首歌诞生了。
听听看。
春归.mp3