ytconverter_hipedev
Filterscript for quick installation to consume our converter's API, if you prefer you can also create your own integration this is optional.
How to use
Later you should have already included the filterscript in your "server.cfg" file, after this you can use the function to convert the video that is inside the filterscript, it would be something like this:
cmd:convertir(playerid, params[])
{
new video_id[32];
if(sscanf(params, "s[32]", video_id)) return SendClientMessage(playerid, 0xFFFFFFFF, "Uso: /convertir [video id]");
CallRemoteFunction("HipeDev_ConvertVideo", "is", playerid, video_id);
return 1;
}Last updated