Hi i need to make a video (ON gps) using still image on AVI SYNTH. At the same time i have to use atleast three editing techniques they are a)dissolve, b)fade, C)crop, d)resize and e)zoom. i wrote my script but i couldn't play the video. please help.

# Aliasing GPS Image Video
#Name the GPS image
Pier="..\..\Images\GPS.JPG"
# Create GPS clip frame rate 25 fps
# and lasting 8 seconds or 200 frames
GPSClip=ImageReader(GPS,fps=25,end=199)
# Crop a lower corner of the clip to 320 by 240
CroppedGPS=Crop(GPSClip,1600-320,1200-240,320,240)
#Full frame aliased image
AllGPS=PointResize(GPSClip,320,240)
#Full frame anti-aliased image
AAAllGPS=BilinearResize(GPSClip,320,240)
# Scene 1 Create and name the 5 second Black clip
BlankBlack=BlankClip(CroppedGPS,124)
#Scene 2
#Add a title to the cropped GPS image
GPSAndTitle=Subtitle(Trim(CroppedPier,0,74+20),"Aliasing",
\160+30,120,10,align=5,size=48,text_color=color_crimson)

#-----------------------------------------------------------------------
#Combine the scenes
#Assemble the first scenes
Opening=BlankBlack+FadeIn(GPSAndTitle,20)
#Dissolve opening to Scene 3
Scene1To2=Dissolve(Opening,CroppedPierPan,20)

If you have a programming question, it would be more efficient if you specify the programming language in the subject area, such as:

programming SQL, or
programming Flash,
etc.

This will make the topic more specific and get a faster and more relevant response.

i need to write a SCRIPT for an AVI SYNTH programme, so i can make video from still images. Thanks

See details of original post.

It seems like your script is missing some important elements to play the video. Here are a few things you need to do to properly play the video:

1. Install AVISynth: AVISynth is a powerful video editing and scripting software. Make sure you have it installed on your computer before running the script.

2. Check file paths: Double-check the file paths of your images. Ensure that the path you provide is correct and that the image files are in the specified location.

3. Import necessary plugins: AVISynth requires specific plugins to execute some functions. Make sure you have the necessary plugins imported in your script. For example, if you're using the `Dissolve()` function, you may need to have the `Transition` plugin imported.

4. Save the script as a .avs file: Save the script with a .avs extension. For example, save your script as `myvideo.avs`.

5. Run the script using a media player: Open your script in a media player that supports AVISynth scripts, such as VirtualDub or AvsPmod. Simply open the .avs file in the media player, and it should play the video according to your script.

By following these steps, you should be able to play the video. If you encounter any specific error messages or issues, please provide more details so that I can assist you further.