@@ -16,25 +16,26 @@ Below is an example of the last feature added (code) and the result (video).
1616from videocode.VideoCode import *
1717
1818x = 700
19- y = 100
19+ y = 10
2020
2121# text: Video-Code
22- t = text(" Video-Code" , 3 ).apply(translate(x, y), repeat(40 ))
23- t[:20 ].apply(fadeIn())
24- t[20 :].apply(fadeOut())
22+ t = text(" Video-Code" , 3 ).apply(translate(x, y), repeat(24 * 4 ))
23+ t[: 24 * 3 ].apply(fadeIn(LEFT ))
2524t.add()
25+ t.keep()
2626
27- # text: Made by:
28- t = text(" made by" , 3 ).apply(translate(x, y), repeat(40 ))
29- t[:20 ].apply(fadeIn())
30- t[20 :].apply(fadeOut())
27+ # text: Made by
28+ t = text(" made by" , 3 ).apply(translate(x, y + 80 ), repeat(24 * 4 ))
29+ t[: 24 * 3 ].apply(fadeIn(LEFT ))
3130t.add()
31+ t.keep()
3232
3333
3434# Me
35- v = video(" video/v.mp4" ).apply(translate(x, y + 100 ))
36- v[0 :20 ].apply(fadeIn()).add()
37- v[20 :40 ].apply(fadeOut()).add()
35+ v = video(" video/v.mp4" ).apply(translate(x, y + 175 ))
36+ v[0 :20 ].apply(fadeIn())
37+ v.add()
38+ v.keep()
3839```
3940
4041<img src =" docs/readme/example.gif " style =" width : 50% ;" >
@@ -87,6 +88,8 @@ To add the frames of the __Input__ to the timeline, use the __\<Input\>.add()__
8788 <summary><code>Patchs</code></summary>
8889<br >
8990
91+ - ` feature ` : keep last frame of input on screen (06/03/25)
92+ - ` rework ` : one stack (06/03/25)
9093- ` transformation ` : repeat (03/03/25)
9194- ` input ` : text (03/03/25)
9295- ` rework ` : position of the frames (02/03/25)
0 commit comments