@ipmanlk/sinhala-sub-maker
v1.3.1
Published
Translate English subtitle to Sinhala
Downloads
11
Readme
Sinhala Subtitle Maker
Simple Library to translate English Srt Subtitles to Sinhala
Usage
Download node from nodejs.org and install it, if you haven't already.
Then install sinhala-sub-maker using npm or yarn.
npm install @ipmanlk/sinhala-sub-maker --save
You can translate any English srt file by providing its path.
const { translate } = require("@ipmanlk/sinhala-sub-maker")
translate("English.srt").then(siSub => {
//you can directly write siSub to a .srt file using fs
console.log(siSub);
});