[心得] 4畫面分割播放 (電視牆) AVS 腳本

看板AVEncode作者 (泣くに泣けない)時間17年前 (2007/07/11 16:25), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串1/3 (看更多)
# Created by AVSEdit # Karasu 2007/7/11 # Clip Layout: # +-+-+ # |a|b| # +-+-+ # |c|d| # +-+-+ # Settings filename_a = "C:\Video\Example01.avi" filename_b = "C:\Video\Example02.rmvb" filename_c = "C:\Video\Example03.mkv" filename_d = "C:\Video\Example04.ogm" output_width = 702 output_height = 396 output_fps = 23.976 output_colorspace = "RGB32" # Main Script clip_width = Round(output_width/2) clip_height = Round(output_height/2) a = DirectShowSource(filename_a, fps=output_fps, convertfps=true, pixel_type=output_colorspace).PointResize(clip_width,clip_height) b = DirectShowSource(filename_b, fps=output_fps, convertfps=true, pixel_type=output_colorspace,audio=false).PointResize(clip_width,clip_height) c = DirectShowSource(filename_c, fps=output_fps, convertfps=true, pixel_type=output_colorspace,audio=false).PointResize(clip_width,clip_height) d = DirectShowSource(filename_d, fps=output_fps, convertfps=true, pixel_type=output_colorspace,audio=false).PointResize(clip_width,clip_height) AudioDub(StackVertical(StackHorizontal(a,b),StackHorizontal(c,d)),a) -- And I begin to wonder... the dream I can't remember. When I wake up in the morning, where in the world did they go? -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 218.166.100.216
文章代碼(AID): #16b9GCzl (AVEncode)
文章代碼(AID): #16b9GCzl (AVEncode)