Thread #6097998
HomeIndexCatalogAll ThreadsNew ThreadReply
H
Last Thread: >>6051178

https://suno.com
https://udio.com
>(since Udio disabled all downloads you need now either a browser extension, the yt-dlp script or you could get the audio file from your browsers developer tools/menu)
https://www.producer.ai
https://sonauto.ai
https://www.choruz.ai
https://www.mureka.ai
https://elevenlabs.io/app/music
https://www.minimax.io/audio/music
https://huggingface.co/spaces/ACE-Step/ACE-Step
+Showing all 73 replies.
>>
>>
>>
>>
>>6098008
Kekkk
>>
Ace Step is really good at uncanny valley versions of songs when you feed in a reference. I don't know why, but I find it hilarious.
>>
>>
>>
>>
>>
>>
>>
>>6097998
>>
>>
>>
>>
>>6097998
>>
>>
>>
>>
>>
File: lyra2.webm (5.8 MB)
5.8 MB
5.8 MB WEBM
>>
>>
Motor

Genre: chiptune, trap, dubstep, lo-fi, pop, backing vocals, high quality production, wild samples, angelic back-vocals, stuttering, random noises, glitch bass, creativity, (punk), chopped and screwed, intricate melody, voice effects, synthesizer-driven, catchy bassline, polished, nostalgia, Brazilian, 2000s, playful synths, (pop rock)

Lyrics: https://pastebin.com/iiMRDpBH
HQ Webm: https://webmshare.com/gOyjP
Wav Song: https://archive.org/details/motor_20260224
>>
RE-POSTING

Vinco

Genre: chiptune, trap, dubstep, lo-fi, pop, backing vocals, high quality production, wild samples, angelic back-vocals, stuttering, random noises, glitch bass, creativity, punk, chopped and screwed, intricate melody, voice effects, synthesizer-driven, catchy bassline, polished

Lyrics: https://pastebin.com/dKRg8DrG
HQ Webm: https://webmshare.com/4a5q0
Wav Song: https://vocaroo.com/15uWbsyr8OuO / https://archive.org/details/Vinco
>>
RE-POSTING

Dias da Juventude

Genre: chiptune, trap, dubstep, lo-fi, pop, backing vocals, high quality production, wild samples, angelic back-vocals, stuttering, random noises, glitch bass, creativity, male and female vocals, punk

Lyrics: https://pastebin.com/WevwEMTZ
HQ Webm: https://webmshare.com/DWWJK
Wav Song: https://archive.org/details/dias-da-juventude
>>
>>
>>
>>
>>6098008
kek
>>
File: pain.webm (1.7 MB)
1.7 MB
1.7 MB WEBM
>>
>>
told suno to make a trance cover of this sound clip i did on a daw.

https://i.4cdn.org/wsg/1772017358469662.webm" target="_blank">https://i.4cdn.org/wsg/1772017358469662.webm
>>
the other trance cover song suno made from the daw clip:

https://i.4cdn.org/wsg/1772017358469662.webm" target="_blank">https://i.4cdn.org/wsg/1772017358469662.webm

this one is closer to the original

only put [trance] as a style.
>>
daw made song bite uploaded to suno with style [trance inspired, orchestral sounds]. for some reason it added a vocal track (or did i accidently click that).
>>
same daw clip as >>6099458
suno generated cover song, same prompts. again this ones is closer to the original. cover s seem to be available to free accounts.
>>
suno uploaded daw clip cover version.
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>6098008
This shit is hot keke
>>
>>
>>
suno cover of daw (acid pro) made song. suno adds vocal on it own.
>>
>>
File: 034891.webm (3.6 MB)
3.6 MB
3.6 MB WEBM
>>
>>
>>
>>
>>
>>6098008
Fire
>>
File: 134159.webm (3.3 MB)
3.3 MB
3.3 MB WEBM
>>
I've been making a lot of music but not uploading it anywhere. I don't even know how to make videos.
>>
>>6101384
ffmpeg -i cover.jpg -i input.mp3 -b:a 128k out.webm
>>
>>
>>6098294
>ZS9 - My boyfriends girlfriend

Damn, I wish this was a real band.
>>
>>
>>
File: 123.webm (2.4 MB)
2.4 MB
2.4 MB WEBM
>>6097998
>>
>>6100423
https://youtu.be/mC0oxTtzFAE
>>
>>
>not programming the audio waves

get on my level faggots


/*!
*
* stagas - polytropon
*
*/

var transpose = 0;

// patterns
var bassline = [ 6, 6, 6, 9, 12, 12, 12, 19 ];
var melody = [ 6, 9, 6, 9, 12, 19, 12, 19 ];

// filters
var lp_a = Moog();
var lp_b = Moog();
var lp_c = Moog();
var fastlp_a = FastLP(400);
var fastlp_b = FastLP(35);
var fasthp_a = FastHP(1.8);
var fasthp_b = FastHP(1.2);

function dsp(t){
// lfo
var lfo_a = sin(2, t);
var lfo_b = sin(1/32, t);
var lfo_c = sin(1/128, t);

var cutoff =
700
+ (lfo_a * 60)
+ (lfo_b * 300)
+ (lfo_c * 250)
;

// bass
var bn = note(bassline[Math.floor(t * 4) % bassline.length], 0);

var bass_osc =
saw(bn, t)
+ saw(bn/2, t+0.6) * 2
+ sin(bn/2, t-0.9) * 4
;

var bass =
sin(2, t) * // vca
( // vcf
lp_a(cutoff, 0.2 + (sin(1/2, t + 3/4) * 0.8), bass_osc)
)
;

// synth
var mn = note(
melody[Math.floor(t * Math.pow(Math.floor(t * 4) % 8, 2)) % melody.length],
0 + (Math.floor(t * 2) % 4)
);

var synth_osc =
saw(mn, t-4)
+ sin(mn, t+0.5)
;

var synth =
sin(4, t) * // vca
( // vcf
lp_b(900, 0.3 + (sin(1/8, t + (1/3)) * 0.3), synth_osc)
)
;

// pad
var pad_osc =
sqr(note(6 + 0.08, 2), t) * 0.9
+ saw(note(9 - 0.05, 1), t) * 2.9
+ sin(note(6 + 0.14, 3), t) * 1.2
+ sqr(note(13 + 0.05, 2 - (Math.floor(t * 2) % 2)), t) * 0.5
+
>>
File: 491984.webm (3.4 MB)
3.4 MB
3.4 MB WEBM
>>
>>
>>6102080
Suno can also read guitar tabs. I haven't tried it with the others.
>>
>>6102080
>>6102503
https://wavepot.com/

Reply to Thread #6097998


Supported: JPG, PNG, GIF, WebP, WebM, MP4, MP3 (max 4MB)