Bitcoin Forum

Economy => Services => Topic started by: zestVI on July 18, 2018, 05:28:48 PM



Title: YouTube to MP3 Converter.
Post by: zestVI on July 18, 2018, 05:28:48 PM
Hello, I made a similar post a week ago but I'm having a hard time finding it so I made a new one. I need someone who can script me a full YouTube to MP3 conversion site from scratch (not edit those already on the net, I have already tested all of them). I already have a domain and VPS. I need these services:

1. Full script.
2. File has to be downloaded directly after conversion, to the client's computer not my server.

I will pay in Bitcoin, this is easier for me and I believe it is easier for a lot of people in here. Half of the payment will be given after I see the work and half after I receive the files, upload them in my VPS, test the site and confirm I'm pleased with it. Last time I had more than 5 people trying to play me with pre-made scripts and stories about how they were scripters in huge forums and social media sites, please don't do that. Waiting for your messages here or Discord @ ronaldMD#1548
Thank you.


Title: Re: YouTube to MP3 Converter.
Post by: creativeeditors on July 18, 2018, 06:03:24 PM
Hello, I made a similar post a week ago but I'm having a hard time finding it so I made a new one. I need someone who can script me a full YouTube to MP3 conversion site from scratch (not edit those already on the net, I have already tested all of them). I already have a domain and VPS. I need these services:

1. Full script.
2. File has to be downloaded directly after conversion, to the client's computer not my server.

I will pay in Bitcoin, this is easier for me and I believe it is easier for a lot of people in here. Half of the payment will be given after I see the work and half after I receive the files, upload them in my VPS, test the site and confirm I'm pleased with it. Last time I had more than 5 people trying to play me with pre-made scripts and stories about how they were scripters in huge forums and social media sites, please don't do that. Waiting for your messages here or Discord @ ronaldMD#1548
Thank you.

so only the conversion scripts you want from youtube video to mp3 format,
by the way what about nominal reward in btc would you give for this service sir?
i'm interested in adjusting the rewards.
nb:you should include how much the nominal reward you provide via escrow better :)


Title: Re: YouTube to MP3 Converter.
Post by: zestVI on July 18, 2018, 06:05:11 PM
We can talk about the price in Discord.


Title: Re: YouTube to MP3 Converter.
Post by: Initscri on July 18, 2018, 06:59:37 PM
Sent you a friend request on Discord to discuss.


Title: Re: YouTube to MP3 Converter.
Post by: Kiddy0831 on July 18, 2018, 09:49:25 PM
Is it to create new one? I am also tested the other converter. And its not direct to download after convertion. I think it is also good cause their is a choice to choose if you want to download it or play only.


Title: Re: YouTube to MP3 Converter.
Post by: seoincorporation on January 26, 2021, 03:35:22 PM
Hello, I made a similar post a week ago but I'm having a hard time finding it so I made a new one. I need someone who can script me a full YouTube to MP3 conversion site from scratch (not edit those already on the net, I have already tested all of them). I already have a domain and VPS. I need these services:

1. Full script.
2. File has to be downloaded directly after conversion, to the client's computer not my server.

I will pay in Bitcoin, this is easier for me and I believe it is easier for a lot of people in here. Half of the payment will be given after I see the work and half after I receive the files, upload them in my VPS, test the site and confirm I'm pleased with it. Last time I had more than 5 people trying to play me with pre-made scripts and stories about how they were scripters in huge forums and social media sites, please don't do that. Waiting for your messages here or Discord @ ronaldMD#1548
Thank you.

Hello zestVI, I'm a web developer and I can make this site for you.

But I need more information about how you want to use it because I'm not sure if you really need a webpage for this... What you are searching for is called youtube-dl, you can download the mp3 audio from any video with this command line:

Code:
youtube-dl -x --audio-format mp3 https://www.youtube.com/watch?v=jwD4AEVBL6Q

And if you want to integrate to a page, then use the npm.

https://www.npmjs.com/package/youtube-dl

About point 2, you need to store the file in your server because the users have to download it from someplace, it can't be done 'on the fly'. But you can delete the file after the user downloads it.

So, whit this tools even you should be able to make the site, hope it helps, and if you want me to make the site or the logistic behind the engine, please send me a PM.


Title: Re: YouTube to MP3 Converter.
Post by: NotATether on January 26, 2021, 08:39:09 PM
Lots of people asking for reward calculations but almost nobody explaining to OP how a programmer can write this kind of thing  ;D

But I need more information about how you want to use it because I'm not sure if you really need a webpage for this... What you are searching for is called youtube-dl, you can download the mp3 audio from any video with this command line:
~snip

D'oh! I wish I saw the npm earlier because I had made a (subpar) bare-bones wrapper around youtube-dl in Nodejs for a previous project. It would've saved me a lot of time.

Several weeks ago, I was trying to make such a webpage (you do not have to code an entire website for this!), only for converting into video formats instead, and the biggest problem for me was coding the buttons, the headers and all into something that doesn't look like it was made in 1995, as I suck at web design.

Again folks, this should be a ridiculously easy task for anyone who knows basic web design and some other programming language and should take at most a week to do. All you have to do is make the button send an XMLHTTPrequest to some REST API running with Flask and Flask-RESTFUL in Python or the equivalent library in the programming language you want to use, make the REST API listen on the static IP address of the server, have the server side code running on the VPS run the youtube-dl program and optionally serve the video file on the VPS using Apache or nginx if you want to download the video to your devices instead of leaving it on your server.

Dude, to convert YouTube videos to mp3 format you needn't to use scripts

If OP's internet connection is horrible then youtube-dl's never going to finish since it doesn't have a continue option IIRC (I have worked on the codebase) and Google keeps changing the raw video URLs every 2 hours or so, so I see some benefit in downloading it onto a fast VPS and then finding some way to transfer it to the client without SSH'ing into it first, where downloads can be resumed.

Or maybe you go on vacation, and it's not possible to run youtube-do on a phone or tablet. Not everyone wants to lug a laptop around with them  :)