wiseant
18th November 2014, 04:42
Hi
I am working on a video slideshow application
I presume that the video clip sizes will range from 1920x1080 down to 320x180
Right now, the user has the option of choosing up to 46 different transitions.
The user needs to set the number of frames that each image has as well as the number of frames for the transition overlap
For example, my default settings are an Imagesequence of 48 frames and a transition overlap of 24 frames. What this means is that the image will display for 24 frames, then the transition will display for 24 frames, then the second image will appear, etc, etc.
The formula for determining the total framecount for x number of unique images is
((ImageSequence + ImageSequence - overlap) * NumberofImages) - (ImageSequence - overlap) = NumberofFrames
so, with a folder of 1000 images, an Imagesequence of 48 frames and a transition overlap of 24 frames, the total framecount is
((48 + 48 - 24) * 1000) - (48 - 24) = 71976 frames at 24 fps = 49 min 59 secs
if the user wants to encode to DVD or Bluray specs - I need to setup HCEnc and x264 to conform, but if the user just wants a 264/mp4/mkv clip I am wondering if I use options for x264 encoding like --min-keyint = to the number of frames for the transition overlap, and possibly, --tune stillimage, --no-scenecut, --no-deblock if it will make a difference in encoding efficiency / quality?
My concern is that in the above case the first 24 frames are identical, but the next 24 frames will each have a different amount of transition effects applied to it
Right now, I am just using
cd c:\x264
x264.exe --crf 20 --threads 2 --preset superfast -o "transition.264" "c:\transition.avs"
c:\x264\MP4Box.exe -add "transition.264" -new "c:\transition.mp4"
pause
I have a sample for download at mediafire: 12.6 MB, 448x252
http://www.mediafire.com/download/p6t3r94a6upw3da/slideshow.mp4
TIA
I am working on a video slideshow application
I presume that the video clip sizes will range from 1920x1080 down to 320x180
Right now, the user has the option of choosing up to 46 different transitions.
The user needs to set the number of frames that each image has as well as the number of frames for the transition overlap
For example, my default settings are an Imagesequence of 48 frames and a transition overlap of 24 frames. What this means is that the image will display for 24 frames, then the transition will display for 24 frames, then the second image will appear, etc, etc.
The formula for determining the total framecount for x number of unique images is
((ImageSequence + ImageSequence - overlap) * NumberofImages) - (ImageSequence - overlap) = NumberofFrames
so, with a folder of 1000 images, an Imagesequence of 48 frames and a transition overlap of 24 frames, the total framecount is
((48 + 48 - 24) * 1000) - (48 - 24) = 71976 frames at 24 fps = 49 min 59 secs
if the user wants to encode to DVD or Bluray specs - I need to setup HCEnc and x264 to conform, but if the user just wants a 264/mp4/mkv clip I am wondering if I use options for x264 encoding like --min-keyint = to the number of frames for the transition overlap, and possibly, --tune stillimage, --no-scenecut, --no-deblock if it will make a difference in encoding efficiency / quality?
My concern is that in the above case the first 24 frames are identical, but the next 24 frames will each have a different amount of transition effects applied to it
Right now, I am just using
cd c:\x264
x264.exe --crf 20 --threads 2 --preset superfast -o "transition.264" "c:\transition.avs"
c:\x264\MP4Box.exe -add "transition.264" -new "c:\transition.mp4"
pause
I have a sample for download at mediafire: 12.6 MB, 448x252
http://www.mediafire.com/download/p6t3r94a6upw3da/slideshow.mp4
TIA