| 
UID2013积分40帖子33主题1论坛币10 威望0 EP值9 MP值0 阅读权限50注册时间2014-6-21在线时间0 小时最后登录2016-6-26
 
 
 | 
| 呃 这个问题我也不太说的比较明白  我尽量表达好我所求助的问题吧 因为刚刚入门很多东西不是很懂 ---------
 比如我们做ASS字幕 会用到很多种样式 以及多种字体 但是tcc文件里面貌似只有一种字体 我想问的是:如何再添加些字体以及字体大小(字号)   在下面的tcc文件代码 红色部分 应该就是调字体吧 但是只有一种字体 做字幕部可能只用一种字体吧
 
 --------------------------分割线-------------------------------
 # tcc file version
 
 < tcc file version = 1.0 >
 
 
 # mode configuration
 
 < inherit ass header = false >
 < k mode = syllable >
 < text layout = horizontal >
 < tcaxpy init = true >
 < tcaxpy user = false >
 < tcaxpy fin = true >
 
 
 # py settings
 
 < py file = !in_009.py >    < beg line = 1 >    < end line = 0 >
 < py file = !main_003.py >    < beg line = 1 >    < end line = 0 >
 < py file = !eft_002.py >    < beg line = 1 >    < end line = 0 >
 < py file = !eft_003.py >    < beg line = 1 >    < end line = 0 >
 < py file = !ext_001.py >    < beg line = 1 >    < end line = 0 >
 < py file = !out_009.py >    < beg line = 1 >    < end line = 0 >
 
 
 # main settings
 
 < k-timed ass file = test_k.ass >
 < font file = DFHSG5.TTC >    < font face id = 2 >    < font size = 40 >
 < fx width = 1280 >    < fx height = 720 >    < fx fps = 23.976 >
 < alignment = 2 >
 < x offset = 0 >    < y offset = 15 >
 < spacing = 0 >    < space scale = 1.0 >
 
 
 # style settings
 
 < font face name = "" >
 < bord = 1 >    < shad = 0 >
 < primary color = FF0000 >    < secondary color = 00AAFF >    < outline color = FFFF00 >    < back color = 000000 >
 < primary alpha = 0 >    < secondary alpha = 0 >    < outline alpha = 0 >    < back alpha = 100 >
 
 
 # additional settings
 
 < blur = 1.0 >
 -----------------------------------------分割线--------------------------
 | 
 |