vapoursynth-sub

VapourSynth subtitle rendering filter for video processing

brewmacoslinux
Try with needOr install directly
Source

About

VapourSynth filters - Subtitling filter

Commands

vspipe

Examples

Render subtitles onto video using VapourSynth script$ vspipe -c y4m script.vpy - | ffmpeg -i pipe: output.mp4
Load subtitles filter in VapourSynth Python script$ import vapoursynth as vs; core = vs.get_core(); core.sub.TextFile(clip, 'subtitles.ass')
Process video with subtitle overlay using vspipe$ vspipe --arg input='video.mp4' --arg subs='subs.srt' script.vpy output.mkv