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

https://github.com/mononobi/subfix

Simple subtitle encoding fixer.
https://github.com/mononobi/subfix

converter cp1256 encoding fixer movie srt subtitle text-encoding tool utf-8 utf8 windows-1256

Last synced: 11 months ago
JSON representation

Simple subtitle encoding fixer.

Awesome Lists containing this project

README

          

# Subfix

A simple subtitle encoding fixer.

Subfix is a utility package which helps to convert subtitle file encodings.

# Features

- Single File Conversion
- Batch Conversion

# Installing

**Install using pip**:

**`pip install subfixio`**

# Example:

*Single:*
```python
from subfix.converter.manager import converter_manager

converter_manager.convert('/home/user/movies/system-crasher-2019/english_sub.srt')
```
*Batch:*
```python
from subfix.converter.manager import converter_manager

converter_manager.batch_convert('/home/user/movies/system-crasher-2019')
```
*Both methods accept extra optional inputs to customize the conversion.*


*Read the docstrings for more information on extra options.*