This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#coding:utf-8 | |
require 'fileutils' | |
require 'time' | |
require 'kconv' | |
AFTER_ENCODE = 'hogehoge' # エンコード後になんか実行するコマンド | |
SOURCE = "C:/TS" # TS とかあるところ | |
TARGET ="C:/MP4" | |
IGNORE = /BS世界の|BBC|CNN/ #音声の都合とかで HandBrake で処理したくないやつ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HandBrakeCLI -i src.ts -o dst.mp4 -f mp4 --aencoder faac -aq 110 --encoder x264 -q 23.0 -O --custom-anamorphic --keep-display-aspect -w 1280 -l 720 -a 1 -x direct=auto:weightb=1:weightp=2:mbtree=0:8x8dct=1:keyint=250:bframes=3:b-adapt=1:min-keyint=25:me=umh:merange=32:trellis=2:qpmax=51:qpstep=8:qpmin=16:qcomp=0.60:chroma-qp-offset=0:ref=3:subme=5:deblock=0,0:aq-mode=1:aq-strength=0.5 |