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

https://github.com/levaitamas/docker-vobsub2srt

vobsub2srt in Docker
https://github.com/levaitamas/docker-vobsub2srt

docker-image subtitle vobsub

Last synced: 5 months ago
JSON representation

vobsub2srt in Docker

Awesome Lists containing this project

README

          

# docker-vobsub2srt



## How to use?

1. Put your subtitles to a folder (*e.g.,* `subs`)

2. Start container:

If you use `podman`:
```shell
podman run --rm -ti --volume /path-to-subs:/subs --security-opt label=disable docker.io/levaitamas/vobsub2srt:latest conv
```
If you use `docker`:
```shell
sudo docker run -it --rm -v /path-to-subs:/subs levaitamas/vobsub2srt conv
```

## vobsub2srt documentation

### Usage

Assuming you have copied the subfile.idx and subfile.sub files in `/tmp/subtitles`

#### With bashrc

```shell
conv subfile
```

#### Without bashrc

```shell
cd /subs
vobsub2srt --blacklist "|\/_~<>" --verbose "subfile"
chown 1000:1000 subfile.srt
```