n0l3r / tiktok-downloader

tiktok downloader is a tool to download video from tiktok with watermark or without watermark. There are two features that is, mass download (by username/urls) and single download (by url).
MIT License
336 stars 139 forks source link

Download but only on the sound #30

Open jins5 opened 1 year ago

jins5 commented 1 year ago

How can I only download in mp3, there's no api doc or anything like that?

Thanks

NeonGamerBot-QK commented 10 months ago

just change the file paths from .mp4 to .mp3 and remove anything else node script

// run in the output dir
require('fs').readdirSync(__dirname).forEach(f => {
require('child_process').execSync(`mv ${f} ${f.replace('.mp4','.mp3')`)
})