Avi2iso - Conversor Multimédia - Site oficial
February 11, 2012, 06:16:35 PM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News: We are back with a new design! Hope you enjoy!
 
   Home   Help Login Register  
Pages: [1]   Go Down
  Print  
Author Topic: ajuda o mais urgente possivel  (Read 47 times)
drake36
Principiante
**
Offline Offline

Posts: 37


« on: February 07, 2012, 09:52:06 PM »

ola a todos bom ano 2012,formatei o meu pc a dias ,nunca tive problemas que não se conseguisem resolver com maior o menor dificuldade ,mas agora ja estou a dois dias a tentar resolver a situação e nada ja estou deseperado , instalei o avi2iso versão 2.10.02
pediu-me para ir buscar um ficheiro a microsoft ,que dizia qualquer coisa c++ ,senão não instalava o codec  xvid2005,fui buscar e instalei,instalei o aviso normalmente ,fiz um ficheiro pequeno a partir dum mkv com o mkv merge,tentei converter para "dvd e deu-me este erro "virtualdub error
avisynth open failure:
ffmpegsource:cant creat decompressor: unsopported compression method.
ja desinstalei tudo varias vezes,ffdshow,xvid avisynth, tudo o que se instala com o programa,mkvac3 tambem desinstalei ,ja nao sei o que fazer ,nunca me tinha acontecido isto ,e sempre que formatei o pc,e foram varias vezes ,instalava o programa na boa ,ate ja instalei o ffmpg separado ,da sempre o mesmo erro,
por favor ajudem -me.
ja agora como se limpa tudo o que diga respeito ao avi2iso do registro ,so falta isso.
obrigado
« Last Edit: February 07, 2012, 11:05:36 PM by drake36 » Logged
Avi2iso - Conversor Multimédia - Site oficial
« on: February 07, 2012, 09:52:06 PM »

 Logged
drake36
Principiante
**
Offline Offline

Posts: 37


« Reply #1 on: February 08, 2012, 06:41:42 PM »

boas ,lembrei-me que ja tive este problema ,mas não me lembra como o resolvi,
uns posts abaixo tenho la"problemas no audio ,fui ler, mas, esta quase tudo apagado ,porquê?
tinha la a solução de certeza.
quem me ajuda.
Logged
drake36
Principiante
**
Offline Offline

Posts: 37


« Reply #2 on: February 09, 2012, 02:54:17 PM »

aonde andas Delta,?
alguem sabe o email dele?
Logged
Delta
Administrador
Especialista
*****
Offline Offline

Posts: 1607


« Reply #3 on: February 09, 2012, 09:26:16 PM »

isso deve ser problemas de codecs

depois de uma instalação nova, e antes de converter qualquer coisa, deves primeiro verificar se consegues ver o filme num player como o Media Player Classic, que é bom
Logged
drake36
Principiante
**
Offline Offline

Posts: 37


« Reply #4 on: February 10, 2012, 01:48:29 AM »

obrigado por responderes,como expliquei em cima formatei o pc,achas que podem ser codecs?,tenho utizado sempre o fdshow e não tem dado problemas,ja desinstalei, e instalei o cccp,o problema mantem-se,entao desinstalei tudo,avi2iso ,xvid,cccp,nero,mkv2ac3,avisynth,volti a instalar tudo de novo por esta ordem
1-nero
2-fdshow
3-avi2iso
fui converter e da o mesmo erro na conversão ,aparece a bandeira vermelha a dizer "bad audio erro no multiplex",e depois aparece a mensagem""virtualdub error
avisynth open failure:
ffmpegsource:cant creat decompressor: unsopported compression method.
tens aqui a script


#----Plugins

LoadPlugin("C:\Programas\AVI2ISO\plugins\Decomb.dll")
LoadPlugin("C:\Programas\AVI2ISO\plugins\vsfilter.dll")
LoadPlugin("C:\Programas\AVI2ISO\plugins\avsmon25a.dll")
LoadPlugin("C:\Programas\AVI2ISO\plugins\ffmpegsource.dll")
Import("C:\Programas\AVI2ISO\plugins\resize.avsi")

#----Core Functions and Variables

Try {
FFmpegSource("C:\DOCUME~1\FERNANDO\AMBIEN~1\movies\DOEC8C~1.MKV")
}
Catch(Err_Msg) {
Try {
DirectShowSource("C:\DOCUME~1\FERNANDO\AMBIEN~1\movies\DOEC8C~1.MKV",audio=false)
}
Catch(Err_Msg) {
BlackNess()
Subtitle("** Codecs em falta **", Size = 45, align = 5)
}
}
converttoyv12()
WIDESCREEN=-1
Overscan=0
source_widescreen=1
Width=720
Height=576

