How can I add a DateTime text overlay but with a provided DateTime.
I can see in VideoEffectTextLogo that there is a TextLogoMode.DateTime, but this displays the current system time.
Is there a way for me to provide DateTime myself?
Reply
Log in please
Login
I forgot it
Login
Do not have an account?
Register
4 Answers
Jan 23 (8 months ago)
Roman Miniailovagentwrote
Hi
You can convert your DateTime to text and apply this text.
Jan 23 (8 months ago)
Nikolche Petrovskiwrote
Hi, thanks for your response.
The thing is that I need the text to change as the time passes, displaying each second, minute etc. as it comes.
And if I put a text it will be fixed.
Jan 23 (8 months ago)
Roman Miniailovagentwrote
Yes, but DateTime is a struct; you can't attach it as a reference. Maybe we can make a callback or a custom class. Or you can update the effect manually each second.
Jan 23 (8 months ago)
Nikolche Petrovskiwrote
Thanks.
I guess I can try updating each second manually to see how it works, if that's the best way.