You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I spent much time trying to understand why MarginR and custom font are not working for my fullhd video, then I bumped into documentation of ffmpeg http://ffmpeg.org/ffmpeg-all.html#subtitles-1 and found that there are additional properties original_size and fontsdir but videshow has only basic option of providing subtitles to ffmpeg so it's impossible to reach what I need(
if (subtitles) {
options.push('-vf subtitles=\'' + subtitles + '\'')
}
The text was updated successfully, but these errors were encountered:
Figured out that original_size does not have any impact on .ass margins while PlayResX and PlayResY in Script Info of .ass do, PlayResY=800 is hardcoded so it's impossible to change it.
My PR changes signature, so probably lib requires major version update or maybe you suggest other way of setting these options without signature changing and major update?
I spent much time trying to understand why MarginR and custom font are not working for my fullhd video, then I bumped into documentation of ffmpeg http://ffmpeg.org/ffmpeg-all.html#subtitles-1 and found that there are additional properties original_size and fontsdir but videshow has only basic option of providing subtitles to ffmpeg so it's impossible to reach what I need(
The text was updated successfully, but these errors were encountered: