digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Conversão e Codificação de Vídeo (Português) (http://www.digitalfaq.com/archives/portugues/)
-   -   Algumas Falhas no filme (http://www.digitalfaq.com/archives/portugues/6218-algumas-falhas-filme.html)

DigoBrow 10-20-2003 01:34 PM

Algumas Falhas no filme
 
Ola a todos

Capturei um filme da TV, e ficou muito bom.

Assisto ele da forma como esta e aparece apenas entrelaçado, mas com a imagem muito boa.
Porem quando vou transformar em K(S)VCD, aparecem falhas no lado direito da imagem.
O que será isso?

Meu filtro é:

#==============================================
# An AviSynth 2.5 Script für (PAL) Tv Captures
#==============================================

### The needed Plugins for Avisynth 2.5!!! will be loaded in here
### If you miss one you can find it here:
### http://www.avisynth.org/~warpenterprises/

LoadPlugin("C:\Edicao\AviSynth 2.5\plugins\MPEG2Dec3.dll")
LoadPlugin("C:\Edicao\AviSynth 2.5\plugins\STMedianFilter.dll")
LoadPlugin("C:\Edicao\AviSynth 2.5\plugins\GripFit_YV12.dll")
LoadPlugin("C:\Edicao\AviSynth 2.5\plugins\FluxSmooth-2.5.dll")
LoadPlugin("C:\Edicao\AviSynth 2.5\plugins\Sampler.dll")

### Load the avi file

AviSource("E:\A_Rocha.avi",false)
#AssumeFPS(29.976)

### Change for GripFit into the YV12 colorspace

ConvertToYV12()

### Now we change the size (in here I use 480x480 NTSC SVCD Size)

GripCrop(480, 480, overscan=0, source_anamorphic=false)
GripSize(resizer="BilinearResize")

# To work with the following integrated VirtualDub Plugin
# you have to change into the RGB32 Colorspace

ConvertToRGB32()

### We intentionally use the Vdub-Deinterlacer AFTER the resizing,
### cause we did not modify the high of the movie (576!)
### By not modifying the Videos high at "GripCrop" above
### we keep the interlaced lines correctly "alive", but on the other side
### we enjoy a faster deinterlacing process cause of less horiz. size!

### A very good VirtualDub Deinterlacer "SmartDeinterlace"
### with a good compromise of Quality and speed
### Download: http://vdfilters.videoxone.de/downlo.../smart27b2.zip

LoadVirtualdubPlugin("C:\Edicao\VirtualDubMod 1.5\plugins\Smart.vdf","_VD_smartdeinterlace",1)
_VD_smartdeinterlace(0, 1, 15, 100, 0, 0, 0, 0, 1, 2, 1, 0)

### Back to the YV12 colorspace to continue working with the following filetrs

ConvertToYV12()

### Unsharp mask using Asharp

asharp(2, 2)

### Now we remove the noise from the capture videostream

FluxSmooth(2, 2) # In case of heavy noise, remove the "#" at the BEGINNING of this line ;-)
STMedianFilter(8, 15, 4, 7)

MergeChroma(blur(1.58))
MergeLuma(blur(0.2))

#GripBorders()
AddBorders(0, 25, 0, 25)

### Fading the Video and Audio in at beginning and out at the end
### Thanx for Jorel's advice at KVCD.net so I moved this to
### the end of this script to avoid prediction problems.

FadeIn(50)
FadeOut(125)

sampler(length=24)

vmesquita 10-21-2003 09:49 AM

Poste uma imagem de como fica, senão fica difícil a gente ajudar sem ver nada... :D

[]'s
VMesquita

DigoBrow 10-21-2003 11:06 PM

bom Vmesquita, eu ate tentei colocar as imagens.
mas não sei como faço.
nao entendi na pagina como faz.
q devo fazer?

não entendo o comando Insert image: http://www.digitalfaq.com/archives/error.gif (alt+p)


http://www.kvcd.net/forum/posting.php?mode=reply&t=6939
C:\Documents and Settings\Digão\Meus documentos\Minhas imagens\Nova pasta\5.JPG

[C:\Documents and Settings\Digão\Meus documentos\Minhas imagens\Nova pasta\5.JPG]http://www.kvcd.net/forum/posting.php?mode=reply&t=6939[/C:\Documents and Settings\Digão\Meus documentos\Minhas imagens\Nova pasta\5.JPG][/IMG]

DigoBrow 10-21-2003 11:07 PM

bom Vmesquita, eu ate tentei colocar as imagens.
mas não sei como faço.
nao entendi na pagina como faz.
q devo fazer?

não entendo o comando Insert image: http://www.digitalfaq.com/archives/error.gif (alt+p)


http://www.kvcd.net/forum/posting.php?mode=reply&t=6939
C:\Documents and Settings\Digão\Meus documentos\Minhas imagens\Nova pasta\5.JPG

http://www.digitalfaq.com/archives/error.gif

vmesquita 10-22-2003 12:14 PM

Vai te dar um trabalhinho... :wink:
Vc tem que colocar em algum lugar, tipo geocities, yahoo ou coisa assim, pq o forum não comporta mandar imagens maiores. Abra uma conta gratuita de hospedagem em algum lugar e mande pra lá.

[]'s
VMesquita

DigoBrow 10-26-2003 01:39 PM

e ae Vmesquita? recebeu as imagens?
tem alguma ideia do q ser isso?
valeu
abraço
DigoBrow

vmesquita 10-26-2003 06:55 PM

Chegou não... :( Manda de novo...

[]'s
VMesquita

vmesquita 10-27-2003 11:29 AM

Bom, parece algum problema nos filtros. Como é um filme, o ideal é vc fazer inverse Telecine ao invés de desentrelaçar. Assim vc fica com os quadros progressivos originais (23.976fps) Vc irá precisar do plugin decomb. Seu script ficaria assim:
Quote:

#==============================================
# An AviSynth 2.5 Script für (PAL) Tv Captures
#==============================================

### The needed Plugins for Avisynth 2.5!!! will be loaded in here
### If you miss one you can find it here:
### http://www.avisynth.org/~warpenterprises/

LoadPlugin("C:\Edicao\AviSynth 2.5\plugins\MPEG2Dec3.dll")
LoadPlugin("C:\Edicao\AviSynth 2.5\plugins\STMedianFilter.dll")
LoadPlugin("C:\Edicao\AviSynth 2.5\plugins\GripFit_YV12.dll")
LoadPlugin("C:\Edicao\AviSynth 2.5\plugins\FluxSmooth-2.5.dll")
LoadPlugin("C:\Edicao\AviSynth 2.5\plugins\Sampler.dll")

### Load the avi file

AviSource("E:\A_Rocha.avi",false)
#AssumeFPS(29.976)

### Change for GripFit into the YV12 colorspace

ConvertToYV12()

### Now we change the size (in here I use 480x480 NTSC SVCD Size)

GripCrop(480, 480, overscan=0, source_anamorphic=false)
GripSize(resizer="BilinearResize")

Telecide()
Decimate(5)



### Unsharp mask using Asharp

asharp(2, 2)

### Now we remove the noise from the capture videostream

FluxSmooth(2, 2) # In case of heavy noise, remove the "#" at the BEGINNING of this line
STMedianFilter(8, 15, 4, 7)

MergeChroma(blur(1.5)
MergeLuma(blur(0.2))

#GripBorders()
AddBorders(0, 25, 0, 25)

### Fading the Video and Audio in at beginning and out at the end
### Thanx for Jorel's advice at KVCD.net so I moved this to
### the end of this script to avoid prediction problems.

FadeIn(50)
FadeOut(125)

sampler(length=24)
Experimente trocar
GripCrop(480, 480, overscan=0, source_anamorphic=false)
GripSize(resizer="BilinearResize")

por
BilinearResize(480,480)

Se continuar dando o problema, vá removendo os filtros um a um até achar qual está causando problema...

[]'s
VMesquita

DigoBrow 10-28-2003 11:28 AM

valeu Vmesquita, vou tentar.
obrigado.

DigoBrow 10-29-2003 12:19 PM

ae Vmesquita
o que deu certo foi a opção seguinte:

Experimente trocar
GripCrop(480, 480, overscan=0, source_anamorphic=false)
GripSize(resizer="BilinearResize")
por
BilinearResize(480,480)

Valeu , obrigado
DigoBrow


All times are GMT -5. The time now is 08:57 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.