Tomáš Karabela

Results 51 comments of Tomáš Karabela

BTW, this is the relevant code: https://github.com/tkarabela/pysubs2/blob/f83b8180b8fede6320ac3bca1c9b6b98ef6b7bff/pysubs2/microdvd.py#L22-L46

Fixed in [version 1.7.0](https://pypi.org/project/pysubs2/1.7.0/).

Hi @another1s , here is an example of creating a subtitle file from scratch: ```python from pysubs2 import SSAFile, SSAEvent, make_time subs = SSAFile() subs.append(SSAEvent(start=make_time(s=5), end=make_time(s=10), text="First subtitle")) subs.append(SSAEvent(start=make_time(s=120), end=make_time(s=140),...

Hi @nwgat, can you provide an example file where this happens? I'm not exactly sure what you mean. There is currently nothing to handle such things at the CLI level,...

Hi @lucasjinreal , there is support for animation via the `\t` SubStation override tag, which can animate color, font size, transform, etc.: https://aegisub.org/docs/latest/ass_tags/#\t For karaoke-like effects specifically, there are helper...

If you wish to split a subtitle into shorter ones, there is no built-in function for this, but it can easily be done : ```python from pysubs2 import SSAFile, SSAEvent...

Yeah, my code was just meant to illustrate how to split a subtitle into multiple ones using the library API. The actual splitting logic can be as sophisticated as needed...

Thanks! :)

> I would appreciate it if you could create a new release to PyPI. Thank you in advance. Sure, a new version should be out by Christmas :) I want...