Wishbringer
19th November 2005, 11:15
I'm encoding my PSP files with following batch:
PSP.bat
besweet.exe -core( -input "c:\psp\psp T01 3_2ch 448Kbps DELAY -224ms.ac3" -output "c:\psp\audio.mp4" ) -azid( -s stereo -c normal -L -3db ) -bsn( -2ch -vbr_internet -codecquality_high -aacprofile_lc ) -ota( -d -224 -g max )
rem "-ota( -d <delay> -g max )"
x264.exe --progress --bitrate 384 --ref 2 --mixed-refs --bframes 16 --subme 7 --b-rdo --weightb --trellis 2 --analyse p8x8,b8x8,i4x4,p4x4 --me umh --merange 32 --no-psnr --sar 64:45 --output c:\psp\video.264 c:\psp\psp.avs
MP4Box.exe -fps 29.97 -add c:\psp\video.264 -add c:\psp\audio.mp4 c:\psp\output.mp4
ATOMChanger.exe c:\psp\output.mp4 c:\psp\MAQ1000X.MP4 AtomAVC.ini
del c:\psp\video.264
del c:\psp\audio.mp4
del c:\psp\output.mp4
PSP.avs
mpeg2source("C:\PSP\psp.d2v")
crop(2,12,-4,-14)
TDeint()
LanczosResize(320,240)
Dup()
RemoveGrain()
ChangeFPS(29.97)
Thought that "--sar 64:45" would lead to an anamorph PAL 16:9 output.
But i have allways to zoom out to fullscreen on my PSP.
Any suggestions?
Thanks
edit:
bond's suggestion implemented
PSP.bat
besweet.exe -core( -input "c:\psp\psp T01 3_2ch 448Kbps DELAY -224ms.ac3" -output "c:\psp\audio.mp4" ) -azid( -s stereo -c normal -L -3db ) -bsn( -2ch -vbr_internet -codecquality_high -aacprofile_lc ) -ota( -d -224 -g max )
rem "-ota( -d <delay> -g max )"
x264.exe --progress --bitrate 384 --ref 2 --mixed-refs --bframes 16 --subme 7 --b-rdo --weightb --trellis 2 --analyse p8x8,b8x8,i4x4,p4x4 --me umh --merange 32 --no-psnr --sar 64:45 --output c:\psp\video.264 c:\psp\psp.avs
MP4Box.exe -fps 29.97 -add c:\psp\video.264 -add c:\psp\audio.mp4 c:\psp\output.mp4
ATOMChanger.exe c:\psp\output.mp4 c:\psp\MAQ1000X.MP4 AtomAVC.ini
del c:\psp\video.264
del c:\psp\audio.mp4
del c:\psp\output.mp4
PSP.avs
mpeg2source("C:\PSP\psp.d2v")
crop(2,12,-4,-14)
TDeint()
LanczosResize(320,240)
Dup()
RemoveGrain()
ChangeFPS(29.97)
Thought that "--sar 64:45" would lead to an anamorph PAL 16:9 output.
But i have allways to zoom out to fullscreen on my PSP.
Any suggestions?
Thanks
edit:
bond's suggestion implemented