Skip to content

Vell117/convert2mp3.net.wrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

convert2mp3.net.wrapper

Convert2mp3.net .NET Wrapper

It's about hax, helps to avoid trash on http://convert2mp3.net and directrly convert & download files from their servers.

.NET Framework 4.0 required

image

Library Usage

// 1. Create Converter instance, set events and start process
string url = "http://www.youtube.com/watch?v=Vhh_GeBPOhs";
string format = "mp3";
c2mp3 = new convert2mp3.Converter(url, format);
c2mp3.ConvertStart += C2mp3_ConvertStart;
c2mp3.WhenConverted += C2mp3_WhenConverted;
c2mp3.StartConverting();

...
// Events
private void C2mp3_ConvertStart()
{
  // Converting process started
}
private void C2mp3_WhenConverted(bool ok, string[] artist, string[] name, string album, bool cover, string playSrc)
{
  if(ok)
  {
    // Completed
  }
  else
  {
    // Error
  }
}
...

// 2. After process, we should apply tags and get final file link

bool UseAlbumCover = true;
var result = c2mp3.Finalize("Artist", "Name", "Album", UseAlbumCover);

string DownloadLink = result.Link;
string DownloadFileName = result.FileName;

// 3. Do everything you want with download link
using(WebClient client = new WebClient())
{
  client.DownloadFile(DownloadLink, DownloadFileName);
}

(C) Dz3n 2019

(C) sudo ./hack.sh 2019

About

Convert2mp3.net .NET Wrapper

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages