PDA

View Full Version : x264 on win7 64bit


smok3
26th May 2009, 09:28
trying to use x264 on win7 64bit and it refuses to open the avisynth, clues?

x264 0.67.1159 3da3f95
built on May 25 2009, gcc: 4.4.0 (x64.core2.Komisar)

x264 [error]: could not open input file 'some.avs'
x264 returned error -1, aborting

buzzqw
26th May 2009, 09:51
post avs script and x264 configuration
is the same script working with xvid_encraw ?

BHH

smok3
26th May 2009, 12:08
its working with vdub.

loadplugin("t:\utility\avisynth\plugins\DGDecode.dll")
mpeg2source("file.d2v")
LanczosResize(576,320)
converttoyv12()

x264 config doesnt matter, even simple
x264 file.avs -o file.mp4
fails.

Audionut
26th May 2009, 12:20
http://forum.doom9.org/showthread.php?p=1289876#post1289876

ajp_anton
26th May 2009, 13:08
64-bit x264 with 32-bit avisynth?

smok3
26th May 2009, 13:36
64-bit x264 with 32-bit avisynth?

that is correct.

Atak_Snajpera
26th May 2009, 14:09
that is correct.
So now you know what went wrong. you cannot use 64 bit x264 with 32 bit avisynth directly. Everything in chain MUST be 64 bit. I mean everything. Decoder , filter , splitters and so on.

ajp_anton
26th May 2009, 20:31
Use avs2yuv as a bridge between 32-bit avisynth and 64-bit x264.

Patrick Bateman
27th May 2009, 10:45
Use avs2yuv as a bridge between 32-bit avisynth and 64-bit x264.

Can you use this with MeGui or do you have to use CLI?