#----Filters

FadeIn(50)

#----Resizing Video

Try {
Lanczos4Resize(720,576)
}
Catch(Err_Msg) {
Lanczos4Resize(720,576)
}

#----Frame Conversions, Subtitles and Monitor


  e aqui tens a outra

LoadPlugin("C:\Programas\AVI2ISO\plugins\AudioLimiter.dll")
LoadPlugin("C:\Programas\AVI2ISO\plugins\soxfilter.dll")
#PLUGINS#

DirectShowSource("C:\DOCUME~1\FERNANDO\AMBIEN~1\NOVAPA~4\audio.ac3")

Try {

    ConvertAudioToFloat().SSRC(48000).#NORM#
 }
Catch(Err_Msg) {

    ConvertAudioToFloat().#NORM#

}

UpMixFarina()
#TEMPO#

Try {
    AssumeSampleRate(48000)
}

Catch(Err_Msg) { }


# Profile to use with audio sources that have a wide range of sound content. 20ms delay and -3db attenuation on surround
function UpMixGeneral( clip a )
{
  Assert( a.AudioChannels == 2, "This clip must have 2 audio channels" )
         front = a.soxfilter("filter 20-20000")
      back = a.soxfilter("filter 100-7000")
      fl = mixaudio(front.GetLeftChannel(),front.GetRightChannel(),0.668,-0.668)
      fr = mixaudio(front.GetRightChannel(),front.GetLeftChannel(),0.668,-0.668)
      cc = mixaudio(mixaudio(front.GetLeftChannel(),fl,1,-1),mixaudio(front.GetRightChannel(),fr,1,-1),0.398,0.398)
      lfe = ConvertToMono(a).SoxFilter("lowpass 120","vol -0.447")
      sl = mixaudio(back.GetLeftChannel(),back.GetRightChannel(),0.473,-0.473)
      sr = mixaudio(back.GetRightChannel(),back.GetLeftChannel(),0.473,-0.473)
      sl = DelayAudio(sl,0.02)
      sr = DelayAudio(sr,0.02)
      return MergeChannels( fl, fr, cc, lfe, sl, sr)
       }


# Multisonic approach Profile modified with 20ms delay and some attenuation on surround
function UpMixMultisonic( clip a )
{
  Assert( a.AudioChannels == 2, "This clip must have 2 audio channels" )
      front = a.soxfilter("filter 20-20000")
      back = a.soxfilter("filter 100-7000")
      fl = mixaudio(front.GetLeftChannel(),front.GetRightChannel(),1,-0.5)
      fr = mixaudio(front.GetRightChannel(),front.GetLeftChannel(),1,-0.5)
      cc = mixaudio(front.GetRightChannel(),front.GetLeftChannel,0.5,0.5)
      lfe = ConvertToMono(a).SoxFilter("lowpass 120","vol -0.5")
      sl = mixaudio(back.GetLeftChannel(),back.GetRightChannel(),0.668,-0.668)
      sr = mixaudio(back.GetRightChannel(),back.GetLeftChannel(),0.668,-0.668)
      sl = DelayAudio(sl,0.02)
      sr = DelayAudio(sr,0.02)
            return MergeChannels( fl, fr, cc, lfe, sl, sr)
       }


# SOS approach Profile with 20ms delay and some attenuation on surround
function UpMixSOS( clip a )
{
  Assert( a.AudioChannels == 2, "This clip must have 2 audio channels" )
      back = a.soxfilter("filter 100-7000")
      fl = a.GetLeftChannel()
      fr = a.GetRightChannel()
      cc = mixaudio(a.GetRightChannel(),a.GetLeftChannel,0.5,0.5)
      lfe = ConvertToMono(a).SoxFilter("lowpass 120","vol -0.5")
      sl = mixaudio(back.GetLeftChannel(),back.GetRightChannel(),0.668,-0.668)
      sr = mixaudio(back.GetRightChannel(),back.GetLeftChannel(),0.668,-0.668)
      sl = DelayAudio(sl,0.02)
      sr = DelayAudio(sr,0.02)
      return MergeChannels( fl, fr, cc, lfe, sl, sr)
       }


