Cara Download Video TikTok dengan JavaScript ESM
Berikut adalah contoh kode JavaScript ESM untuk mendownload video TikTok:
import fetch from 'node-fetch';
import fs from 'fs';
const downloadTikTokVideo = async (url, filename) => {
try {
// Mengirim permintaan ke URL TikTok
const response = await fetch(url);
const videoBuffer = await response.buffer();
// Menyimpan video ke file
fs.writeFileSync(filename, videoBuffer);
console.log(`Video berhasil diunduh: ${filename}`);
} catch (error) {
console.error('Terjadi kesalahan saat mengunduh video:', error);
}
};
// Contoh penggunaan
const videoUrl = 'https://www.tiktok.com/@username/video/1234567890';
const filename = 'video.mp4';
downloadTikTokVideo(videoUrl, filename);
Pastikan Anda telah menginstal node-fetch dan fs sebelum menjalankan kode di atas. Anda dapat menginstalnya menggunakan perintah npm install node-fetch fs.
原文地址: https://www.cveoy.top/t/topic/pab1 著作权归作者所有。请勿转载和采集!