I have pngs with alpha, I want to turn them to avi and use in premiere, so I could use the alpha transparency to make my premiere project convenient.
I use ffmpeg to do this, but unfortunately, I failed.
First, I use ffmpeg -f image2 -framerate 12 -start_number 24 -i %04d.png cut1.avi
.
This video could import premiere, but it has low quality, and the alpha transparency doesn't work, it has black background.
Then I use ffmpeg with -vcodec
and -c:v
parms to improve quality, but this avi couldn't import to premiere, it tells me format doesn't support.
So, how can I turn pngs to high quality avi and I can import it to pr with alpha transparency?
Thanks.