Files
archived-youtubeDownloader/script.js
MooradAltamimi 3800c1d22a Added mp3 support
2019-10-18 14:49:34 +01:00

23 lines
605 B
JavaScript

var mp3Btn = document.getElementById('mp3');
var mp4Btn = document.getElementById('mp4');
var URLinput = document.querySelector('.URL-input');
var server = 'http://localhost:4000';
mp3Btn.addEventListener('click', () => {
console.log(`URL: ${URLinput.value}`);
redirectMp3(URLinput.value);
});
mp4Btn.addEventListener('click', () => {
console.log(`URL: ${URLinput.value}`);
redirectMp4(URLinput.value);
});
function redirectMp3(query) {
window.location.href = `${server}/downloadmp3?url=${query}`;
}
function redirectMp4(query) {
window.location.href = `${server}/downloadmp4?url=${query}`;
}