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
- Host: GitHub
- URL: https://github.com/levaitamas/docker-vobsub2srt
- Owner: levaitamas
- License: agpl-3.0
- Created: 2023-05-10T13:58:46.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2025-12-04T06:49:43.000Z (7 months ago)
- Last Synced: 2025-12-07T13:42:20.732Z (7 months ago)
- Topics: docker-image, subtitle, vobsub
- Language: Shell
- Homepage:
- Size: 34.2 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```