Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ipmanlk/sinhala-sub-maker

Simple library to translate English srt subtitles to Sinhala
https://github.com/ipmanlk/sinhala-sub-maker

Last synced: 8 days ago
JSON representation

Simple library to translate English srt subtitles to Sinhala

Awesome Lists containing this project

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.
```javascript
npm install @ipmanlk/sinhala-sub-maker --save
```

You can translate any English srt file by providing its path.
```javascript
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);
});
```