Quantcast Problemas na Conversão Vídeo... - digitalFAQ.com Forums [Archives]
Go Back    digitalFAQ.com Forums [Archives] > Video Production Forums > Video Encoding and Conversion > Conversão e Codificação de Vídeo (Português)

Reply
 
LinkBack Thread Tools
  #1  
06-16-2004, 06:10 PM
jameslean jameslean is offline
Free Member
 
Join Date: Jun 2004
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
Prezados colegas do Fórum, gostaria que me dessem uma dica, estou tendo o seguinte problema:
Uso o script recomendado no manual do Vmesquita, só que quando vou carregá-lo no TMPGEnc para gerar a amostra de vídeo, aparece a seguinte mensagem sobre as imagens: “script error: syntax error {[ScriptClip], line 2, columm 0}, até consigo gerar a amostra, porém esta mensagem fica sobreposta ao vídeo criado.
Uso o seguinte scipt:
###################################Optimal script ###copie tudo a partir dessa linha############################
## DLL Section ##
# Em cada uma das 6 linhas abaixo deve estar o endereço da sua pasta de plugins do avisynth
LoadPlugin("C:\Arquivos de programas\AviSynth 2.5\plugins\MPEG2Dec3.dll")
LoadPlugin("C:\Arquivos de programas\AviSynth 2.5\plugins\GripFit_YV12.dll")
LoadPlugin("C:\Arquivos de programas\AviSynth 2.5\plugins\STMedianFilter.dll")
LoadPlugin("C:\Arquivos de programas\AviSynth 2.5\plugins\asharp.dll")
LoadPlugin("C:\Arquivos de programas\AviSynth 2.5\plugins\unfilter.dll")
LoadPlugin("C:\Arquivos de programas\AviSynth 2.5\plugins\undot.dll")
#
## Main section and static filters ###
#
Mpeg2Source("Senhor dos Anéis.d2v") #aqui deve estar o nome do projeto. Se vc o salvou como "rojeto", não precisa alterar.
#
undot()
Limiter()
asharp(1, 4)
GripCrop(352, 240, overscan=1,source_anamorphic=true)# Use anamorphic=true para filmes 16:9 e false para 4:3
GripSize(resizer="BicubicResize")
STMedianFilter(3, 3, 1, 1 )
MergeChroma(blur(1.5))
MergeLuma(blur(0.1))
#
## Linear Motion Adaptive Filtering ##
# ( Portions from AviSynth's manual )
# This will apply variable temporalsoften
# and variable blur.
# Both filters are active at all times, and work inversely proportional to the
# activity, measured from current frame to next frame.
ScriptClip(" nf = YDifferenceToNext()" +chr(13)+ "unfilter( -(fmin(round(nf)*2, 100)),
-(fmin(round(nf)*2, 100)) ).TemporalSoften( fmin( round(2/nf), 6), round(1/nf) , round(3/nf),1,1) ")
#
GripBorders()
#LetterBox( Your_Values_Here )
Limiter()
#
## Functions ###
function fmin( int f1, int f2) {
return ( f1<f2 ) ? f1 : f2
}
#vobsub("VTS_01_0.sub") # se você não for usar legendas, adicione um # no inicio dessa linha
converttoyuy2()
Sampler(length=24) # retire o # do inicio dessa linha quando for criar a amostra no tmpgenc
#######################################final do script###copie até essa linha##################################
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Site Staff / Ad Manager
 
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #2  
06-17-2004, 09:29 PM
vmesquita vmesquita is offline
Invalid Email / Banned / Spammer
 
Join Date: May 2003
Posts: 3,726
Thanks: 0
Thanked 0 Times in 0 Posts
Não poste duas vezes a mesma thread, eu deletei a outra thread.
Tente tirar as linhas de comentário e juntar a parte scriptclip:
Code:
LoadPlugin("C:\Arquivos de programas\AviSynth 2.5\plugins\MPEG2Dec3.dll")
LoadPlugin("C:\Arquivos de programas\AviSynth 2.5\plugins\GripFit_YV12.dll")
LoadPlugin("C:\Arquivos de programas\AviSynth 2.5\plugins\STMedianFilter.dll")
LoadPlugin("C:\Arquivos de programas\AviSynth 2.5\plugins\asharp.dll")
LoadPlugin("C:\Arquivos de programas\AviSynth 2.5\plugins\unfilter.dll")
LoadPlugin("C:\Arquivos de programas\AviSynth 2.5\plugins\undot.dll")
#
## Main section and static filters ###
#
Mpeg2Source("Senhor dos Anéis.d2v") #aqui deve estar o nome do projeto. Se vc o salvou como "rojeto", não precisa alterar.
#
undot()
Limiter()
asharp(1, 4)
GripCrop(352, 240, overscan=1,source_anamorphic=true)# Use anamorphic=true para filmes 16:9 e false para 4:3
GripSize(resizer="BicubicResize")
STMedianFilter(3, 3, 1, 1 )
MergeChroma(blur(1.5))
MergeLuma(blur(0.1))
#
## Linear Motion Adaptive Filtering ##
# ( Portions from AviSynth's manual )
# This will apply variable temporalsoften
# and variable blur.
# Both filters are active at all times, and work inversely proportional to the
# activity, measured from current frame to next frame.
ScriptClip(" nf = YDifferenceToNext()" +chr(13)+ "unfilter( -(fmin(round(nf)*2, 100)), -(fmin(round(nf)*2, 100)) ).TemporalSoften( fmin( round(2/nf), 6), round(1/nf) , round(3/nf) , 1, 1)  ")
#
GripBorders()
#LetterBox( Your_Values_Here )
Limiter()
#
## Functions ###
function fmin( int f1, int f2) {
return ( f1<f2 ) ? f1 : f2
}
#vobsub("VTS_01_0.sub") # se você não for usar legendas, adicione um # no inicio dessa linha
converttoyuy2()
Sampler(length=24) # retire o # do inicio dessa linha quando for criar a amostra no tmpgenc
Reply With Quote
  #3  
06-19-2004, 01:33 PM
jameslean jameslean is offline
Free Member
 
Join Date: Jun 2004
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
Sua dica resolveu o problema, agora deu certo, obrigado. Desculpa por eu ter postado duas vezes a mesma thread. :D
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
Conversão Vídeo digital para KVCD? jameslean Conversão e Codificação de Vídeo (Português) 6 09-27-2004 12:52 PM
Problemas na conversão do audio.. me ajudem lorijse Conversão e Codificação de Vídeo (Português) 1 09-27-2004 07:35 AM
OGM para KSVCD - conversão manual problemas sniper Conversão e Codificação de Vídeo (Português) 0 09-08-2004 11:58 AM
Problemas com diko e conversão Mauricio Conversão e Codificação de Vídeo (Português) 1 08-03-2004 10:31 AM
Problemas na Conversão - VirtualDub Mod + TMPGEnc Twyster Conversão e Codificação de Vídeo (Português) 3 07-27-2004 12:19 PM




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