Post subject: Encoding problems
geniusmind
He/Him
Joined: 6/6/2012
Posts: 38
Location: new york
Can anyone help me with this problem I want to encode Hd when I double click youtube.bat i am getting this error message x264 warning frame mb size 640x360 > level limit 36864 x264 warning dpb size 3 frames. 265420800 > level limit (0 frames, 70 x264 warning mb rate (6905094) > level limit (2073600) x264 info using cpu capabilities mmx2 sse2fast ssse3 fastshuffle sse4.2 aux z264 error malloc of size 235929600 failed x264 error x264_encoder_open failed
Editor, Emulator Coder, Site Developer
Joined: 5/11/2011
Posts: 1108
Location: Murka
What resolution is your input .avs file?
Joined: 2/3/2013
Posts: 320
Location: Germany
What are the contents of youtube.bat (aka what is the commandline)? What file are you trying to encode (resolution)? What version of x264 are you using and what architecture was it built for? What is the architecture of your operating system? How much RAM does your computer have?
All syllogisms have three parts, therefore this is not a syllogism.
geniusmind
He/Him
Joined: 6/6/2012
Posts: 38
Location: new york
thsi is the contents of the youtube.bat x264.exe --qp 0 --keyint 600 --output video_youtube.mkv encode.avs I have avi file with a resolution of 1280x720 the version of x264 is 0.133.2334 (H.264 (MPEG-4 AVC) encoder) I am using windows 8 pro I have a gig of ram
geniusmind
He/Him
Joined: 6/6/2012
Posts: 38
Location: new york
ooppssss 8 gig of Ram
Editor, Emulator Coder, Site Developer
Joined: 5/11/2011
Posts: 1108
Location: Murka
That video source isn't appropriate for that encode script as is. The "Youtube HD" script is about taking very low resolution inputs and blowing them up really big. Your 1280x720 input is HD already, so the script is trying to blow it up into something ginormous which won't work.
Joined: 2/3/2013
Posts: 320
Location: Germany
In the encode.avs look for the line (probably l.39): "factor = hd ? (nds ? 4 : 8) : 1". Comment it for the time being and add the line "factor = 2" below. x264 is trying to encode a huge resolution video (1280*8x720*8 = 10240x5760, assuming the HD flag is set to true).
All syllogisms have three parts, therefore this is not a syllogism.
geniusmind
He/Him
Joined: 6/6/2012
Posts: 38
Location: new york
factor = hd ? 8 : 1 what should i exactly change it to?
geniusmind
He/Him
Joined: 6/6/2012
Posts: 38
Location: new york
i am using dolphin emulator
geniusmind
He/Him
Joined: 6/6/2012
Posts: 38
Location: new york
never mind adding the factor of 2 help out, Thank you