Login Register
The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.


Tutorial [Audiotool.com] How to download ANY music made by its community filter_list
Author
Message
[Audiotool.com] How to download ANY music made by its community #1
1: Select the music you want to download which has its download button blocked
[Image: Z8RrVMA5TpCGLGlk3WsERw.png]

2: Open the DevTools (via F12 / Ctrl+Shift+I), Go to the "Console" Tab and copy this code

Code:
function getMeta(metaName) {   const metas = document.getElementsByTagName('meta');   for (let i = 0; i < metas.length; i++) {     if (metas[i].getAttribute('itemprop') === metaName) {       return metas[i].getAttribute('content');     }   }   return 'MP3 File Not Found :c'; } console.log(getMeta('audio'));
[Image: 0zWwjkscR2W45mSswlLcVA.png]

Other ways:
- Add "/play.mp3" at the end of the URL | Cons: If MP3 name gets changed, it won't work
- Search via 'view-source' | Cons: Slow af
- Search via 'Source' tab in DevTools | Cons: Slow af

References:
Original 'getMeta()' function : StackOverflow Question 'How do I get the information from a meta tag with JavaScript'
Function edited by me
RIP the pizza king
[Image: 3.0]

all of my contact info is on my Github Profile

Reply

RE: [Audiotool.com] How to download ANY music made by its community #2
Quote:Other ways:
- Add "/play.mp3" at the end of the URL
I've used this method a few times many years ago and for the most part, It worked well.

Does the above code work each and every time?
[Image: AD83g1A.png]

Reply

RE: [Audiotool.com] How to download ANY music made by its community #3
(03-28-2020, 03:41 AM)mothered Wrote:
Quote:Other ways:
- Add "/play.mp3" at the end of the URL
I've used this method a few times many years ago and for the most part, It worked well.

Does the above code work each and every time?
yes, it gets the metadata of a tag named 'track', unless they change the metadata name, the code will still work.
if they even change the metadata tag name, it is really easy to change the code and make it work with the newer tag name
RIP the pizza king
[Image: 3.0]

all of my contact info is on my Github Profile

Reply

RE: [Audiotool.com] How to download ANY music made by its community #4
(03-28-2020, 03:43 AM)miso Wrote:
(03-28-2020, 03:41 AM)mothered Wrote:
Quote:Other ways:
- Add "/play.mp3" at the end of the URL
I've used this method a few times many years ago and for the most part, It worked well.

Does the above code work each and every time?
yes, it gets the metadata of a tag named 'track', unless they change the metadata name, the code will still work.
if they even change the metadata tag name, it is really easy to change the code and make it work with the newer tag name
Brilliant.

The code Is very simple, so there should be no Issues when modifying It.
Appreciate It.
[Image: AD83g1A.png]

[+] 1 user Likes mothered's post
Reply

RE: [Audiotool.com] How to download ANY music made by its community #5
(03-28-2020, 03:57 AM)mothered Wrote:
(03-28-2020, 03:43 AM)miso Wrote:
(03-28-2020, 03:41 AM)mothered Wrote: I've used this method a few times many years ago and for the most part, It worked well.

Does the above code work each and every time?
yes, it gets the metadata of a tag named 'track', unless they change the metadata name, the code will still work.
if they even change the metadata tag name, it is really easy to change the code and make it work with the newer tag name
Brilliant.

The code Is very simple, so there should be no Issues when modifying It.
Appreciate It.
unless they (for some reason) just change the file encoding and uses a custom one, then i'll be fucked lmao
(This post was last modified: 03-28-2020, 04:14 AM by miso.)
RIP the pizza king
[Image: 3.0]

all of my contact info is on my Github Profile

Reply

RE: [Audiotool.com] How to download ANY music made by its community #6
(03-28-2020, 04:14 AM)miso Wrote:
(03-28-2020, 03:57 AM)mothered Wrote:
(03-28-2020, 03:43 AM)miso Wrote: yes, it gets the metadata of a tag named 'track', unless they change the metadata name, the code will still work.
if they even change the metadata tag name, it is really easy to change the code and make it work with the newer tag name
Brilliant.

The code Is very simple, so there should be no Issues when modifying It.
Appreciate It.
unless they (for some reason) just change the file encoding and uses a custom one, then i'll be fucked lmao

The probability of that happening anytime soon, Is quite slim.
[Image: AD83g1A.png]

[+] 1 user Likes mothered's post
Reply







Users browsing this thread: