i have three .ass files (2 karaoke with effects and 1 subtitles) ,
i am using ffmpeg on linux server (ubuntu 14.04) and its works fine but i need to burn all of the subtitle and
i try to combine the scripts but it ruin the karaoke effects .
p.s i know that i can burn them three times but its takes too long and the finel file is too big .
Code:ffmpeg -i ep17.mkv -c:v libx264 -preset veryslow -vf ass=EP17.ass:shaping=complex -c:a copy -crf 22 -s 1280x720 's03 episode 05.mkv'
+ Reply to Thread
Results 1 to 5 of 5
-
Last edited by yakov; 20th Mar 2016 at 04:36.
-
HTML Code:ffmpeg -i ep17.mkv -c:v libx264 -preset veryslow -vf ass=EP17.ass:shaping=complex -c:a copy -crf 22 -s 1280x720 's03 episode 05.mkv'
this code (with 2 more files) , i try to combine the scripts its running right now , maybe it will work this time , but i still want to know if there is a possibility to burn a few tracks of ass files in FFmpeg , thanks -
Still not clear. So, do you run this code twice more? If so, just chain them in one command.
Code:ffmpeg -i ep17.mkv -vf ass=EP17.ass:shaping=complex,ass=second.ass:shaping=complex,ass=third.ass:shaping=complex -c:v libx264 -preset veryslow -c:a copy -crf 22 -s 1280x720 's03 episode 05.mkv'
Similar Threads
-
Burn styled .ASS/.SSA anime subs to MP4
By taebog in forum SubtitleReplies: 7Last Post: 29th Jun 2014, 02:30 -
How to convert srt to .ass files?
By Legendd in forum SubtitleReplies: 1Last Post: 31st May 2013, 05:19 -
How do I burn .ass files to dvd with convertxtodvd
By animalia in forum SubtitleReplies: 16Last Post: 14th Feb 2013, 19:08 -
Hard-subbing .ass Subtitle Files to .mkv Files to be Playable on HDTV
By Sansui in forum SubtitleReplies: 4Last Post: 18th Nov 2012, 12:21 -
Broken .ass files?
By Pinkishu in forum SubtitleReplies: 4Last Post: 25th Sep 2012, 10:35