Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. Domains: forum.doom9.org / forum.doom9.net / forum.doom9.se |
|
|||||||
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
|
#401 | Link |
|
Registered User
Join Date: Jan 2005
Location: cz
Posts: 704
|
yes.
but if we know that: we win in area X with wapon A we win in area Y with wapon B lets use proper weapons in proper areas >we can make overlay of searchclip based on vector lenght. (know that 2 searches are needed) |
|
|
|
|
|
#402 | Link |
|
Registered User
Join Date: Apr 2002
Location: Germany
Posts: 5,407
|
Hurdy-gurdy ...
When 1st search is done before the bruteforce-calming: MVTools may find long vectors where it should not ==> ain't work When 1st search is done after the bruteforce-calming: MVTools may "static" vectors where in fact there is motion ==> ain't work
__________________
- We´re at the beginning of the end of mankind´s childhood - My little flickr gallery. (Yes indeed, I do have hobbies other than digital video!) |
|
|
|
|
|
#403 | Link | |
|
Registered User
Join Date: Sep 2005
Location: Holland
Posts: 86
|
Quote:
Code:
MPEG2Source("25i.d2v")
assumetff()
ConvertToYV12(interlaced=true)
tempgaussmc_beta1(EdiMode="nnedi2")
#tempgaussmc_beta2(EdiMode="nnedi2")
|
|
|
|
|
|
|
#404 | Link |
|
Software Developer
![]() Join Date: Jun 2005
Location: Last House on Slunk Street
Posts: 13,275
|
I'm trying to use TempGaussMC_beta2() and my script is really minimalistic:
Code:
AVISource("TallShip_lag_YUY2_5.1.avi")
AssumeTFF()
TempGaussMC_beta2(edimode="eedi2")
![]() And ideas on what is going wrong? Thanks in advance!
__________________
Go to https://standforukraine.com/ to find legitimate Ukrainian Charities 🇺🇦✊ |
|
|
|
|
|
#405 | Link | |
|
Registered User
Join Date: Sep 2007
Posts: 5,669
|
Quote:
ConvertToYV12(interlaced=true) |
|
|
|
|
|
|
#406 | Link |
|
Software Developer
![]() Join Date: Jun 2005
Location: Last House on Slunk Street
Posts: 13,275
|
Stephen R. Savage and poisondeathray, thanks!
But now I have another problem: "RemoveGrain: invalid mode 20". Do I have a wrong version of RemoveGrain?
__________________
Go to https://standforukraine.com/ to find legitimate Ukrainian Charities 🇺🇦✊ |
|
|
|
|
|
#407 | Link |
|
Registered User
Join Date: Nov 2009
Posts: 327
|
You probably need the "pre-release" version of RemoveGrain.
http://videoprocessing.11.forumer.com/viewtopic.php?t=9 |
|
|
|
|
|
#408 | Link | |
|
Software Developer
![]() Join Date: Jun 2005
Location: Last House on Slunk Street
Posts: 13,275
|
Quote:
__________________
Go to https://standforukraine.com/ to find legitimate Ukrainian Charities 🇺🇦✊ |
|
|
|
|
|
|
#409 | Link |
|
Software Developer
![]() Join Date: Jun 2005
Location: Last House on Slunk Street
Posts: 13,275
|
While everything seemed to work now, I had to notice that the resulting file only contains ~500 frames of content.
All the rests looks like this: ![]() The scrip I used is: Code:
AVISource("TallShip_lag_YUY2_5.1.avi", Audio=False)
AssumeTFF()
ConvertToYV12(interlaced=true)
TempGaussMC_beta2(edimode="eedi2")
Spline36Resize(1280,720)
__________________
Go to https://standforukraine.com/ to find legitimate Ukrainian Charities 🇺🇦✊ |
|
|
|
|
|
#410 | Link | |
|
I often say "maybe"...
Join Date: Jul 2009
Location: France
Posts: 586
|
Quote:
, the only advice I can give you is to remove ALL unnecessary plugins and functions in your Avisynth plugins folder. (Some dll like warpsharp, edeen...(even unused) are known to do things like that).
__________________
We are spitting food to these hungry eyes. You see they ask, we know they are greedy of our rot. Better than to give jam to pigs. x264 r2146 MOD Last edited by MatLz; 26th April 2010 at 11:27. |
|
|
|
|
|
|
#411 | Link |
|
Registered User
Join Date: Apr 2002
Location: Germany
Posts: 5,407
|
~Perhaps~ it's a plugin issue.
But first, what's that source like? Some "smallish" SD-PAL, or rather a 1080i HD beast? (-> could be out-of-memory issues ...)
__________________
- We´re at the beginning of the end of mankind´s childhood - My little flickr gallery. (Yes indeed, I do have hobbies other than digital video!) |
|
|
|
|
|
#413 | Link | |||
|
Software Developer
![]() Join Date: Jun 2005
Location: Last House on Slunk Street
Posts: 13,275
|
Quote:
![]() Quote:
Quote:
http://forum.doom9.org/showpost.php?...&postcount=606 (The source is compressed lossless, with the "lagarith" Codec, using YUY2 colorspace)
__________________
Go to https://standforukraine.com/ to find legitimate Ukrainian Charities 🇺🇦✊ |
|||
|
|
|
|
|
#415 | Link |
|
Registered User
Join Date: Apr 2002
Location: Germany
Posts: 5,407
|
Sorry don't really have the time rightnow ... a quick way to see if it works with small sized source:
Code:
AVISource("TallShip_lag_YUY2_5.1.avi", Audio=False)
AssumeTFF()
crop(0,0,720,576)
ConvertToYV12(interlaced=true)
TempGaussMC_beta2(edimode="eedi2")
#Spline36Resize(1280,720)
If this works, it's RAM ressources. If it works not, then it's probably a faulty plugin.
__________________
- We´re at the beginning of the end of mankind´s childhood - My little flickr gallery. (Yes indeed, I do have hobbies other than digital video!) |
|
|
|
|
|
#416 | Link |
|
Software Developer
![]() Join Date: Jun 2005
Location: Last House on Slunk Street
Posts: 13,275
|
Okay. I will check this when I'm back home...
__________________
Go to https://standforukraine.com/ to find legitimate Ukrainian Charities 🇺🇦✊ Last edited by LoRd_MuldeR; 26th April 2010 at 17:05. |
|
|
|
|
|
#418 | Link |
|
Registered User
Join Date: Feb 2010
Location: New York
Posts: 116
|
I can't speak for the particular error message you're receiving, but you may want to check that you don't have fauxD installed while you're trying to run TempGauss.
Trying out a few test clips with my personal favorite TGMC settings, specifically using Code:
AVISource("testclip.avi")
AssumeBFF()
ConvertToYV12(interlaced=true)
TempGaussMC_beta2(1,1,3,0,0,0,EdiMode="NNEDI2",sharpness=1.0,Smode=1,SLmode=0,Sbb=0,SVthin=0.0)
That is, as long as fauxD isn't in my autoload directory. As soon as I install it, and configure fauxD.avsi to use the proper directories (for fauxD.dll and MVtools2.dll), the same script starts at barely more than one frame per second, multithreaded or not, and slowly drops to 0.3 and slower, if it even makes it that far; most of the time I get an MVTools exception after only a few hundred frames. I tried getting rid of SEt's Avisynth 2.5.8 MT, and reinstalling the standard 2.5.8 release, but I got the same results. Just over five fps without fauxD, less than one with it. |
|
|
|
|
|
#419 | Link |
|
Software Developer
![]() Join Date: Jun 2005
Location: Last House on Slunk Street
Posts: 13,275
|
I re-encoded from Lagarith to HuffYUV. Completed just fine. Will now use the HuffYUV file for future attempts...
__________________
Go to https://standforukraine.com/ to find legitimate Ukrainian Charities 🇺🇦✊ |
|
|
|
|
|
#420 | Link | |
|
Software Developer
![]() Join Date: Jun 2005
Location: Last House on Slunk Street
Posts: 13,275
|
Quote:
![]() But this time I got ~1700 frames before the "CAVIStreamSynth: System exception" starts... Another thing I noticed: If I open the AVS in VirtualDub and then exit VirtualDub, the window disappears, but I get a VirtualDub.exe hanging in the background with a constant CPU load of 25%. Any more suggestions?
__________________
Go to https://standforukraine.com/ to find legitimate Ukrainian Charities 🇺🇦✊ Last edited by LoRd_MuldeR; 26th April 2010 at 20:22. |
|
|
|
|
![]() |
| Tags |
| deinterlace, flickering |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|