-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1604 lines (1513 loc) · 81.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description"
content="SongCreator: Lyrics-based Universal Song Generation">
<meta name="keywords" content="Song generation,Song editing,Language Model,Generative AI,Diffusion Model">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SongCreator</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-L7749G0HJZ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-L7749G0HJZ');
</script>
<link href="https://fonts.googleapis.com/css?family=Google+Sans|Noto+Sans|Castoro"
rel="stylesheet">
<link rel="stylesheet" href="./static/css/bulma.min.css">
<link rel="stylesheet" href="./static/css/bulma-carousel.min.css">
<link rel="stylesheet" href="./static/css/bulma-slider.min.css">
<link rel="stylesheet" href="./static/css/fontawesome.all.min.css">
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
<link rel="stylesheet" href="./static/css/index.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script defer src="./static/js/fontawesome.all.min.js"></script>
<script src="./static/js/bulma-carousel.min.js"></script>
<script src="./static/js/bulma-slider.min.js"></script>
</head>
<body>
<section class="hero">
<div class="hero-body" style="padding-bottom: 24px;">
<div class="container is-max-desktop">
<div class="columns is-centered">
<div class="column has-text-centered">
<h1 class="title is-1 publication-title">SongCreator: Lyrics-based Universal Song Generation</h1>
<div class="is-size-5 publication-authors">
<span class="author-block">
Accepted by NeurIPS 2024.
</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section class="hero teaser">
<div class="container is-max-desktop">
<div class="hero-body">
<video width="1080" height="auto" controls="">
<source src="./static/videos/demo_video.mp4" type="video/mp4" /> Your browser does not support the video tag.
</video>
<h2 class="subtitle has-text-centered">
A 2-minute video introducing VoxInstruct.
</h2>
</div>
</div>
</section> -->
<section id="abs" class="section" style="padding-top: 0px;">
<div class="container is-max-desktop">
<!-- Abstract. -->
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<h2 class="title is-3">Abstract</h2>
<div class="content has-text-justified">
<p>
Music is an integral part of human culture, embodying human intelligence and creativity, of which songs compose an essential part.
While various aspects of song generation have been explored by previous works, such as singing voice, vocal composition and instrumental arrangement, etc., generating songs with both vocals and accompaniment given lyrics remains a significant challenge, hindering the application of music generation models in the real world.
In this light, we propose <b>SongCreator</b>, a <b></b>song-generation</b> system designed to tackle this challenge.
The model features two novel designs: <b>a meticulously designed dual-sequence language model (DSLM) to capture the information of vocals and accompaniment for song generation, and a series of attention mask strategies for DSLM, which allows our model to understand, generate and edit songs, making it suitable for various songrelated generation tasks by utilizing specific attention masks.</b>
Extensive experiments demonstrate the effectiveness of SongCreator by achieving state-of-the-art or competitive performances on <b>all eight tasks</b>.
Notably, it surpasses previous works by <b>a large margin</b> in <b>lyrics-to-song and lyrics-to-vocals</b>.
Additionally, it is able to independently control the acoustic conditions of the vocals and accompaniment in the generated song through different audio prompts, exhibiting its potential applicability.
</p>
</div>
</div>
</div>
</div>
</section>
<section class="hero teaser">
<div class="container is-max-desktop is-centered has-text-centered">
<div class="hero-body">
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<img src="./static/image/architecture.png" class="interpolation-image"
alt="Interpolate start reference image." />
<h2 class="subtitle has-text-centered">
The overview of SongCreator.
</h2>
</div>
</div>
</div>
</div>
</section>
<section id="toc" class="section" style="padding-top: 0px;">
<div class="container is-fluid">
<!-- Abstract. -->
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<h2 class="title is-3">Table of Contents</h2>
<div class="is-centered">
<ul>
<li><a href="#SongCreator_genration"><b>SongCreator: Universal Song Generation</b></a></li>
<li><a href="#SongCreator_prompt"><b>SongCreator: Controllable Song Generation</b></a></li>
<li><a href="#SongCreator_editing"><b>SongCreator: Song Editing</b></a></li>
<li><a href="#SongCreator_continue"><b>SongCreator: Music Continuation</b></a></li>
<li><a href="#SongCreator_more"><b>SongCreator: More Attempts in Generating Songs without Lyrics</b></a></li>
<li><a href="#SongCreator_chinese"><b>SongCreator: More Attempts in High Quality Chinese Datasets</b></a></li>
<li><a href="#tasks"><b>Detailed Description of All Tasks</b></a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section id="SongCreator_genration" class="hero">
<div class="hero-body">
<div class="container is-fluid">
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<h2 class="title is-3">SongCreator: Universal Song Generation</h2>
<div class="content">
<p>To demonstrate the diverse and powerful generation capabilities of SongCreator, we present various samples about universal song generation.</p>
</div>
</div>
</div>
<div class="columns is-centered has-text-centered">
<table class="table" style="background-color: transparent;">
<thead>
<tr>
<th align="center"><strong></span>Lyrics</strong></th>
<th align="center"><strong></span>Pre-determined Vocal</strong></th>
<th align="center"><strong></span>Pre-determined Accompaniment</strong></th>
<th align="center"><strong><span class="icon"><i class="fas fa-magic"></i></span>SongCreator</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td width="30%" style="text-align: left;"> <span class="icon"><i class="fas fa-magic"></i></span>Lyrics-to-Song </td>
</tr>
<tr>
<td width="30%" style="text-align: left;">So if I let down my guard, if I rip up my scars, and I show you my heart, am I beautiful? If I tell you my secrets, show my dark and my demons, tell me, what do you see? Am I beautiful?</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/lyrics-to-song/7.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Maybe I can, we just come meet for dinner, at benningan's, I never meant to make you cry, is it too late to try, don't you remember what we said, as long as we stick together.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/lyrics-to-song/1.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Back on my feet, back on my feet again, I gotta roll the dice, back on my feet, no time to feel the pain, back on my feet, back on my feet again, yeah yeah yeah yeah, back on my feet, no time to feel the pain.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/lyrics-to-song/4.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Well make it to the end, and I can probably have been a better, better friend, I just want to start again, could we go back to when, we used to listen to radiohead.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/lyrics-to-song/2.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">We never sleep, we never try, when you are with me, I wanna stay, I wanna stay here with you (ooh), cause you make me feel like, I could be driving you all night, and I'll find your lips in the streetlights.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/lyrics-to-song/3.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">And don't take this from me, I've been fading away, memories are turning to gray, but every step that I take, the closer I get, to finding there's more to me, than what these eyes have seen, it's within my reach, and I'll take it all.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/lyrics-to-song/8.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Stuck in your ways, where will you go? I was the one who held you up, whenever you were low, I was the only one who refused to see (refuse to see).</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/lyrics-to-song/6.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Got you on my mind, back on my feet, back on my feet again, I gotta roll the dice, back on my feet, no time to feel the pain.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/lyrics-to-song/5.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Can't seem to get my mind off of you, back here at home, there's nothin' to do, now that I'm away, I wish I'd stayed.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/lyrics-to-song/9.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Baby and now we're six months older and everything you want, and everything you see is out of reach, not good enough I don't know what the hell you want from me.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/lyrics-to-song/10.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">I've become so numb, I can't feel you there, become so tired, so much more aware, I'm becoming this, all I want to do is be more like me, and be less like you.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/lyrics-to-song/11.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;"> <span class="icon"><i class="fas fa-magic"></i></span>Lyrics-to-Vocals </td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Cause I'm trying, trying, to set me free, will you let me know, if you have the key.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/lyrics-to-vocals/1.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Even though you hurt me, I feel blessed love, baby, I'm your puppet on a string, making me tumble and swing.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/lyrics-to-vocals/2.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Giving me the greatest gift you can, saying yes and now our life begin, choosing you daily, so take my hand now.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/lyrics-to-vocals/3.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Like a pocket knife shadow, I am confused about who I am, I see your shadow, now I am not afraid to hurt you, I have never quite hurt someone like this before.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/lyrics-to-vocals/6.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Stuck in your ways, where will you go? I was the one who held you up, whenever you were low, I was the only one who refused to see (refuse to see).</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/lyrics-to-vocals/4.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Don't know why I run, don't know why I hide, don't know why I try to keep these issues. Running through my mind all to myself, don't know what I want, don't know who I am, don't even remember who I used to be, before the storm came crashing down.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/lyrics-to-vocals/5.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;"> <span class="icon"><i class="fas fa-magic"></i></span>Accompaniment-to-Song</td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Too far from home, all I do is searching and wondering, never knew the one I hoped for is here waiting, do you feel the same?</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/accompaniment-to-song/1_a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/accompaniment-to-song/1.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Was it something that I said? I tried my best, yeah, all for you. I can see it in your eyes, the way you lie, I'm such a fool.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/accompaniment-to-song/2_a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/accompaniment-to-song/2.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Just a smiling face, I can see she's headed for a tragedy, I wanna save the girl, but it's not my place.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/accompaniment-to-song/3_a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/accompaniment-to-song/3.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">And don't forget the lows everybody's got a story no one knows no one knows so just let them play until the credits roll.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/accompaniment-to-song/4_a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/accompaniment-to-song/4.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Oh, could I take care? For the only one i've dreamed about, until you listened my last goodbye.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/accompaniment-to-song/5_a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/accompaniment-to-song/5.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Will you notice me, are you what I need, I'm trying, trying, to set me free;</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/accompaniment-to-song/6_a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/accompaniment-to-song/6.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;"> <span class="icon"><i class="fas fa-magic"></i></span>Vocals-to-Song</td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Don't know why I run, don't know why I hide, don't know why I try to keep these issues, running through my mind all to myself, don't know what I want, don't know who I am, don't even remember who I used to be, before the storm came crashing down.</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/vocals-to-song/1_a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/vocals-to-song/1.wav"
type="audio/wav">
</audio></td>
</tr>
<td width="30%" style="text-align: left;">One too many times, I'm the one to take the burden, oh, you know I've tried, but got nothing, I got nothing;</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/vocals-to-song/3_a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/vocals-to-song/3.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Enough, I've been waiting forever for you to change, I can't do this forever not one more day, never wanted to lose you this way, but you're stuck."</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/vocals-to-song/2_a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/vocals-to-song/2.wav"
type="audio/wav">
</audio></td>
</tr><tr>
<tr>
<td width="30%" style="text-align: left;">I've got better things to do, and better things to listen to, than all your ranting and raving on me, it's all of the time now, and it's too late for you to find reality here, now I want you out of my life;</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/vocals-to-song/4_a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/vocals-to-song/4.wav"
type="audio/wav">
</audio></td>
</tr><tr>
<td width="30%" style="text-align: left;">You're stuck in my head, stuck on my heart, stuck on my body, I wanna go; get outta here, I'm sick of the party, I'd run away, I'd run away with you</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/vocals-to-song/5_a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/vocals-to-song/5.wav"
type="audio/wav">
</audio></td>
</tr><tr>
<td width="30%" style="text-align: left;">"Even though it hurts and I still feel shame, best friends try to warn you about the game.</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/vocals-to-song/6_a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/vocals-to-song/6.wav"
type="audio/wav">
</audio></td>
</tr>
</tbody>
</table>
</div>
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<a href="#toc" class="button is-primary">Go Back to Table of Contents</a>
</div>
</div>
</div>
</div>
</section>
<section id="SongCreator_prompt" class="hero">
<div class="hero-body">
<div class="container is-fluid">
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<h2 class="title is-3">SongCreator: Controllable Song Generation</h2>
<div class="content">
<p>To demonstrate the diverse and powerful generation capabilities of SongCreator, we present various samples about controllable song generation.</p>
</div>
</div>
</div>
<div class="columns is-centered has-text-centered">
<table class="table" style="background-color: transparent;">
<thead>
<tr>
<th align="center"><strong></span>Lyrics</strong></th>
<th align="center"><strong></span>Vocal Prompt</strong></th>
<th align="center"><strong></span>Accompaniment Prompt</strong></th>
<th align="center"><strong><span class="icon"><i class="fas fa-magic"></i></span>SongCreator</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td width="30%" style="text-align: left;"> <span class="icon"><i class="fas fa-magic"></i></span>Lyrics-to-Song with vocal prompt and accompaniment prompt from the same segment</td>
</tr>
<tr>
<td width="30%" style="text-align: left;">The life I planned for me, and my dreams, I am losing control, of my destiny, it feels like I'm falling and that's what it's like to believe, so I'm letting go, giving in to your gravity.</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/same-prompt/1v.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/same-prompt/1a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/same-prompt/1.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">And every second I waste is more than I can take, I've become so numb, I can't feel you there, become so tired, so much more aware, I'm becoming this, all I want to do is be more like me, and be less like you.</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/same-prompt/4v.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/same-prompt/4a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/same-prompt/4.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">I was a weary one but you saved me, you picked me up and put me on your shoulders, and brought me to the tree;</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/same-prompt/2v.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/same-prompt/2a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/same-prompt/2.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">You can see in his eyes, he's in love with her, you don't wanna be the one to cause more hurt, the damage is done, don't make it worse.</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/same-prompt/3v.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/same-prompt/3a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/same-prompt/3.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Only doing things out of frustration, trying to make it work, but man, these times are hard, she needs me now, but I can't seem to find the time.</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/same-prompt/5v.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/same-prompt/5a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/same-prompt/5.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;"> <span class="icon"><i class="fas fa-magic"></i></span>Lyrics-to-Song with vocal prompt and accompaniment prompt from different segment</td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Draw me angels with flapping wings, ooh... Strange machines, cos after the daekness is sunrise, there'll be hugs and teary smiles.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/different-prompt/1v.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/different-prompt/1a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/different-prompt/1.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">If I get a second chance, I'll stop fighting jews, and I hope that they'll be nice to me too, I was so focused on promoting, my own aryan nation, I forgot about my friendship with jews.</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/different-prompt/2v.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/different-prompt/2a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/different-prompt/2.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Don't wish too hard, because they may come true, and you can't help them, you don't know what you might have set upon yourself, china in your hand.</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/different-prompt/3v.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/different-prompt/3a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/different-prompt/3.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Only doing things out of frustration, trying to make it work, but man, these times are hard, she needs me now, but I can't seem to find the time.</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/different-prompt/4v.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/different-prompt/4a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/different-prompt/4.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Black hole sun, won't you come, and wash away the rain? Black hole sun, won't you come, won't you come.</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/different-prompt/5v.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/different-prompt/5a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/different-prompt/5.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;"> <span class="icon"><i class="fas fa-magic"></i></span>Lyrics-to-Song with only vocal prompt</td>
</tr>
<tr>
<td width="30%" style="text-align: left;">And its unrelenting chase, I was on the edge of deception, caught up in my own hesitation, until your love took over me.</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-vocals/1v.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-vocals/1.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">I'am take a sad girl, turn into a bad girl, even at your worst, you're better than the rest, find someone to kiss tonight, underneath the flashing lights, we gon' have the time of our lives.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-vocals/2v.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-vocals/2.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Tell you what I want, tell me what you need, the things that I desire, the things that make you bleed, I'll lift the pain away, just give me all of you, I'll build it up then tear it if you want me to, but no, I won't do it, my body's in for the moment, i wanna feel you, but i don't wanna take.</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-vocals/3v.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-vocals/3.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Nothing can stop me, I'm the champion, I've been waiting for you, I've been waiting for you, when the shadows come and cover the horizon.</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-vocals/4v.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-vocals/4.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">His mind full of deception, the prize he had no care for, to win was his desire, I stand before these walls, neglected but watched over.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-vocals/5v.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-vocals/5.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;"> <span class="icon"><i class="fas fa-magic"></i></span>Lyrics-to-Song with only bgm prompt</td>
</tr>
<tr>
<td width="30%" style="text-align: left;">But am I gonna get enough from you, I don't know what it is about you, but I can't keep my eyes off you, let me know if you feel it too, I wanna make you mine right now, baby let me show you how.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-accompaniment/1a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-accompaniment/1.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">When the rain, is blowing in your face, and the whole world, is on your case; I could offer you, a warm embrace.</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-accompaniment/2a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-accompaniment/2.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Yeah, they're making us crazy, don't give up on me, baby. Oh, these times are hard, yeah, they're making us crazy, don't give up on me, baby, oh, these times are hard; yeah, they're making us crazy, don't give up on me, baby;
</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-accompaniment/3a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-accompaniment/3.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">What brings me back to this? Is this something I need, or have I done something wrong? how did we even get here.
</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-accompaniment/4a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-accompaniment/4.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Aa-aa-ah, losing all emotions, I did'nt feel nothing, in need of attention but nobody's looking.
</td>
<td width="14%" style="text-align: center;">-</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-accompaniment/5a.wav"
type="audio/wav">
</audio></td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/only-accompaniment/5.wav"
type="audio/wav">
</audio></td>
</tr>
</tbody>
</table>
</div>
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<a href="#toc" class="button is-primary">Go Back to Table of Contents</a>
</div>
</div>
</div>
</div>
</section>
<section id="SongCreator_editing" class="hero">
<div class="hero-body">
<div class="container is-fluid">
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<h2 class="title is-3">SongCreator: Song Editing</h2>
<div class="content">
<p>To demonstrate the diverse and powerful generation capabilities of SongCreator, we present various samples about song editing. It is noteworthy that Original Song (Reconstructed) is reconstructed using BEST-RQ and LDM.</p>
</div>
</div>
</div>
<div class="columns is-centered has-text-centered">
<table class="table" style="background-color: transparent;">
<thead>
<tr>
<th align="center"><strong></span>Original Lyrics</strong></th>
<th align="center"><strong></span>Original Song (Reconstructed)</strong></th>
<th align="center"><strong></span>Edited Lyrics</strong></th>
<th align="center"><strong><span class="icon"><i class="fas fa-magic"></i></span>SongCreator Edited Song</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td width="30%" style="text-align: left;"> <span class="icon"><i class="fas fa-magic"></i></span>Song Editing</td>
</tr>
<tr>
<td width="30%" style="text-align: left;">I made the right choice running away, all those years ago, I need a smoke pull over, haven't taken a drag since seventeen, when I thought you knew me better.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/song-edit/1g.wav"
type="audio/wav">
</audio></td>
<td width="30%" style="text-align: left;">I made the right choice running away, all those years ago, <b>let's stop for a moment, I crave a cigarette, it's been ages</b> since seventeen, when I thought you knew me better.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/song-edit/1.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Black and white, fever burning in the night, just a shade, in a room <b>without a lightl, see your face,</b> can't remember where I am, outer space.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/song-edit/8g.wav"
type="audio/wav">
</audio></td>
<td width="30%" style="text-align: left;">Black and white, fever burning in the night, just a shade, in a room, can't remember where I am, outer space.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/song-edit/8.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">I'am take a sad girl, turn into a bad girl, even at your worst, you're better than the rest.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/song-edit/4g.wav"
type="audio/wav">
</audio></td>
<td width="30%" style="text-align: left;">I'am take a sad girl, turn into a <b>queen</b>, even at your worst, you're better than the rest.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/song-edit/4.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">A voice to call the dead from their sleep, the wonder of it all is that you found me.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/song-edit/2g.wav"
type="audio/wav">
</audio></td>
<td width="30%" style="text-align: left;">A voice to call the <b>souls back to waking life, marveling at the serendipity</b> all is that you found me.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/song-edit/2.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">But we always have been friends, I miss you, both we have to grow, both we got mature.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/song-edit/3g.wav"
type="audio/wav">
</audio></td>
<td width="30%" style="text-align: left;">But we always have been friends, I miss you, <b>now we both must grow and learn,</b> both we got mature.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/song-edit/3.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">She's in line at the dole with her head held high.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/song-edit/5g.wav"
type="audio/wav">
</audio></td>
<td width="30%" style="text-align: left;">She's in line <b>waiting patiently</b> at the dole with her head held high.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/song-edit/5.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">Never let me go, strange love.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/song-edit/6g.wav"
type="audio/wav">
</audio></td>
<td width="30%" style="text-align: left;">Never let me go, <b>hold me close in your arms, cherish every moment together,</b> strange love.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/song-edit/6.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">I can't pull myself away, I can't pull myself away.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/song-edit/7g.wav"
type="audio/wav">
</audio></td>
<td width="30%" style="text-align: left;">I can't pull myself away, <b>trapped by this magnetic force, drawn irresistibly closer, closer despite my efforts, </b>I can't pull myself away.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/song-edit/7.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;"> <span class="icon"><i class="fas fa-magic"></i></span>Vocals Editing</td>
</tr>
<tr>
<td width="30%" style="text-align: left;">And the people bowed and prayed, to the neon god they made, and the sign flashed out its warning, and the words that it was forming.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/vocals-edit/1g.wav"
type="audio/wav">
</audio></td>
<td width="30%" style="text-align: left;">And the people bowed and prayed, to the <b>bright idol they raised, in the light that boldly gleamed</b>, and the words that it was forming.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/vocals-edit/1.wav"
type="audio/wav">
</audio></td>
</tr>
<tr>
<td width="30%" style="text-align: left;">She's in line at the dole with her head held high.
</td>
<td width="14%" style="text-align: center;"><audio controls="">
<source src="static/audio_sample/overview/vocals-edit/2g.wav"
type="audio/wav">
</audio></td>