头像
chobitsz7
帖子: 11
注册时间: 2011-04-10 0:15

Re: 用MeGUI压制psp用MP4,片段可以,整片悲剧,求解

哦,rawavc那个明白了,本来就是这么设置的,而且选择i4x4,p8x8,b8x8后重压了一遍,还是悲剧……
log当时没注意,所以只能等一下,下次压的时候贴出来了,明天要搬家,可能没空,等一下把……
头像
06_taro
核心会员
核心会员
帖子: 998
注册时间: 2010-09-22 18:32
来自: United Kingdom
联系: 网站

Re: 用MeGUI压制psp用MP4,片段可以,整片悲剧,求解

log在MeGUI目录下有个/logs文件夹里面
つまんねー事聞くなよ!

I, personally, for me, believe (obviously sometimes) that my OS choice is right. That's me. I'm not telling you that you should believe it. Learn the facts, and the origins behind the facts, and make up your own damn mind. That's why you have one. (source)

Follow me: @06_taro

304——
为纪念伟大的宇宙史上最强压制304先生,联合国教科文组织决定,将每年的第304天,即平年的10月31日或者闰年的10月30日,定为世界304日。
amfilica
帖子: 62
注册时间: 2010-10-03 5:07

Re: 用MeGUI压制psp用MP4,片段可以,整片悲剧,求解

qp 69调到51 psp出来时没有69啊。。。
自制系统各种蛋痛 请在没有破解的情况下测试视频
把系统升到最新的说
头像
chobitsz7
帖子: 11
注册时间: 2011-04-10 0:15

Re: 用MeGUI压制psp用MP4,片段可以,整片悲剧,求解

搬的公司临时宿舍,竟然没网,蛋碎了…手机信号也不好,关键时刻竟然出这样的事情,对不起大家了,本周内网络情况估计都不会改善…谢谢大家上周的帮忙,我可能下周才能冒泡了
头像
chobitsz7
帖子: 11
注册时间: 2011-04-10 0:15

Re: 用MeGUI压制psp用MP4,片段可以,整片悲剧,求解

这周末回学校了,下周一去昆山,网络看情况……
先把avs和log补上:

代码: 全选

LoadPlugin("D:\Outside Program Files\[no install]\PSP video\AVSWriter\dll\VSFilter.DLL")
LoadPlugin("D:\Outside Program Files\[no install]\PSP video\AVSWriter\dll\DGDecode.DLL")
LoadPlugin("D:\Outside Program Files\[no install]\PSP video\AVSWriter\dll\DeComb.DLL")
LoadPlugin("D:\Outside Program Files\[no install]\PSP video\AVSWriter\dll\TomsMoComp.DLL")
LoadPlugin("D:\Outside Program Files\[no install]\PSP video\AVSWriter\dll\Gradfun2db.DLL")
LoadPlugin("D:\Outside Program Files\[no install]\PSP video\AVSWriter\dll\UnDot.DLL")
DirectShowSource("E:\lamu_hd.wmv",23.976,convertFPS=True)
ConvertToYV12()
Crop(0,0,0,0)
AddBorders(0,0,0,0)
LanczosResize(704,480)
AddBorders(8,0,8,0)

代码: 全选

