Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atheler/titulky
Tiny SubRip subtitles editor
https://github.com/atheler/titulky
Last synced: 14 days ago
JSON representation
Tiny SubRip subtitles editor
- Host: GitHub
- URL: https://github.com/atheler/titulky
- Owner: atheler
- License: gpl-3.0
- Created: 2021-04-18T15:26:31.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-07-18T07:57:26.000Z (over 3 years ago)
- Last Synced: 2024-10-13T21:40:06.232Z (about 1 month ago)
- Language: Python
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Titulky
Tiny Python SubRip editor. Display infos, shift and re-fit timestamps.
## Installation
Use the package manager pip to install titulky.
```bash
pip3 install titulky
```## Usage
Display informations for some `.srt` file.
```bash
python3 titulky.py test.srt
```Shift subtitles by some amount.
```bash
python3 titulky.py test.srt shift "12.34"
```Refit subtitles to some interval.
```bash
python3 titulky.py test.srt shift "1:23.456" "2:34:56"
```By default titulky writes to stdout. You can write the output to a file with
```bash
python3 titulky.py test.srt shift 5.0 --outfile out.srt
```