View Single Post
Old 27th February 2015, 08:01   #762  |  Link
cyberbeing
Broadband Junkie
 
Join Date: Oct 2005
Posts: 1,859
Quote:
Originally Posted by Eamon View Post
This leads me to a new question. Is there a way to use two filters, VSFilterMod and xy-VSFilter to hardcode different parts of the video.
If you load both VSFilter.dll and VSFilterMod.dll as plugins, it would give you access to both TextSub and TextSubMod. Move your VSFilterMod karaoke into a separate script and load it with TextSubMod. Move your standard VSFilter typesetting into a separate script and load it with TextSub. The order of your TextSub/TextSubMod commands would determine the blending order.

Code:
LoadPlugin("LSMASHSource.dll")
LoadPlugin("VSFilter.dll")
LoadPlugin("VSFilterMod.dll")

LWLibavVideoSource("source.mkv")

TextSub("vsfilter_typesetting.ass")
TextSubMod("vsfiltermod_karaoke.ass")
cyberbeing is offline   Reply With Quote