Log in

View Full Version : No video when converting AVS scripts with Nero Vision


svgame
29th October 2007, 09:41
when i transform the *.avs files,only can hear voice no see the picture!!!!!for nero vision!!!!!!!!!

svgame
29th October 2007, 11:38
Use WMP can play is avs.there's no any problem,but is Nero Vision can't find the Video stream,any audio~~

there is my avs file:
directshowsource("F:\MKV\T2-001-muxed-001.mkv")
convertToYV12()
crop(0,0,1280,544)
lanczosresize(1280,544)
addborders(0,0,0,0)
loadplugin("D:\Pure Codec\Codecs\VSFilter.dll")
textsub("E:\Eragon.ssa")
trim(0,0)

svgame
30th October 2007, 05:24
help me any body~~~~

clickit
30th October 2007, 06:50
try to play the script with any media player, i would prefer media player classic
can you see any video ?

IanB
30th October 2007, 06:59
Try ConvertToYUY2() or ConvertToRGB() at the end of your script.

svgame
30th October 2007, 15:44
play the script with MPC video and audio no any problem.I try ConvertToYUY2() or ConvertToRGB() at the end of script,but in Nero Vision still only audio``````````tired~~~~~

IanB
30th October 2007, 23:59
Try making a Fake Avi

svgame
31st October 2007, 05:06
I TRY the avi,it's also only audio`````````````

svgame
1st November 2007, 05:36
I think is Nero Vision bug~~

Sagekilla
1st November 2007, 18:03
svgame: there's no need to post so many times in your thread, use the edit function if you need to make an update on the latest post you made.

communist
1st November 2007, 20:12
Does Nero Vision even support avs input?

Placio74
1st November 2007, 20:47
Try making a Fake Avi

As above.
Use makeAVIS and create fake AVI.

Gannjunior
2nd November 2007, 13:41
or try to force an audio track by audiodub.

your script could become:


video=directshowsource("F:\MKV\T2-001-muxed-001.mkv", fps=25).convertToYV12().crop(0,0,1280,544).lanczosresize(1280,544).addborders(0,0,0,0)
audio=directshowsource("f:\mkv\audio_demuxed.aac")

loadplugin("D:\Pure Codec\Codecs\VSFilter.dll")
textsub("E:\Eragon.ssa")
trim(0,0)

muxed=AudioDub(video, audio)

return muxed



you can also load your audio track by mpasource dll.
obvioulsy you have to extact the audio track from the mkv container...
pls note that is better that you specify your framerate video in directshowsource command (in my example I put 25 fps, you put what you need).

ciao!