I've been working hard at this over at SubmitHub, developing a way to detect AI songs: https://www.submithub.com/ai-song-checker These days roughly 20% of the songs coming through our platform for promotion are AI-generated. Roughly 75% of them are honest and declare their AI usage - but another 25% try to hide it. Some of them are actually writing scripts to "clean" their audio so that it can bypass detection.
Deezer says 44% of songs uploaded to its platform daily are AI-generated
51–60 of 405 posts
Re: Deezer says 44% of songs uploaded to its platform daily are AI-generated
#52Tangent: I assume this “AI-generated” music is created the same way an LLM generates text: use samples from a corpus strung together into a new [derivative] output. But it seems plausible that algorithmic generation can be used at any stage of the process. How much disclosure do we (listeners) require? At what point is it unacceptable “AI-generated” music? The answers are going to be subjective. And human. And dealin…
My understanding is music generation is more like stable diffusion. It generates a waveform as an image, then turns it into an audio file.
Re: Deezer says 44% of songs uploaded to its platform daily are AI-generated
#53I'm trying to learn music production with a DAW, sometimes I wonder if I'm wasting my time. Part of my reason for trying this was reading how creative endeavors can be therapeutic (I'm dealing with burnout/depression/cptsd). I'm at the stage where sometimes I make something that sounds good (to me) but I know it requires work (in the "not fun" sense) to finish it and even then, it will likely never be appreciated by…
Re: Deezer says 44% of songs uploaded to its platform daily are AI-generated
#54I'm trying to learn music production with a DAW, sometimes I wonder if I'm wasting my time. Part of my reason for trying this was reading how creative endeavors can be therapeutic (I'm dealing with burnout/depression/cptsd). I'm at the stage where sometimes I make something that sounds good (to me) but I know it requires work (in the "not fun" sense) to finish it and even then, it will likely never be appreciated by…
Re: Deezer says 44% of songs uploaded to its platform daily are AI-generated
#55I'm trying to learn music production with a DAW, sometimes I wonder if I'm wasting my time. Part of my reason for trying this was reading how creative endeavors can be therapeutic (I'm dealing with burnout/depression/cptsd). I'm at the stage where sometimes I make something that sounds good (to me) but I know it requires work (in the "not fun" sense) to finish it and even then, it will likely never be appreciated by…
Re: Deezer says 44% of songs uploaded to its platform daily are AI-generated
#56Tangent: I assume this “AI-generated” music is created the same way an LLM generates text: use samples from a corpus strung together into a new [derivative] output. But it seems plausible that algorithmic generation can be used at any stage of the process. How much disclosure do we (listeners) require? At what point is it unacceptable “AI-generated” music? The answers are going to be subjective. And human. And dealin…
That’s kind of how the music industry produces music these days. There are a few song writers that write for most artists, music producers who sample other music to string together songs for most artists etc. That’s why most music sounds the same and why AI generated music can be indistinguishable from mainstream music.
Re: Deezer says 44% of songs uploaded to its platform daily are AI-generated
#57I'm trying to learn music production with a DAW, sometimes I wonder if I'm wasting my time. Part of my reason for trying this was reading how creative endeavors can be therapeutic (I'm dealing with burnout/depression/cptsd). I'm at the stage where sometimes I make something that sounds good (to me) but I know it requires work (in the "not fun" sense) to finish it and even then, it will likely never be appreciated by…
Re: Deezer says 44% of songs uploaded to its platform daily are AI-generated
#58Earlier quoted context omitted.
On a similar note I recently deleted a whole bunch of automated tests because if the AI is going to write most of the code then I should test it to make sure it's good! This won't work for all projects, but for my indie games it's a good idea.
> I recently deleted a whole bunch of automated tests because if the AI is going to write most of the code then I should test it to make sure it's good! ?? You say you deleted the tests, because you "should test it"? The logic seems inconsistent. Sanity checking LLM-generated code with LLM-generated automated tests is low-cost and high-yield because LLMs are really good at writing tests.
No, they're absolutely shit at writing tests. Writing tests is mostly about risk and threat analysis, which LLMs can't do.
(This is why LLMs write "tests" that check if inputs are equal to outputs or flip `==` to `!=`, etc.)
Re: Deezer says 44% of songs uploaded to its platform daily are AI-generated
#59Earlier quoted context omitted.
I don't grant it. if you mean it is impossible to tell from the music itself, perhaps. but there are other means of verification.
What are any reasonable examples of how you can verify a song wasn't AI-generated? e.g. Game speedrunners film the whole process to prove they did it themselves. Presumably you had some ideas when you envisioned "human-verified platforms".
would you as a label sign an artist you'd never seen perform? maybe there is value in a platform working under similar constraints.
Re: Deezer says 44% of songs uploaded to its platform daily are AI-generated
#60Earlier quoted context omitted.
On a similar note I recently deleted a whole bunch of automated tests because if the AI is going to write most of the code then I should test it to make sure it's good! This won't work for all projects, but for my indie games it's a good idea.
> I recently deleted a whole bunch of automated tests because if the AI is going to write most of the code then I should test it to make sure it's good! ?? You say you deleted the tests, because you "should test it"? The logic seems inconsistent. Sanity checking LLM-generated code with LLM-generated automated tests is low-cost and high-yield because LLMs are really good at writing tests.
I shipped a really embarrassing off-by-one error recently because some polygon representations repeat their last vertex as a sentinel (WKT, KML do this). When I checked the "tests", there was a generated test that asserted that a square has 5 vertices.