Difference between revisions of "User:StasFomin/AviSynth/Bugs/1366x768"
From Wiki4Intranet
< User:StasFomin | AviSynth | Bugs
(Новая страница: « File:test-1366x768.avi») |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | Hello all. | ||
− | [[File:test-1366x768.avi]] | + | I have AVI 1366x768, x264, no sound. |
+ | |||
+ | Here is small sample [[File:test-1366x768.avi]] (250Kb). | ||
+ | |||
+ | VirtualDub opens it without problem: | ||
+ | |||
+ | [[File:virtualdub-test-1366x768.png|center]] | ||
+ | |||
+ | |||
+ | But, if I try to open in with AVISynth script | ||
+ | |||
+ | AVISource("test-1366x768.avi") | ||
+ | |||
+ | I have | ||
+ | --------------------------- | ||
+ | VirtualDub Error | ||
+ | --------------------------- | ||
+ | Avisynth open failure: | ||
+ | Avisynth error: YV12 images for output must have a width divisible by 4 (use crop)! | ||
+ | --------------------------- | ||
+ | OK | ||
+ | --------------------------- | ||
+ | |||
+ | If I crop | ||
+ | AVISource("test-1366x768.avi").Crop(0,0,-2,0) | ||
+ | |||
+ | or add border | ||
+ | AVISource("test-1366x768.avi").AddBorders(0,0,2,0) | ||
+ | |||
+ | I have this nightmare: | ||
+ | [[File:avisynth-test-1366x768.png|center]] | ||
+ | |||
+ | What happens? | ||
+ | Is it possible to open such avi-files by AVISynth? | ||
+ | |||
+ | Thanks all in advance, | ||
+ | |||
+ | Sincerely, Stas Fomin |
Latest revision as of 22:46, 24 May 2011
Hello all.
I have AVI 1366x768, x264, no sound.
Here is small sample File:Test-1366x768.avi (250Kb).
VirtualDub opens it without problem:
But, if I try to open in with AVISynth script
AVISource("test-1366x768.avi")
I have
--------------------------- VirtualDub Error --------------------------- Avisynth open failure: Avisynth error: YV12 images for output must have a width divisible by 4 (use crop)! --------------------------- OK ---------------------------
If I crop
AVISource("test-1366x768.avi").Crop(0,0,-2,0)
or add border
AVISource("test-1366x768.avi").AddBorders(0,0,2,0)
I have this nightmare:
What happens? Is it possible to open such avi-files by AVISynth?
Thanks all in advance,
Sincerely, Stas Fomin