# Gerzen approach Profile modified with 20ms delay and some attenuation on surround
function UpMixGerzen( clip a )
{
  Assert( a.AudioChannels == 2, "This clip must have 2 audio channels" )
      front = a.soxfilter("filter 20-20000")
      back = a.soxfilter("filter 100-7000")
      fl = mixaudio(front.GetLeftChannel(),front.GetRightChannel(),0.685,-0.115)
      fr = mixaudio(front.GetRightChannel(),front.GetLeftChannel(),0.685,-0.115)
      cc = mixaudio(front.GetRightChannel(),front.GetLeftChannel,0.4511,0.4511)
      lfe = ConvertToMono(a).SoxFilter("lowpass 120","vol -0.5")
      sl = mixaudio(back.GetLeftChannel(),back.GetRightChannel(),0.668,-0.668)
      sr = mixaudio(back.GetRightChannel(),back.GetLeftChannel(),0.668,-0.668)
      sl = DelayAudio(sl,0.02)
      sr = DelayAudio(sr,0.02)
      return MergeChannels( fl, fr, cc, lfe, sl, sr)
       }


# Farina/Sursound approach Profile M=L+R, S=L-R, c=0.75, L' = (1-c/4)*M+(1+c/4)*S, C' = c*M, R' = (1-c/4)*M-(1+c/4)*S
# also added with 20ms delay and some attenuation on surround
function UpMixFarina( clip a )
{
  Assert( a.AudioChannels == 2, "This clip must have 2 audio channels" )
      front = a.soxfilter("filter 20-20000")
      back = a.soxfilter("filter 100-7000")
      fl = mixaudio(mixaudio(front.GetLeftChannel(),front.GetRightChannel(),0.300,0.300),mixaudio(front.GetLeftChannel(),front.GetRightChannel(),0.300,-0.300),0.7125,1.2875)
      fr = mixaudio(mixaudio(front.GetLeftChannel(),front.GetRightChannel(),0.300,0.300),mixaudio(front.GetLeftChannel(),front.GetRightChannel(),0.300,-0.300),0.7125,-1.2875)
      cc = mixaudio(front.GetRightChannel(),front.GetLeftChannel,0.465,0.465).wavgainlimiter(0.9)
      lfe = ConvertToMono(a).SoxFilter("lowpass 90","vol 0.9")
      sl = mixaudio(back.GetLeftChannel(),back.GetRightChannel(),0.475,-0.475).wavgainlimiter(1.2)
      sr = mixaudio(back.GetRightChannel(),back.GetLeftChannel(),0.475,-0.475).wavgainlimiter(1.2)
      sl = DelayAudio(sl,0.02)
      sr = DelayAudio(sr,0.02)
           return MergeChannels( fl, fr, cc, lfe, sl, sr)
       }

#Profile made by jagger to emulate levels outputed by AC3Filter.
function UpMixJagger( clip a )
{
  Assert( a.AudioChannels == 2, "This clip must have 2 audio channels" )
      back = a.soxfilter("filter 100-7000")
      fl = a.GetLeftChannel()
      fr = a.GetRightChannel()
      cc = mixaudio(a.GetRightChannel(),a.GetLeftChannel,0.707,0.707)
      lfe = ConvertToMono(a).SoxFilter("lowpass 120","vol 1.5")
      sl = mixaudio(back.GetLeftChannel(),back.GetRightChannel(),0.5,-0.5)
      sr = mixaudio(back.GetRightChannel(),back.GetLeftChannel(),0.5,-0.5)
      return MergeChannels( fl, fr, cc, lfe, sl, sr).wavgainlimiter(1.0)
       }

#Profile made by jagger designed for 5.1 through headphones.
function UpMixHeadphones( clip a )
{
  Assert( a.AudioChannels == 2, "This clip must have 2 audio channels" )
      front = a.soxfilter("filter 500-10000")
      back = a.soxfilter("filter 100-7000")
      fl = a.GetLeftChannel()
      fr = a.GetRightChannel()
      cc = mixaudio(front.GetRightChannel(),front.GetLeftChannel,0.707,0.707)
      lfe = ConvertToMono(a).SoxFilter("filter 20-3000","vol 1.3")
      sl = mixaudio(back.GetLeftChannel(),back.GetRightChannel(),0.5,-0.5)
      sr = mixaudio(back.GetRightChannel(),back.GetLeftChannel(),0.5,-0.5)
      return MergeChannels( fl, fr, cc, lfe, sl, sr).wavgainlimiter(1.0)
}

achas que podem ser mesmo codecs? experimentei a brir o filme no nero showtime e esta bom ,no windows mwdiea player tambem
este ficheiro é uma sample ,retirado de um mkv ,e feito com mkv merge
é que ja não sei o que fazer ,e a solução esteve noutro post meu ,so que tem respostas e teste apagados,
e agora não me lembro ,talvez se analizares as scripts me possas ajudar,
jã experimentei com outros ficheiros e sempre o mesmo resultado
obrigado
Logged
Delta
Administrador
Especialista
*****
Offline Offline

