Hi,
It may be obvious but I've tried without success.
I want to take a single PNG and make it into a five second video. Not sure how to do this?
Thanks!
Single Still To Video
Re: Single Still To Video
Hey Graham,
if you can use A/V decoder, just do it with a Custom Avisynth script:
Above means repeat frame 0 250 times, i think it would also work when written as m_clip=loop(m_clip,250)
Let me know if it works for you!
EDIT: we also have it in the stills decoder, i forgot... i believe it will do more or less the same internally but not 100% sure about it
if you can use A/V decoder, just do it with a Custom Avisynth script:
Code: Select all
m_clip=loop(m_clip,250,0)
Return m_clipLet me know if it works for you!
EDIT: we also have it in the stills decoder, i forgot... i believe it will do more or less the same internally but not 100% sure about it
emcodem, wrapping since 2009 you got the rhyme?
Re: Single Still To Video
Yep. I mean, kinda, but yeah.
If we were writing a script from scratch, we would use the indexer to index the image and specify how many frames and at what framerate we want the image to become in the uncompressed A/V stream in our beloved frameserver.
For instance, to get 2 seconds (i.e 50 frames at 25fps) we would specify: and that's exactly what we're doing in FFAStrans as well, namely using the indexer.
Code: Select all
ImageSource("' & $s_JOB_ORIGINAL_LOCAL_FILE & '", start = 0, end = ' & $i_PROC_LENGTH & ', fps = ' & $i_PROC_FPS & ')'