[Information] Log
-[Information] Versions
--[Information] MeGUI Version : 1989 (svn)
--[Information] OS : Windows Seven Ultimate Edition x86 (6.1.0.7600)
--[Information] Latest .Net Framework installed : 4.0 (4.0.30319)
--[Information] Avisynth Version : 2.5.8.5 (2008/12/21 21:46:54)
-[Information] Update detection
--[Information] [2011/4/10 19:45:39] Connecting to server: http://megui.org/auto/stable/
--[Information] [2011/4/10 19:45:40] All files are up to date
-[Information] AutoEncode job generation log
--[Information] Split Size : null
--[Information] Eliminating duplicate filenames
---[Information] Video output file: D:\lamu_hd.264
---[Information] Muxed output file: D:\lamu_hd-muxed.mp4
---[Information] Encodable audio stream 0: D:\lamu_hd.m4a
-[Information] Log for job1 (audio, lamu_hd.avs -> lamu_hd.m4a)
--[Information] [2011/4/10 19:46:03] Started handling job
--[Information] [2011/4/10 19:46:03] Preprocessing
--[Information] [2011/4/10 19:46:04] ignoring downmix as there are only 0 channels
--[Information] Avisynth script
---[NoImage] Import("D:\lamu_hd.avs")
---[NoImage] Normalize()
---[NoImage] return last
---[NoImage] # 5.1 Channels L,R,C,LFE,SL,SR -> stereo + LFE
---[NoImage] function c6_stereo(clip a)
---[NoImage]   {
---[NoImage]      fl = GetChannel(a, 1)
---[NoImage]      fr = GetChannel(a, 2)
---[NoImage]      fc = GetChannel(a, 3)
---[NoImage]      lf = GetChannel(a, 4)
---[NoImage]      sl = GetChannel(a, 5)
---[NoImage]      sr = GetChannel(a, 6)
---[NoImage]      fl_sl = MixAudio(fl, sl, 0.2929, 0.2929)
---[NoImage]      fr_sr = MixAudio(fr, sr, 0.2929, 0.2929)
---[NoImage]      fc_lf = MixAudio(fc, lf, 0.2071, 0.2071)
---[NoImage]      l = MixAudio(fl_sl, fc_lf, 1.0, 1.0)
---[NoImage]      r = MixAudio(fr_sr, fc_lf, 1.0, 1.0)
---[NoImage]      return MergeChannels(l, r)
---[NoImage]   }
---[NoImage] # 5 Channels L,R,C,SL,SR or L,R,LFE,SL,SR-> Stereo
---[NoImage] function c5_stereo(clip a)
---[NoImage]   {
---[NoImage]      fl = GetChannel(a, 1)
---[NoImage]      fr = GetChannel(a, 2)
---[NoImage]      fc = GetChannel(a, 3)
---[NoImage]      sl = GetChannel(a, 4)
---[NoImage]      sr = GetChannel(a, 5)
---[NoImage]      fl_sl = MixAudio(fl, sl, 0.3694, 0.3694)
---[NoImage]      fr_sr = MixAudio(fr, sr, 0.3694, 0.3694)
---[NoImage]      l = MixAudio(fl_sl, fc, 1.0, 0.2612)
---[NoImage]      r = MixAudio(fr_sr, fc, 1.0, 0.2612)
---[NoImage]      return MergeChannels(l, r)
---[NoImage]   }
---[NoImage] # 5 Channels L,R,C,LFE,S -> Stereo
---[NoImage] function c52_stereo(clip a)
---[NoImage]   {
---[NoImage]      fl = GetChannel(a, 1)
---[NoImage]      fr = GetChannel(a, 2)
---[NoImage]      fc = GetChannel(a, 3)
---[NoImage]      lf = GetChannel(a, 4)
---[NoImage]      bc = GetChannel(a, 5)
---[NoImage]      fl_bc = MixAudio(fl, bc, 0.3205, 0.2265)
---[NoImage]      fr_bc = MixAudio(fr, bc, 0.3205, 0.2265)
---[NoImage]      fc_lf = MixAudio(fc, lf, 0.2265, 0.2265)
---[NoImage]      l = MixAudio(fl_bc, fc_lf, 1.0, 1.0)
---[NoImage]      r = MixAudio(fr_bc, fc_lf, 1.0, 1.0)
---[NoImage]      return MergeChannels(l, r)
---[NoImage]   }
---[NoImage] # 4 Channels Quadro L,R,SL,SR -> Stereo
---[NoImage] function c4_stereo(clip a)
---[NoImage]   {
---[NoImage]      fl = GetChannel(a, 1)
---[NoImage]      fr = GetChannel(a, 2)
---[NoImage]      sl = GetChannel(a, 3)
---[NoImage]      sr = GetChannel(a, 4)
---[NoImage]      l = MixAudio(fl, sl, 0.5, 0.5)
---[NoImage]      r = MixAudio(fr, sr, 0.5, 0.5)
---[NoImage]      return MergeChannels(l, r)
---[NoImage]   }
---[NoImage] # 4 Channels L,R,C,LFE or L,R,S,LFE or L,R,C,S -> Stereo
---[NoImage] function c42_stereo(clip a)
---[NoImage]   {
---[NoImage]      fl = GetChannel(a, 1)
---[NoImage]      fr = GetChannel(a, 2)
---[NoImage]      fc = GetChannel(a, 3)
---[NoImage]      lf = GetChannel(a, 4)
---[NoImage]      fc_lf = MixAudio(fc, lf, 0.2929, 0.2929)
---[NoImage]      l = MixAudio(fl, fc_lf, 0.4142, 1.0)
---[NoImage]      r = MixAudio(fr, fc_lf, 0.4142, 1.0)
---[NoImage]      return MergeChannels(l, r)
---[NoImage]   }
---[NoImage] # 3 Channels L,R,C or L,R,S or L,R,LFE -> Stereo
---[NoImage] function c3_stereo(clip a)
---[NoImage]   {
---[NoImage]      fl = GetChannel(a, 1)
---[NoImage]      fr = GetChannel(a, 2)
---[NoImage]      fc = GetChannel(a, 3)
---[NoImage]      l = MixAudio(fl, fc, 0.5858, 0.4142)
---[NoImage]      r = MixAudio(fr, fc, 0.5858, 0.4142)
---[NoImage]      return MergeChannels(l, r)
---[NoImage]   }
---[NoImage] # 5.1 Channels L,R,C,LFE,SL,SR -> Dolby ProLogic
---[NoImage] function c6_dpl(clip a)
---[NoImage]   {
---[NoImage]      fl = GetChannel(a, 1)
---[NoImage]      fr = GetChannel(a, 2)
---[NoImage]      fc = GetChannel(a, 3)
---[NoImage]      sl = GetChannel(a, 5)
---[NoImage]      sr = GetChannel(a, 6)
---[NoImage]      bc = MixAudio(sl, sr, 0.2265, 0.2265)
---[NoImage]      fl_fc = MixAudio(fl, fc, 0.3205, 0.2265)
---[NoImage]      fr_fc = MixAudio(fr, fc, 0.3205, 0.2265)
---[NoImage]      l = MixAudio(fl_fc, bc, 1.0, 1.0)
---[NoImage]      r = MixAudio(fr_fc, bc, 1.0, -1.0)
---[NoImage]      return MergeChannels(l, r)
---[NoImage]   }
---[NoImage] # 5 Channels L,R,C,SL,SR -> Dolby ProLogic
---[NoImage] function c5_dpl(clip a)
---[NoImage]   {
---[NoImage]      fl = GetChannel(a, 1)
---[NoImage]      fr = GetChannel(a, 2)
---[NoImage]      fc = GetChannel(a, 3)
---[NoImage]      sl = GetChannel(a, 4)
---[NoImage]      sr = GetChannel(a, 5)
---[NoImage]      bc = MixAudio(sl, sr, 0.2265, 0.2265)
---[NoImage]      fl_fc = MixAudio(fl, fc, 0.3205, 0.2265)
---[NoImage]      fr_fc = MixAudio(fr, fc, 0.3205, 0.2265)
---[NoImage]      l = MixAudio(fl_fc, bc, 1.0, 1.0)
---[NoImage]      r = MixAudio(fr_fc, bc, 1.0, -1.0)
---[NoImage]      return MergeChannels(l, r)
---[NoImage]   }
---[NoImage] # 5 Channels L,R,LFE,SL,SR -> Dolby ProLogic
---[NoImage] function c52_dpl(clip a)
---[NoImage]   {
---[NoImage]      fl = GetChannel(a, 1)
---[NoImage]      fr = GetChannel(a, 2)
---[NoImage]      sl = GetChannel(a, 4)
---[NoImage]      sr = GetChannel(a, 5)
---[NoImage]      bc = MixAudio(sl, sr, 0.2929, 0.2929)
---[NoImage]      l = MixAudio(fl, bc, 0.4142, 1.0)
---[NoImage]      r = MixAudio(fr, bc, 0.4142, -1.0)
---[NoImage]      return MergeChannels(l, r)
---[NoImage]   }
---[NoImage] # 5 Channels L,R,C,LFE,S -> Dolby ProLogic
---[NoImage] function c53_dpl(clip a)
---[NoImage]   {
---[NoImage]      fl = GetChannel(a, 1)
---[NoImage]      fr = GetChannel(a, 2)
---[NoImage]      fc = GetChannel(a, 3)
---[NoImage]      bc = GetChannel(a, 5)
---[NoImage]      fl_fc = MixAudio(fl, fc, 0.4142, 0.2929)
---[NoImage]      fr_fc = MixAudio(fr, fc, 0.4142, 0.2929)
---[NoImage]      l = MixAudio(fl_fc, bc, 1.0, 0.2929)
---[NoImage]      r = MixAudio(fr_fc, bc, 1.0, -0.2929)
---[NoImage]      return MergeChannels(l, r)
---[NoImage]   }
---[NoImage] # 4 Channels Quadro L,R,SL,SR -> Dolby ProLogic
---[NoImage] function c4_dpl(clip a)
---[NoImage]   {
---[NoImage]      fl = GetChannel(a, 1)
---[NoImage]      fr = GetChannel(a, 2)
---[NoImage]      sl = GetChannel(a, 3)
---[NoImage]      sr = GetChannel(a, 4)
---[NoImage]      bc = MixAudio(sl, sr, 0.2929, 0.2929)
---[NoImage]      l = MixAudio(fl, bc, 0.4142, 1.0)
---[NoImage]      r = MixAudio(fr, bc, 0.4142, -1.0)
---[NoImage]      return MergeChannels(l, r)
---[NoImage]   }
---[NoImage] # 4 Channels L,R,LFE,S  -> Dolby ProLogic
---[NoImage] function c42_dpl(clip a)
---[NoImage]   {
---[NoImage]      fl = GetChannel(a, 1)
---[NoImage]      fr = GetChannel(a, 2)
---[NoImage]      bc = GetChannel(a, 4)
---[NoImage]      l = MixAudio(fl, bc, 0.5858, 0.4142)
---[NoImage]      r = MixAudio(fr, bc, 0.5858, -0.4142)
---[NoImage]      return MergeChannels(l, r)
---[NoImage]   }
---[NoImage] # 4 Channels L,R,C,S -> Dolby ProLogic
---[NoImage] function c43_dpl(clip a)
---[NoImage]   {
---[NoImage]      fl = GetChannel(a, 1)
---[NoImage]      fr = GetChannel(a, 2)
---[NoImage]      fc = GetChannel(a, 3)
---[NoImage]      bc = GetChannel(a, 4)
---[NoImage]      fl_fc = MixAudio(fl, fc, 0.4142, 0.2929)
---[NoImage]      fr_fc = MixAudio(fr, fc, 0.4142, 0.2929)
---[NoImage]      l = MixAudio(fl_fc, bc, 1.0, 0.2929)
---[NoImage]      r = MixAudio(fr_fc, bc, 1.0, -0.2929)
---[NoImage]      return MergeChannels(l, r)
---[NoImage]   }
---[NoImage] # 3 Channels L,R,S  -> Dolby ProLogic
---[NoImage] function c3_dpl(clip a)
---[NoImage]   {
---[NoImage]      fl = GetChannel(a, 1)
---[NoImage]      fr = GetChannel(a, 2)
---[NoImage]      bc = GetChannel(a, 3)
---[NoImage]      l = MixAudio(fl, bc, 0.5858, 0.4142)
---[NoImage]      r = MixAudio(fr, bc, 0.5858, -0.4142)
---[NoImage]      return MergeChannels(l, r)
---[NoImage]   }
---[NoImage] # 5.1 Channels L,R,C,LFE,SL,SR -> Dolby ProLogic II
---[NoImage] function c6_dpl2(clip a)
---[NoImage]   {
---[NoImage]      fl = GetChannel(a, 1)
---[NoImage]      fr = GetChannel(a, 2)
---[NoImage]      fc = GetChannel(a, 3)
---[NoImage]      sl = GetChannel(a, 5)
---[NoImage]      sr = GetChannel(a, 6)
---[NoImage]      ssl = MixAudio(sl, sr, 0.2818, 0.1627)
---[NoImage]      ssr = MixAudio(sl, sr, -0.1627, -0.2818)
---[NoImage]      fl_fc = MixAudio(fl, fc, 0.3254, 0.2301)
---[NoImage]      fr_fc = MixAudio(fr, fc, 0.3254, 0.2301)
---[NoImage]      l = MixAudio(fl_fc, ssl, 1.0, 1.0)
---[NoImage]      r = MixAudio(fr_fc, ssr, 1.0, 1.0)
---[NoImage]      return MergeChannels(l, r)
---[NoImage]   }
---[NoImage] # 5 Channels L,R,C,SL,SR -> Dolby ProLogic II
---[NoImage] function c5_dpl2(clip a)
---[NoImage]   {
---[NoImage]      fl = GetChannel(a, 1)
---[NoImage]      fr = GetChannel(a, 2)
---[NoImage]      fc = GetChannel(a, 3)
---[NoImage]      sl = GetChannel(a, 4)
---[NoImage]      sr = GetChannel(a, 5)
---[NoImage]      ssl = MixAudio(sl, sr, 0.2818, 0.1627)
---[NoImage]      ssr = MixAudio(sl, sr, -0.1627, -0.2818)
---[NoImage]      fl_fc = MixAudio(fl, fc, 0.3254, 0.2301)
---[NoImage]      fr_fc = MixAudio(fr, fc, 0.3254, 0.2301)
---[NoImage]      l = MixAudio(fl_fc, ssl, 1.0, 1.0)
---[NoImage]      r = MixAudio(fr_fc, ssr, 1.0, 1.0)
---[NoImage]      return MergeChannels(l, r)
---[NoImage]   }
---[NoImage] # 5 Channels L,R,LFE,SL,SR -> Dolby ProLogic II
---[NoImage] function c52_dpl2(clip a)
---[NoImage]   {
---[NoImage]      fl = GetChannel(a, 1)
---[NoImage]      fr = GetChannel(a, 2)
---[NoImage]      sl = GetChannel(a, 4)
---[NoImage]      sr = GetChannel(a, 5)
---[NoImage]      ssl = MixAudio(sl, sr, 0.3714, 0.2144)
---[NoImage]      ssr = MixAudio(sl, sr, -0.2144, -0.3714)
---[NoImage]      l = MixAudio(fl, ssl, 0.4142, 1.0)
---[NoImage]      r = MixAudio(fr, ssr, 0.4142, 1.0)
---[NoImage]      return MergeChannels(l, r)
---[NoImage]   }
---[NoImage] # 4 Channels Quadro L,R,SL,SR -> Dolby ProLogic II
---[NoImage] function c4_dpl2(clip a)
---[NoImage]   {
---[NoImage]      fl = GetChannel(a, 1)
---[NoImage]      fr = GetChannel(a, 2)
---[NoImage]      sl = GetChannel(a, 3)
---[NoImage]      sr = GetChannel(a, 4)
---[NoImage]      ssl = MixAudio(sl, sr, 0.3714, 0.2144)
---[NoImage]      ssr = MixAudio(sl, sr, -0.2144, -0.3714)
---[NoImage]      l = MixAudio(fl, ssl, 0.4142, 1.0)
---[NoImage]      r = MixAudio(fr, ssr, 0.4142, 1.0)
---[NoImage]      return MergeChannels(l, r)
---[NoImage]   }
--[Information] Commandline used: -ignorelength -lc -q 0.5 -if - -of "{0}"
--[Information] [2011/4/10 19:46:04] Encoding started
--[Information] [2011/4/10 19:46:04] Avisynth script environment opened
--[Information] [2011/4/10 19:46:05] Script loaded
--[Information] Output Decoder
---[Information] Channels: 2
---[Information] Bits per sample: 16
---[Information] Sample rate: 48000
--[Information] Commandline: D:\Outside Program Files\[no install]\PSP video\MeGUI_0.3.5_x86_WithoutInstaller_OfflinePackage\tools\NeroDigitalAudio\neroAacEnc.exe -ignorelength -lc -q 0.5 -if - -of "D:\lamu_hd.m4a"
--[Information] [2011/4/10 19:46:05] Encoder process started
--[Information] Output from encoder via stderr
---[NoImage] *************************************************************
---[NoImage] *                                                           *
---[NoImage] *  Nero AAC Encoder                                         *
---[NoImage] *  Copyright 2009 Nero AG                                   *
---[NoImage] *  All Rights Reserved Worldwide                            *
---[NoImage] *                                                           *
---[NoImage] *  Package build date: Feb 18 2010                          *
---[NoImage] *  Package version:    1.5.4.0                              *
---[NoImage] *                                                           *
---[NoImage] *  See -help for a complete list of available parameters.   *
---[NoImage] *                                                           *
---[NoImage] *************************************************************
--[Information] [2011/4/10 19:49:48] Postprocessing
---[Information] Deleting intermediate files
--[Information] [2011/4/10 19:49:48] Job completed
-[Information] Log for job2 (video, lamu_hd.avs -> lamu_hd.264)
--[Information] [2011/4/10 19:49:48] Started handling job
--[Information] [2011/4/10 19:49:48] Preprocessing
--[Information] Avisynth input script
---[NoImage] LoadPlugin("D:\Outside Program Files\[no install]\PSP video\AVSWriter\dll\VSFilter.DLL")
---[NoImage] LoadPlugin("D:\Outside Program Files\[no install]\PSP video\AVSWriter\dll\DGDecode.DLL")
---[NoImage] LoadPlugin("D:\Outside Program Files\[no install]\PSP video\AVSWriter\dll\DeComb.DLL")
---[NoImage] LoadPlugin("D:\Outside Program Files\[no install]\PSP video\AVSWriter\dll\TomsMoComp.DLL")
---[NoImage] LoadPlugin("D:\Outside Program Files\[no install]\PSP video\AVSWriter\dll\Gradfun2db.DLL")
---[NoImage] LoadPlugin("D:\Outside Program Files\[no install]\PSP video\AVSWriter\dll\UnDot.DLL")
---[NoImage] DirectShowSource("E:\lamu_hd.wmv",23.976,convertFPS=True)
---[NoImage] ConvertToYV12()
---[NoImage] Crop(0,0,0,0)
---[NoImage] AddBorders(0,0,0,0)
---[NoImage] LanczosResize(704,480)
---[NoImage] AddBorders(8,0,8,0)
--[Information] Job commandline: "D:\Outside Program Files\[no install]\PSP video\MeGUI_0.3.5_x86_WithoutInstaller_OfflinePackage\tools\x264\x264.exe" --profile main --level 3 --crf 20 --b-adapt 2 --weightp 0 --me umh --psy-rd 0.50:0 --no-dct-decimate --no-fast-pskip --sar 40:33 --b-pyramid none --output "D:\lamu_hd.264" "D:\lamu_hd.avs" 
--[Information] [2011/4/10 19:49:49] Encoding started
--[Information] Standard output stream
--[Information] Standard error stream
---[NoImage] avs [info]: 720x480p 40:33 @ 2500000/104271 fps (cfr)
---[NoImage] x264 [info]: using SAR=40/33
---[NoImage] x264 [info]: using cpu capabilities: MMX2 Cache64
---[NoImage] x264 [info]: profile Main, level 3.0
---[NoImage]                                                                                
---[NoImage] x264 [info]: frame I:307   Avg QP:17.51  size: 35658
---[NoImage] x264 [info]: frame P:29257 Avg QP:20.53  size: 11237
---[NoImage] x264 [info]: frame B:38964 Avg QP:24.25  size:  2065
---[NoImage] x264 [info]: consecutive B-frames:  7.0% 35.9% 46.5% 10.5%
---[NoImage] x264 [info]: mb I  I16..4: 26.6%  0.0% 73.4%
---[NoImage] x264 [info]: mb P  I16..4:  5.0%  0.0%  5.1%  P16..4: 46.8% 23.7%  9.9%  0.0%  0.0%    skip: 9.5%
---[NoImage] x264 [info]: mb B  I16..4:  0.3%  0.0%  0.3%  B16..8: 36.9%  6.0%  1.0%  direct: 1.9%  skip:53.5%  L0:34.0% L1:56.3% BI: 9.7%
---[NoImage] x264 [info]: coded y,uvDC,uvAC intra: 57.4% 77.2% 46.0% inter: 24.4% 27.8% 12.7%
---[NoImage] x264 [info]: i16 v,h,dc,p: 39% 13% 12% 37%
---[NoImage] x264 [info]: i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 26% 12% 19%  5% 10% 12%  6%  6%  4%
---[NoImage] x264 [info]: i8c dc,h,v,p: 53% 16% 23%  8%
---[NoImage] x264 [info]: ref P L0: 88.2%  7.3%  4.5%
---[NoImage] x264 [info]: ref B L0: 94.9%  5.1%
---[NoImage] x264 [info]: kb/s:1176.10
---[NoImage] encoded 68528 frames, 8.37 fps, 1176.10 kb/s
--[Information] Final statistics
---[Information] Constant Quality Mode: Quality 20 computed...
---[Information] Video Bitrate Obtained (approximate): 1176 kbit/s
--[Information] [2011/4/10 22:06:19] Postprocessing
---[Information] Deleting intermediate files
--[Information] [2011/4/10 22:06:19] Job completed
-[Information] Log for job3 (mux, lamu_hd.264 -> lamu_hd-muxed.mp4)
--[Information] [2011/4/10 22:06:19] Started handling job
--[Information] [2011/4/10 22:06:19] Preprocessing
--[Information] Job commandline: "D:\Outside Program Files\[no install]\PSP video\MeGUI_0.3.5_x86_WithoutInstaller_OfflinePackage\tools\mp4box\mp4box.exe" -add "D:\lamu_hd.264:fps=23.976" -add "D:\lamu_hd.m4a#trackID=1" -psp -tmp "D:\\" -new "D:\lamu_hd-muxed.mp4"
--[Information] [2011/4/10 22:06:21] Muxing started
--[Information] Standard output stream
---[NoImage] AVC-H264 import - frame size 720 x 480 at 23.976 FPS
---[NoImage] AVC Import results: 68528 samples - Slices: 307 I 29257 P 38964 B - 1 SEI - 302 IDR
---[NoImage] IsoMedia import - track ID 1 - Audio (SR 48000 - 2 channels)
---[NoImage] Converting to PSP file...
---[NoImage] Saving D:\lamu_hd-muxed.mp4: 0.500 secs Interleaving
--[Information] Standard error stream
--[Information] [2011/4/10 22:07:56] Postprocessing
---[Information] Deleting intermediate files
----[Information] [2011/4/10 22:07:56] Successfully deleted D:\lamu_hd.264
----[Information] [2011/4/10 22:07:56] Successfully deleted D:\lamu_hd.m4a
--[Information] [2011/4/10 22:07:56] Job completed
头像
chobitsz7
帖子: 11
注册时间: 2011-04-10 0:15

Re: 用MeGUI压制psp用MP4,片段可以,整片悲剧,求解

今天看到ikamusume的《MeGui 1911更新至MeGui 1989 PSP_MP4兼容性問題》,然后megui压出264和m4a,再用朋友给我的My MP4Box GUI做一下结果就没有兼容性问题了。我的megui也是1989版本的,话说虽然问题解决了,但还是蛮纠结为什么片段的没问题,长片就悲剧……
总之,问题是找到解决方法了,谢谢各位大大前面的指导。

回到 “视频编码器 / Video encoder discussion”