YouTube Thumbnail Downloader

YouTube Thumbnail Downloader

Get Thumbnail

Download Thumbnail

document.getElementById(‘downloadBtn’).addEventListener(‘click’, function() {
const videoUrl = document.getElementById(‘videoUrl’).value;
const videoId = extractVideoId(videoUrl);

if (videoId) {
const thumbnailUrl = `https://img.youtube.com/vi/${videoId}/maxresdefault.jpg`;
const thumbnailImg = document.getElementById(‘thumbnail’);
const downloadLink = document.getElementById(‘downloadLink’);

thumbnailImg.src = thumbnailUrl;
thumbnailImg.style.display = ‘block’;
downloadLink.href = thumbnailUrl;
downloadLink.style.display = ‘inline-block’;
document.getElementById(‘thumbnailContainer’).style.display = ‘block’;
} else {
alert(‘Please enter a valid YouTube video URL.’);
}
});

function extractVideoId(url) {
const regex = /(?:https?://)?(?:www.)?(?:youtube.com/(?:[^/ns]+/S+/|(?:v|e(?:mbed)?)/|.*[?&]v=)|youtu.be/)([a-zA-Z0-9_-]{11})/;
const matches = url.match(regex);
return matches ? matches[1] : null;
}

Share your love
bytesvibe
bytesvibe

Bytes Vibe হলো ঢাকা, বাংলাদেশ ভিত্তিক একটি পূর্ণাঙ্গ ডিজিটাল সলিউশন এজেন্সি, যা আপনার ব্যবসাকে অনলাইন জগতে শুধুমাত্র প্রতিষ্ঠা নয়, বরং সাফল্যের চূড়ায় নিয়ে যেতে বদ্ধপরিকর। আমরা ওয়েবসাইট ডিজাইন ও ডেভেলপমেন্ট থেকে শুরু করে ডিজিটাল মার্কেটিং এবং অত্যাধুনিক সফটওয়্যার লাইসেন্সিং পর্যন্ত সব ধরনের পরিষেবা প্রদান করি। আমাদের মূল লক্ষ্য হলো - প্রতিটি ক্লায়েন্টের ধারণা ও স্বপ্নকে আধুনিক প্রযুক্তির মাধ্যমে বাস্তবে রূপ দেওয়া।