Index: /trunk/doc/CHANGES.txt =================================================================== --- /trunk/doc/CHANGES.txt (リビジョン 60) +++ /trunk/doc/CHANGES.txt (リビジョン 61) @@ -1,3 +1,6 @@ foltia 更新履歴 http://www.dcc-jpl.com/soft/foltia/ +07.9.6 +ipodtranscode.pl: + iPhoneサイズ(480x320)のトラコンオプション追加。 07.7.29 Index: /trunk/doc/index.html =================================================================== --- /trunk/doc/index.html (リビジョン 51) +++ /trunk/doc/index.html (リビジョン 61) @@ -220,4 +220,6 @@ 2:iPod H.264 中画質 24fps 300kbps
3:iPod H.264 高画質 30fps 300kbps
+ 4:iPhone/iPod 480x320 H.264 高画質 24fps 350kbps
+ 5:iPhone/iPod 480x320 H.264 高画質 30fps 350kbps

そのほか、データベース設定もありますが環境に応じて設定して下さい。

Index: /trunk/install/perl/ipodtranscode.pl =================================================================== --- /trunk/install/perl/ipodtranscode.pl (リビジョン 35) +++ /trunk/install/perl/ipodtranscode.pl (リビジョン 61) @@ -103,5 +103,16 @@ $encodeoption = "-y -i $inputmpeg2 -target ipod -profile 51 -level 30 $cropopt -acodec aac -ab 96 -vcodec h264 -maxrate 700 -minrate 0 -deinterlace -b 300 -ar 32000 -mbd 2 -coder 1 -cmp 2 -subcmp 2 -s 320x240 -r 30000/1001 -flags loop -trellis 2 -partitions parti4x4+parti8x8+partp4x4+partp8x8+partb8x8 $movietitle ${mp4outdir}MAQ${mp4filenamestring}.MP4"; $mp4file = "${mp4outdir}MAQ${mp4filenamestring}.MP4"; +}elsif($trconqty == 3){ #sample:src 106.6sec encode 334.8sec x3.14 kbps @Celeron2.6GHz 904kbps + +$encodeoption = "-y -i $inputmpeg2 -target ipod -profile 51 -level 30 $cropopt -s 480x320 -b 350 -r 24 -acodec aac -ar 32000 -ac 2 $movietitle ${mp4outdir}MAQ${mp4filenamestring}.MP4"; +$mp4file = "${mp4outdir}MAQ${mp4filenamestring}.MP4"; + +}elsif($trconqty == 4){ #sample:src 106.6sec encode 684.5sec x6.42 kbps @Celeron2.6GHz 667kbps + +$encodeoption = "-y -i $inputmpeg2 -target ipod -profile 51 -level 30 $cropopt -acodec aac -ab 96 -vcodec h264 -maxrate 700 -minrate 0 -deinterlace -b 350 -ar 32000 -mbd 2 -coder 1 -cmp 2 -subcmp 2 -s 480x320 -r 30000/1001 -flags loop -trellis 2 -partitions parti4x4+parti8x8+partp4x4+partp8x8+partb8x8 $movietitle ${mp4outdir}MAQ${mp4filenamestring}.MP4"; +$mp4file = "${mp4outdir}MAQ${mp4filenamestring}.MP4"; } + + $encodeoptionlog = $encodeoption;