My friend sent me 300 templates that are in MOV format. The problem is that all of them are 1080 x 1920. I need them to be 720 x 1280.
So I spent a day searching for a program that could batch change the size of the templates and still maintain the Alpha Channel to Yes.
I tried a few and they did change the size but for whatever reason they did not maintain the Alpha Channel to Yes.
Does anyone know of a program that can batch change the size of mov video (templates) and still maintain the alpha channel to yes?
Thanks
+ Reply to Thread
Results 1 to 4 of 4
-
-
Yes, you can do it with an ffmpeg batch file . You can also probably make a preset with ffqueue or tencoder (which are GUI's for ffmpeg) to do it
The 2 most commonly MOV formats used with alpha channel are QTRLE (ie "quicktime animation codec") and PNG (which is really the same as the image format PNG) . PNG will yield smaller filesizes due to compression, but slower performance because it's more compressed
Code:for %%a in ("*.mov") do ffmpeg -i "%%a" -s 720x1280 -pix_fmt rgba -c:v qtrle -c:a copy "%%~na.720x1280.mov" pause
Similar Threads
-
Test for alpha channel?
By terrypin in forum Newbie / General discussionsReplies: 7Last Post: 19th Jul 2015, 14:06 -
ALPHA Channel videos - use in Nero 15
By Clark711 in forum Newbie / General discussionsReplies: 19Last Post: 28th Dec 2014, 21:18 -
convert .mov with alpha channel to .AVI with RGBA
By raudbul in forum Video ConversionReplies: 21Last Post: 21st Jun 2014, 13:55 -
Problems with Alpha Channel
By CKyle in forum Newbie / General discussionsReplies: 3Last Post: 9th Mar 2011, 16:02 -
VP6a encoding / video with alpha channel
By GRUMBLE in forum Video ConversionReplies: 2Last Post: 26th Aug 2010, 04:08