nel-son
18th November 2020, 08:50
Hi,
i have to replace a part of a video with blankclip show subtitles at that part of the video. But textsub don't work. This is the script
v = FFVideoSource("input.mkv", threads=1)
a = FFAudioSource("input.mkv")
z = AudioDub(v,a)
x = z.trim(0,7182)
y = blankclip(length=137, fps=25.000, width=1920, height=1080, pixel_type="yv12", channels=6, audio_rate=48000, color=$d4d0c8)
w = z.trim(7321,0)
return x+y+w
textsub("subtitles.ass")
This works:
v = FFVideoSource("input.mkv", threads=1)
a = FFAudioSource("input.mkv")
AudioDub(v,a)
textsub("subtitles.ass")
What is the problem with blankclip? Or is there an other problem that i don't see?
nel-son
i have to replace a part of a video with blankclip show subtitles at that part of the video. But textsub don't work. This is the script
v = FFVideoSource("input.mkv", threads=1)
a = FFAudioSource("input.mkv")
z = AudioDub(v,a)
x = z.trim(0,7182)
y = blankclip(length=137, fps=25.000, width=1920, height=1080, pixel_type="yv12", channels=6, audio_rate=48000, color=$d4d0c8)
w = z.trim(7321,0)
return x+y+w
textsub("subtitles.ass")
This works:
v = FFVideoSource("input.mkv", threads=1)
a = FFAudioSource("input.mkv")
AudioDub(v,a)
textsub("subtitles.ass")
What is the problem with blankclip? Or is there an other problem that i don't see?
nel-son