View Single Post
Old 29th June 2009, 23:51   #2  |  Link
IanB
Avisynth Developer
 
Join Date: Jan 2003
Location: Melbourne, Australia
Posts: 3,167
"rgb32, 804x80" That is the shape of an error message clip.

You are between a rock and a hard place. You need to see the text of that error message to proceed.

Maybe something like this will help you move forward
Code:
Try {
  v = DirectShowSource("video.grf", audio=false, fps=25, framecount=4000).ConvertToYV12
  a = DirectShowSource("sound.grf", video=false, fps=25, framecount=4000)
  AudioDub(a,v)
}
Catch(err_msg) {
  WriteFileStart("log.txt", err_msg)

# or perhaps

#  BlankClip(100, 804, 80, pixel_type="YV12")
#  Subtitle(err_msg)
}
IanB is offline   Reply With Quote