pixaeiro
31st October 2014, 13:28
Hello,
I am trying to render a video using ImageSource but I am getting error messages when I mix different file types.
For example, these two scripts are ok:
------------
v00 = ImageSource( "C:/VideoSamples/AviSynthScripts/ImgsBad/frame-00001.bmp", 0, 100, 25.0 )
v01 = ImageSource( "C:/VideoSamples/AviSynthScripts/ImgsBad/frame-01762.bmp", 0, 100, 25.0 )
video = v00 + v01
audio = WAVSource( "C:/VideoSamples/Material/Audio/1.PixaFluxIs.wav" )
AudioDub( video, audio )
------------
v00 = ImageSource( "C:/VideoSamples/AviSynthScripts/ImgsBad/groundhog.png", 0, 100, 25.0 )
v01 = ImageSource( "C:/VideoSamples/AviSynthScripts/ImgsBad/beaver.png", 0, 100, 25.0 )
video = v00 + v01
audio = WAVSource( "C:/VideoSamples/Material/Audio/1.PixaFluxIs.wav" )
AudioDub( video, audio )
------------
But this script:
------------
v00 = ImageSource( "C:/VideoSamples/AviSynthScripts/ImgsBad/frame-00001.bmp", 0, 100, 25.0 )
v01 = ImageSource( "C:/VideoSamples/AviSynthScripts/ImgsBad/frame-01762.bmp", 0, 100, 25.0 )
v02 = ImageSource( "C:/VideoSamples/AviSynthScripts/ImgsBad/beaver.png", 0, 100, 25.0 )
video = v00 + v01 + v02
audio = WAVSource( "C:/VideoSamples/Material/Audio/1.PixaFluxIs.wav" )
AudioDub( video, audio )
------------
Fails with this error message:
------------
Splice: Video formats don't match
(C:\VideoSamples\AviSynthScripts\ImgsBad\script_bad temp files\script_bad_Source.avs, line 4)
------------
And the worst part is that it fails even when all files are BMPs saved by different applications, say one saved by GIMP and the other saved by PhotoShop.
Is there a rule about this? Or is this a bug?
Thank you!
I am trying to render a video using ImageSource but I am getting error messages when I mix different file types.
For example, these two scripts are ok:
------------
v00 = ImageSource( "C:/VideoSamples/AviSynthScripts/ImgsBad/frame-00001.bmp", 0, 100, 25.0 )
v01 = ImageSource( "C:/VideoSamples/AviSynthScripts/ImgsBad/frame-01762.bmp", 0, 100, 25.0 )
video = v00 + v01
audio = WAVSource( "C:/VideoSamples/Material/Audio/1.PixaFluxIs.wav" )
AudioDub( video, audio )
------------
v00 = ImageSource( "C:/VideoSamples/AviSynthScripts/ImgsBad/groundhog.png", 0, 100, 25.0 )
v01 = ImageSource( "C:/VideoSamples/AviSynthScripts/ImgsBad/beaver.png", 0, 100, 25.0 )
video = v00 + v01
audio = WAVSource( "C:/VideoSamples/Material/Audio/1.PixaFluxIs.wav" )
AudioDub( video, audio )
------------
But this script:
------------
v00 = ImageSource( "C:/VideoSamples/AviSynthScripts/ImgsBad/frame-00001.bmp", 0, 100, 25.0 )
v01 = ImageSource( "C:/VideoSamples/AviSynthScripts/ImgsBad/frame-01762.bmp", 0, 100, 25.0 )
v02 = ImageSource( "C:/VideoSamples/AviSynthScripts/ImgsBad/beaver.png", 0, 100, 25.0 )
video = v00 + v01 + v02
audio = WAVSource( "C:/VideoSamples/Material/Audio/1.PixaFluxIs.wav" )
AudioDub( video, audio )
------------
Fails with this error message:
------------
Splice: Video formats don't match
(C:\VideoSamples\AviSynthScripts\ImgsBad\script_bad temp files\script_bad_Source.avs, line 4)
------------
And the worst part is that it fails even when all files are BMPs saved by different applications, say one saved by GIMP and the other saved by PhotoShop.
Is there a rule about this? Or is this a bug?
Thank you!