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).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Download but only on the sound

jins5 opened this issue · comments

commented

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

Thanks

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')`)
})