digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Avisynth Scripting (http://www.digitalfaq.com/archives/avisynth/)
-   -   Avisynth: Blindpp error? (http://www.digitalfaq.com/archives/avisynth/8594-avisynth-blindpp-error.html)

vdk_au 03-13-2004 02:02 AM

Avisynth: Blindpp error?
 
I used the avi to kvcd script ffrom dialhot (version 4), i got all the plugins needed but i get an error in tmpenc: blindpp: work in yv12 colorspace (d:downloads\vcd script.avs, line 2)

What am i doing wrong?

Thanks

incredible 03-13-2004 07:20 AM

Read the thread where the optimal scripts are offered CAREFULLY, there its explained how to avoid that blindpp error.

vdk_au 03-15-2004 06:36 AM

I'm sorry but it saids nothing about how to prevent this error. I'm actually visited the page "Latest optimal script for AVI to KVCD" and the only message is about the source needing to have both dimensions divisble by 16. Could you help me further?

Prodater64 03-15-2004 07:02 AM

Put convertoYV12() after you avifile line.

avifile...
convertoYV12()

Dialhot 03-15-2004 07:22 AM

Quote:

Originally Posted by Prodater64
Put convertoYV12() after you avifile line.

avifile...
convertoYV12()

Better : update your codecs and configure them properly.
Except if you are talking about a Divx3.11 that can't be decode in YV12 by any codec.

PS: WHY did you post in this thead and not the Avi->KVCD one ???

Boulder 03-15-2004 08:17 AM

Quote:

Originally Posted by Dialhot
Except if you are talking about a Divx3.11 that can't be decode in YV12 by any codec.

DivX5 decoder does decode DivX3 content to YV12. I'm not sure if it just converts the colorspace automatically though.

Dialhot 03-15-2004 08:28 AM

Quote:

Originally Posted by Boulder
DivX5 decoder does decode DivX3 content to YV12. I'm not sure if it just converts the colorspace automatically though.

If you read me a little on the forum you probably notice how often I say "NEVER use converttoYV12()", right ? I must confess that with Divx3.11 I can't help using it myself :-).
I have Divx5.11 on my disc and for sure if does not convert the 3.11 Slow Motion to YV12. I'm not sure but I wonder if it's the same with 3.11 Fast motion...

Boulder 03-15-2004 08:49 AM

Quote:

Originally Posted by Dialhot
I have Divx5.11 on my disc and for sure if does not convert the 3.11 Slow Motion to YV12. I'm not sure but I wonder if it's the same with 3.11 Fast motion...

That's odd. I just tested with a single AVISource line containing script and VDubMod shows the result as YV12 and DivX5.1.1 being used as the decoder.

Dialhot 03-15-2004 08:58 AM

Quote:

Originally Posted by Boulder
That's odd. I just tested with a single AVISource line containing script and VDubMod shows the result as YV12 and DivX5.1.1 being used as the decoder.

If you did Slow Motion, try the other. I can swear that some Divx3.11 don't have problems were others have. And that is the only diff I can see.

Prodater64 03-15-2004 03:03 PM

Quote:

Originally Posted by Dialhot
If you read me a little on the forum you probably notice how often I say "NEVER use converttoYV12()"

Excuseme Dialhot, but i never saw it.
Then, I use converttoYV12 when necesary.
I have XviD codecs.
How can I configure my codecs and then not to use converttoYV12 anymore?

vdk_au 03-16-2004 02:09 AM

It's actually a mpeg file. would i still put in the line convertoYV12() ?

Abond 03-16-2004 02:40 AM

:cid:
All the discussion in void...
Mpeg-1 or Mpeg-2 :?:
How you load the file in the script :?:

vdk_au 03-16-2004 03:26 AM

I forgot. It's a mpeg 1 file (standard vcd settings) and i load the file by using this line directshowsource("D:\Downloads\THX.mpg").killaudio ()
. I did try add the line convertoYV12() but tmpenc saids something about not recognising this command. I also got divx pro 5.1.1 installed and AviSynth 2.5.4.

Dialhot 03-16-2004 04:18 AM

DO you speak english ? Yes ? Ok so it will be simple : you ask to avisynth to "Convert TO YUY2".
How many "t" do you see in the sentense between quotes ? Put as many in the command you add to your script.

vdk_au 03-16-2004 04:54 AM

sorry.....for my mistake...!!!!!
Anyway, i tried the extra line converttoyuy2() but it still comes up with that message work in yv12 colourspace. I also deleted the line BlindPP(cpu=4) to see if anything changed (you said u this only in bad cases), it still doesn't work.

Could someone explain in plain, non sarcastic tone on how to encode my mpeg1 source using that avi to kvcd script version 4.

Dialhot 03-16-2004 05:10 AM

Quote:

Originally Posted by vdk_au
Could someone explain in plain, non sarcastic tone on how to encode my mpeg1 source using that avi to kvcd script version 4.

My mistake (but a little bit your also) : I told you "you want to convert in YUY2" but actually, in all this thread what you want is "Convert To YV12".

For sure that is not converttoyuy2 that you need but converttoyv12. :oops:

And the solution was given to you in the first post or Prodater at 1:02pm the 03/15/2004 :
Quote:

Put convertoYV12() after your avifile line.

avifile...
convertoYV12()
I agree with you this answer had a little error (avifile does not exists, that is "avisource") but the hint is crystal clear : put the convert after the loading of the source.

And please, do not answer "but here I don't have an avi, I have a mpeg1" :-(

You do appreciate to have an answer to your problem. WE DO appreciate that the askers think a little by their own to forgive some little imprecision in the answers. We are humans, not robots.

I'm sorry you take all this for "sarcastic tone" but trust me, the way I answered you about couting the "t" will stay in your mind and you never do the error again.


Note: I NEVER REMOVE ANY LINE OF MY SCRIPT !

Abond 03-16-2004 07:38 AM

vdk_au,
after directshowsource().killaudio()
you put
converttoYV12() and after that the Dialhot's script as it is.
BTW, this error you have from avisynth, not from TMPG

Prodater64 03-16-2004 08:20 AM

Dialhot: If you have some time, can you tell me how can I configure my codecs and then not to use converttoYV12 anymore?

Prodater64 03-16-2004 12:58 PM

Quote:

Originally Posted by Prodater64
Put convertoYV12() after you avifile line.

avifile...
convertoYV12()

Sorry for the mistake.
It should be

avisource...
convertToYV12()

Dialhot 03-16-2004 05:11 PM

Quote:

Originally Posted by Prodater64
Dialhot: If you have some time, can you tell me how can I configure my codecs and then not to use converttoYV12 anymore?

Do you already know how to pop up the config window for both codecs ?

Prodater64 03-16-2004 06:37 PM

Quote:

Originally Posted by Dialhot
Do you already know how to pop up the config window for both codecs ?

Both codecs XviD and DivX?
I never had to use those config windows. But I supose I can find out it. What is the option that I need to select or modify?

Dialhot 03-16-2004 07:06 PM

Quote:

Originally Posted by Prodater64
Quote:

Originally Posted by Dialhot
Do you already know how to pop up the config window for both codecs ?

Both codecs XviD and DivX?
I never had to use those config windows. But I supose I can find out it. What is the option that I need to select or modify?

Never ? Whaow... that means that PP is still in use. Very bad thing...

For Divx check "Disable Post Processing" and un check "Film effect". In the Quality tab check everything except "use for all MPEG4" if you had it (only included in last 5.1.1). Be sure to have "YUV Extented mode" as it is the name used for YV12 colorspace.

For XVID uncheck everything in the config window and change the combo box from "No change" to "Force YV12".

Prodater64 03-16-2004 10:11 PM

Quote:

Originally Posted by Dialhot
Never ? Whaow... that means that PP is still in use. Very bad thing...

For Divx check "Disable Post Processing" and un check "Film effect". In the Quality tab check everything except "use for all MPEG4" if you had it (only included in last 5.1.1). Be sure to have "YUV Extented mode" as it is the name used for YV12 colorspace.

For XVID uncheck everything in the config window and change the combo box from "No change" to "Force YV12".

DivX: I have an option "support generic mpeg4" I think is the same you said "use for al mpeg4", isn't it?

XviD: Config have many sections, and I don't understand you, sorry.

Is this the better config to play all kind of sources (DVD, DivX, XviD, mainly)?
Thanks a lot Dialhot.

Dialhot 03-17-2004 05:21 AM

Quote:

Originally Posted by Prodater64
DivX: I have an option "support generic mpeg4" I think is the same you said "use for al mpeg4", isn't it?

Yes it is.

Quote:

XviD: Config have many sections, and I don't understand you, sorry.
Many secton ? You mean several tabs ? I have only one on my version. And everything must be unchecked on this (deblocking X and Y, deringing X and Y and so on...)

Quote:

Is this the better config to play all kind of sources (DVD, DivX, XviD, mainly)?
I didn't tell about it if it wasn't the best one ;-)

Prodater64 03-17-2004 01:51 PM

Yes, I mean several tabs, excuseme again for my bad english. Well, now i know what i need to unselect. Now I'll find out it. Thanks a lot.

Prodater64 03-18-2004 08:26 PM

@ Dialhot: I can't find out the XviD DirectShow Filter Control Panel for change the settings that you told me. Where i must search for, please?

jorel 03-18-2004 08:37 PM

prodater64,

when you install the codec you don't got in
start - programs - xvid - configure decoder (and some more options) :?:

Dialhot 03-18-2004 08:39 PM

Quote:

Originally Posted by Prodater64
@ Dialhot: I can't find out the XviD DirectShow Filter Control Panel for change the settings that you told me. Where i must search for, please?

Actually I don't know what Xivd you have as in mine there is only ONE tab and of course, everything I told you is in it :-)

DL the Nic release.

dongxu 03-18-2004 10:07 PM

Quote:

For Divx check "Disable Post Processing" and un check "Film effect". In the Quality tab check everything except "use for all MPEG4" if you had it (only included in last 5.1.1). Be sure to have "YUV Extented mode" as it is the name used for YV12 colorspace.
Dialhot

I did what you suggested, but my script cannot work unless I use:

avifile...
converttoYV12()

By the way, I always use converttoYV12() when needed. May I know why we should avoid it?

Dialhot 03-18-2004 10:14 PM

Quote:

Originally Posted by dongxu
I did what you suggested, but my script cannot work unless I use:

As I told, this is mandatory if your Divx is 3.11. But never for others. You didn't do everything as reported so :-)

Quote:

By the way, I always use converttoYV12() when needed. May I know why we should avoid it?
Because DVD are initially in YV12. If you need a "ConvertToYV12()" command in your script that means taht avisource provided a picture in YUY2 format. So you have TWO colorspace conversions that are done PLUS a last one done by the encoder (RGB24 for tmpgenc, YUY2 for CCE).
:arrow: colorspace conversion if really bad as it screw up the chroma.

dongxu 03-18-2004 10:36 PM

Thanks.

I think it was due to my avi Divx is 3.11 file was decoded Divx is 5.11. so it wont work at all. I have to use Converttoyv12.

dongxu 03-18-2004 10:42 PM

Sorry for my last post it should reads:

I think it was due to my Divx 3.11 avi file was decoded by Divx 5.11. so it wont work at all. I have to use Converttoyv12.

Prodater64 03-18-2004 10:59 PM

Quote:

Originally Posted by Dialhot
Quote:

Originally Posted by Prodater64
Put convertToYV12() after you avifile line.

avisource...
convertToYV12()

Better : update your codecs and configure them properly.
Except if you are talking about a Divx3.11 that can't be decode in YV12 by any codec.

Are you following all this thread?

DKruskie 03-19-2004 12:54 PM

I use koepi's xvid 1.0 rc3. mine doesnt have Force YV12 just YV12 is this the same?


David

Dialhot 03-19-2004 01:00 PM

Quote:

Originally Posted by DKruskie
I use koepi's xvid 1.0 rc3. mine doesnt have Force YV12 just YV12 is this the same?

Kidding ?

DKruskie 03-19-2004 01:43 PM

Quote:

Originally Posted by Dialhot
Quote:

Originally Posted by DKruskie
I use koepi's xvid 1.0 rc3. mine doesnt have Force YV12 just YV12 is this the same?

Kidding ?

Nope not kidding

Mine has output to colourspace
then has the dropdown with these options
no force,yv12,yuy2,rgb24,rgb32




David

Dialhot 03-19-2004 08:32 PM

Quote:

Originally Posted by DKruskie
Mine has output to colourspace
then has the dropdown with these options
no force,yv12,yuy2,rgb24,rgb32

So you are really kidding...

jorel 03-19-2004 08:51 PM

Quote:

Originally Posted by Dialhot
Quote:

Originally Posted by DKruskie
Mine has output to colourspace
then has the dropdown with these options
no force,yv12,yuy2,rgb24,rgb32

So you are really kidding...

no Phil, he is not kidding.....i have the same!!!!
8O

see the "release notes" :

XviD-1.0-RC3-29022004 _Release Candidate_

Based on CVS from 29.02.2004 13:00h MET

Changelog:

XviD-1.0-RC3-29022004 (ni hao!):
- Bitrate calculator fixes
- Status window fixes (-> GMCed frames get counted)
- Decoder fixes
- Workaround for dev-api-3 non-mod16 encodes
- Mod4 / YV12 resolutions encoding fixed
- Multilanguage installer
-> IMPORTANT: we need proper feedback and testing now - we want 1.0 to be final soon!

ATTENTION: Since I lost all my data, I switched to another installer system.
(Since XviD-1.0-RC1.)
If you used the old NSIS installer, please uninstall it manually
before upgrading with these new installers.
If you have done that already, upgrading with these new installers
works like you expect it.
Also, Win9x support is better now with this installer.

Remember, this binary is for educational testing purposes only!
You agree to keep me free of any (legal) issues involved with downloading
and using this binary!

XviD home: http://www.xvid.org/
Doom9's forum: http://forum.doom9.org/forumdisplay.php?s=&forumid=52

eMail: de_koepi at gmx dot de (replace the at with @ and the dot with a .)
URL: http://koepi.roeder.goe.net/

i can send a picture of the "xvid configuration" by mail if you want!

Dialhot 03-19-2004 09:02 PM

And so ? He has "no force, yv12,...". You have "no force, yv12...", others have "no force, yv12..."

But seriously, asking if "YV12" is equivalent to "force to YV12" when the first choice is "no force" can't be anything but a joke. No ?

Oh, just a little think : I also have "YV12" in the menu. I wonder if I'm right when I tell that means "force to YV12". Who knows ? Perhaps I should ask that to the developper. What do you thinkl Jorel ?

jorel 03-19-2004 09:11 PM

Quote:

Originally Posted by Dialhot
And so ? He has "no force, yv12,...". You have "no force, yv12...", others have "no force, yv12..."

But seriously, asking if "YV12" is equivalent to "force to YV12" when the first choice is "no force" can't be anything but a joke. No ?

Oh, just a little think : I also have "YV12" in the menu. I wonder if I'm right when I tell that means "force to YV12". Who knows ? Perhaps I should ask that to the developper. What do you thinkl Jorel ?

i was "talking" about the version and the "configure decoder tab"!
excuse my poor english.

oh yes,the first is "no force"...it's a joke?
maybe!

ask to the developer......why don't?
( or we cry or we laugh!?!? )

:lol:


All times are GMT -5. The time now is 02:14 AM  —  vBulletin © Jelsoft Enterprises Ltd

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.