Posts: 1607


« Reply #5 on: February 10, 2012, 03:40:05 PM »

Quais são as características desse MKV ?

usa o MediaInfo para obter essa informação

e monstra a imagem do erro, vendo a imagem eu talvez tenha mais pistas

sendo o AVI2ISO um programa descontinuado, atendendo até às novas releases dos filmes MKV, deves usar primeiro o MKV2AC3, que é o meu novo projecto e que tenho investido nele
« Last Edit: February 10, 2012, 08:21:41 PM by Delta » Logged
drake36
Principiante
**
Offline Offline

Posts: 37


« Reply #6 on: Today at 02:38:27 AM »

boas Delta ,tens aqui a info,tirei com o Super ,acho que consegues analizar as caracteristicas,amanha,tiro uma foto do erro e ponho aqui se der,mas em cima tens a explicação do que aparece


Complete name : C:\Documents and Settings\FERNANDO\Ambiente de trabalho\movies\Anonymous 2011 720p BRRip [A Release-Lounge H264].mkv
Format : MPEG-4
Format profile : Base Media / Version 2
Codec ID : mp42
File size : 2.24 GiB
Duration : 2h 9mn
Overall bit rate : 2 470 Kbps
Encoded date : UTC 2012-01-21 18:18:26
Tagged date : UTC 2012-01-21 18:18:26

Video ID : 1
Format : AVC
Format/Info : Advanced Video Codec
Format profile : High@L4.1
Format settings, CABAC : Yes
Format settings, ReFrames : 5 frames
Format settings, GOP : M=1, N=48
Codec ID : avc1
Codec ID/Info : Advanced Video Coding
Duration : 2h 9mn
Bit rate mode : Variable
Bit rate : 2 031 Kbps
Maximum bit rate : 14.3 Mbps
Width : 1 280 pixels
Height : 544 pixels
Display aspect ratio : 2.35:1
Frame rate mode : Constant
Frame rate : 23.976 fps
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Progressive
Bits/(Pixel*Frame) : 0.122
Stream size : 1.83 GiB (82%)
Title : � 
Writing library : x264 core 120 r2146 bcd41db
Encoding settings : cabac=1 / ref=5 / deblock=1:0:0 / analyse=0x3:0x113 / me=umh / subme=7 / psy=1 / psy_rd=1.00:0.00 / mixed_ref=1 / me_range=32 / chroma_me=1 / trellis=2 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=0 / chroma_qp_offset=-2 / threads=12 / sliced_threads=0 / slices=4 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / constrained_intra=0 / bframes=4 / b_pyramid=0 / b_adapt=2 / b_bias=0 / direct=1 / weightb=1 / open_gop=0 / weightp=2 / keyint=240 / keyint_min=23 / scenecut=40 / intra_refresh=0 / rc_lookahead=50 / rc=2pass / mbtree=1 / bitrate=2031 / ratetol=1.0 / qcomp=0.60 / qpmin=10 / qpmax=51 / qpstep=4 / cplxblur=20.0 / qblur=0.5 / vbv_maxrate=25000 / vbv_bufsize=25000 / nal_hrd=none / ip_ratio=1.40 / aq=1:1.00
Encoded date : UTC 2012-01-21 18:18:26
Tagged date : UTC 2012-01-21 18:20:38

audio



ID : 3
Format : AAC
Format/Info : Advanced Audio Codec
Format profile : LC
Codec ID : 40
Duration : 2h 9mn
Bit rate mode : Variable
Bit rate : 128 Kbps
Maximum bit rate : 175 Kbps
Channel(s) : 2 channels
Channel positions : Front: L R
Sampling rate : 48.0 KHz
Compression mode : Lossy
Stream size : 119 MiB (5%)
Title : � 
Encoded date : UTC 2012-01-21 18:20:27
Tagged date : UTC 2012-01-21 18:20:38

Logged
Delta
Administrador
Especialista
*****
Offline Offline

Posts: 1607


« Reply #7 on: Today at 02:15:48 PM »

tenta usar o MKV2AC3 para converter isso para AC3

e depois usa o AVI2ISO

o MKV2AC3 é o meu novo projecto e está bem actualizado, programas como o AVI2ISO já não se justificam hoje em dia por isso desde 2010 que não o actualizo

O MKV2AC3 além de actualizado é muito usado por pessoas que usam TVs LCD multimedia, pesquisa no Google e vê

se não conseguires marcamos uma hora e falas comigo via MSN
Logged
Pages: [1]   Go Up
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.13 | SMF © 2006-2011, Simple Machines LLC
SMFAds for Free Forums
Valid XHTML 1.0! Valid CSS!