Home
RecentChanges

Search:

» AviSynth is a powerful video FrameServer for Win32.

AviSynth Links:
»Download
»Learn to script
»FAQ
»Manual
»Discussion fora
»Project page
»External filters
»FeedBack

» You can add pages to this website immediately. No login required.
Edit this document

» AboutAviSynth

 

Avisynth 
Logo

Loop Deutsch

( This site in flag-uk.gif english )

Loop(clip, int "times", int "start_frame", int "end_frame")

Loop wiederholt das Segment von start_frame bis end_frame so oft wie durch times angegeben.

times (Standardwert = -1): so oft wird die Schleife durchlaufen

start (Standardwert = 0): der Frame vom Clip, bei dem die Schleife startet

end (Standardwert = framecount(clip)): der Frame vom Clip, bei dem die Schleife endet

Beispiele:

Wiederholt Frame 100 bis 110 vom aktuellern Clip 10 mal:

Loop(10,100,110)

Wiederholt den aktuellen Clip praktisch unendlich oft:

Loop()

Wiederholt den Clip 10 mal:

Loop(10)

Wiederholt Frame 20 bis 29 10 mal, bevor weitergespielt wird (der Clip wird um 90 Frames l�nger):

Loop(10,20,29)

Frames 20 bis 29 l�schen (der Clip wird um 10 Frames k�rzer):

Loop(0,20,29)

Frame 20 bis 29 wird unendlich oft wiederholt:

Loop(-1,20,29)

SourceForge Logo

 


Edit this document | View document history
Document last modified Tue, 05 Aug 2003 12:14:37