youtube mp3 converter
v1.0.3
โมดูลโหนดง่ายๆ สำหรับดาวน์โหลดวิดีโอ YouTube และแปลงเป็น MP3 wrapper ง่ายๆ รอบไลบรารี ytdl และ ffmped ซึ่งมี API ที่ดีและใช้งานง่ายในการแปลงลิงก์ YouTube เป็น MP3
การดาวน์โหลดวิดีโอหรือเสียงที่เกี่ยวข้องจาก YouTube ถือเป็นการละเมิดนโยบายโดยตรง การใช้โมดูลนี้กับวิดีโออื่นที่ไม่ใช่ของคุณเองอาจทำให้ YouTube ฟ้องร้องคุณได้
โมดูลนี้ขึ้นอยู่กับไลบรารี ffmpeg ตรวจสอบให้แน่ใจว่าคุณได้ติดตั้ง ffmpeg แล้ว หากไม่ได้ดูรายละเอียดการติดตั้งที่นี่
npm install youtube-mp3-converter
npm run test
// Sets up the downloader
const youtubeMp3Converter = require ( 'youtube-mp3-converter' )
// creates Download function
const convertLinkToMp3 = youtubeMp3Converter ( pathToSaveFiles )
// Downloads mp3 and Returns path were it was saved.
const pathToMp3 = await convertLinkToMp3 ( 'https://www.youtube.com/watch?v=_cyND_1y1k0' )
const youtubeMp3Converter = require ( 'youtube-mp3-converter' )
const convertLinkToMp3 = youtubeMp3Converter ( pathToSaveFiles )
const pathToMp3 = await convertLinkToMp3 ( 'https://www.youtube.com/watch?v=_cyND_1y1k0' , {
startTime : "00:00:10" , // from where in the video the mp3 should start
duration : 20 , // Length of mp3 in seconds (from start point)
title : 'fooo' // The tile of the mp3 file, undefined it takes the youtube title
} )
โมดูลนี้ขาดการทดสอบที่จริงจังอยู่ในขณะนี้ หากคุณต้องการขยายเวลา โปรดเป็นแขกของฉัน