https://www.highcpmrevenuegate.com/iamfkg2fb5?key=823a11ff5ab70bf965839c02bc9e3efa

Monday, July 17, 2023

Extract audio from YouTube videos

 EXTRACT AUDIO FROM YOUTUBE VIDEOS

Steps::::
1. Enter video link or I'd 
2. Click conform 
3. Click extract
4.then download the audio 


Converter Developer APIs

Converter Developer APIs

Single Button API

GET
https://convert2mp3s.com/api/single/{FTYPE}?url={VIDEO_URL}

Parameters

FTYPE

mp3, mp4, webm

VIDEO_URL

any YouTube, SoundCloud, Facebook, Twitter, Instagram, TikTok, Vimeo, Dailymotion, VK, or AOL Video URL

iFrame Code:

<iframe src="https://convert2mp3s.com/api/single/mp3?url=https://www.youtube.com/watch?v=pRpeEdMmmQ0"
width="100%" height="100%" allowtransparency="true" scrolling="no" style="border:none"></iframe>

Generates this:

Button API

GET
https://convert2mp3s.com/api/button/{FTYPE}?url={VIDEO_URL}

Parameters

FTYPE

mp3, mp4, webm

VIDEO_URL

any YouTube, SoundCloud, Facebook, Twitter, Instagram, TikTok, Vimeo, Dailymotion, VK, or AOL Video URL

iFrame Code:

<iframe id="buttonApi" src="https://convert2mp3s.com/api/button/mp3?url=https://www.youtube.com/watch?v=pRpeEdMmmQ0"
width="100%" height="100%" allowtransparency="true" scrolling="no" style="border:none"></iframe>

Javascript code for automatically resizing:

<!-- Put the Library in your <head> tag -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/4.3.2/iframeResizer.min.js"></script>


<!-- Put the resizer code after your <iframe> tag -->
<script>iFrameResize({ log: false, minHeight: 360 }, '#buttonApi')</script>

Generates this:

Widget API

GET
https://convert2mp3s.com/api/widget?url={VIDEO_URL}

Parameters

VIDEO_URL

any YouTube, SoundCloud, Facebook, Twitter, Instagram, TikTok, Vimeo, Dailymotion, VK, or AOL Video URL

iFrame Code:

<iframe id="widgetApi" src="https://convert2mp3s.com/api/widget?url=https://www.youtube.com/watch?v=pRpeEdMmmQ0"
width="100%" height="100%" allowtransparency="true" scrolling="no" style="border:none"></iframe>

Javascript code for automatically resizing:

<!-- Put the Library in your <head> tag -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/4.3.2/iframeResizer.min.js"></script>


<!-- Put the resizer code after your <iframe> tag -->
<script>iFrameResize({ log: false, minHeight: 400 }, '#widgetApi')</script>

Generates this:

Widget v2 API

GET
https://convert2mp3s.com/api/widgetv2?url={VIDEO_URL}

Parameters

VIDEO_URL

any YouTube, SoundCloud, Facebook, Twitter, Instagram, TikTok, Vimeo, Dailymotion, VK, or AOL Video URL

iFrame Code:

<iframe id="widgetv2Api" src="https://convert2mp3s.com/api/widgetv2?url=https://www.youtube.com/watch?v=pRpeEdMmmQ0"
width="100%" height="100%" allowtransparency="true" scrolling="no" style="border:none"></iframe>

Javascript code for automatically resizing:

<!-- Put the Library in your <head> tag -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/4.3.2/iframeResizer.min.js"></script>


<!-- Put the resizer code after your <iframe> tag -->
<script>iFrameResize({ log: false, minHeight: 400 }, '#widgetv2Api')</script>

Generates this:

Photo size converter Mb To KB

 Photo size converter 



Steps to convert size


1. Choose your file

2. Press conver 

3. Then your file will be ready 

Photo Size Converter

Photo Size Converter

CSS (style.css): body { font-family: Arial, sans-serif; text-align: center; margin: 50px; } h1 { color: #333; } #result { margin-top: 20px; font-weight: bold; } JavaScript (script.js): window.onload = function() { document.getElementById('convert-btn').addEventListener('click', function() { var photoInput = document.getElementById('photo'); if (photoInput.files.length > 0) { var photoSizeInMB = photoInput.files[0].size / (1024 * 1024); var photoSizeInKB = photoSizeInMB * 1024; document.getElementById('result').innerText = 'Photo size: ' + photoSizeInKB.toFixed(2) + ' KB'; } else { document.getElementById('result').innerText = 'Please select a photo first.'; } }); };