youtube mp3 converter
v1.0.3
وحدة عقدة بسيطة لتنزيل مقاطع فيديو youtube وتحويلها إلى ملفات mp3. غلاف بسيط حول مكتبة ytdl وffmped، والذي يوفر واجهة برمجة تطبيقات لطيفة وسهلة الاستخدام لتحويل روابط 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
} )
تفتقر هذه الوحدة حاليًا إلى بعض الاختبارات الجادة. إذا كنت تريد تمديد ذلك، من فضلك كن ضيفي.