Is the AviSynth a good program to create a photo slideshow
The end result I want to keep the images (3648*2736 6meg) still as high as possible
I was using windows movie maker and got 720*576
Using AviSynth i got 3648*2736 so higher quailty
Being a AviSynth beginner just wondering how to increase the length an image is displayed
And anything else i should know... fading etc
+ Reply to Thread
Results 1 to 6 of 6
-
-
And then, you'll be ready 4 da nekst stage:
http://avisynth.org/vcmohan/TransAll/docs/index.html -
Ok so far ive have just got the simple code
ImageSource("IMG_00%02d.jpg", 3, 11, 0.2)
Loads in my images and displays each for 5 sec..
Now am trying to figure an easy way to fade (or something) between each image.... -
As far as I know, there is no easy to do what you want. You'll have to load each pic individually as explained in the Dissolve link above, and apply each transition individually.
You may be happier using a slideshow program. There are a bunch of them, and maybe check out the guides here:
https://www.videohelp.com/guides?searchtext=&tools=&madeby=&formatconversionselect=&how...or+List+Guides -
I put the photos in the midle of video scenes fading one into other like this:
video = AudioDub(DirectShowSource("SANY1685.MP4", fps=29.97, pixel_type="YV12"), WavSource("Bells.wav")) # add custom audio to intro video
video = Dissolve(video, ConvertToYV12(AudioDub(ImageSource("SANY1728a.JPG" , end=200, fps=29.97, pixel_type="RGB24"), WavSource("Silence 6 s.wav"))),185) # add video title
video = Dissolve(video, Trim(DirectShowSource("SANY1730.MP4", fps=29.97, pixel_type="YV12"),119,298),15) # fade title into next clip
video = video ++ Trim(DirectShowSource("SANY1731.MP4", fps=29.97, pixel_type="YV12"),97,350) # other clips
video = video ++ Trim(DirectShowSource("SANY1732.MP4", fps=29.97, pixel_type="YV12"),0,694)
video = video ++ Trim(DirectShowSource("SANY1733.MP4", fps=29.97, pixel_type="YV12"),0,0)
video = video ++ Trim(DirectShowSource("SANY1735.MP4", fps=29.97, pixel_type="YV12"),0,2800)
video = video ++ Trim(DirectShowSource("SANY1738.MP4", fps=29.97, pixel_type="YV12"),663,913)
video = video ++ Trim(DirectShowSource("SANY1745.MP4", fps=29.97, pixel_type="YV12"),1241,1406)
video = video ++ Trim(DirectShowSource("SANY1745.MP4", fps=29.97, pixel_type="YV12"),1562,1650)
video = Dissolve(video, ConvertToYV12(AudioDub(ImageSource("SANY1752a.JPG" , end=90, fps=29.97, pixel_type="RGB24"), WavSource("Silence 1 s.wav"))),30) # short slide show, pics stay 60secs, fade in 30 secs
video = Dissolve(video, ConvertToYV12(AudioDub(ImageSource("SANY1758a.JPG" , end=90, fps=29.97, pixel_type="RGB24"), WavSource("Silence 1 s.wav"))),30)
video = Dissolve(video, ConvertToYV12(AudioDub(BicubicResize(ImageSource(" SANY1760.JPG", end=90, fps=29.97, pixel_type="RGB24"),1920,1080), WavSource("Silence 1 s.wav"))),30)
video = Dissolve(video, ConvertToYV12(AudioDub(BicubicResize(ImageSource(" SANY1761.JPG", end=90, fps=29.97, pixel_type="RGB24"),1920,1080), WavSource("Silence 1 s.wav"))),30)
video # return video
PointResize(1920/2,1080/2) # downsample for previewCann't tell it's possible don't tell anything.
Similar Threads
-
Photo to Video? Slideshow
By patmann03 in forum Newbie / General discussionsReplies: 1Last Post: 17th Feb 2011, 09:24 -
DVD Photo Slideshow
By jet757f in forum Newbie / General discussionsReplies: 9Last Post: 13th Dec 2010, 12:54 -
photo slideshow advice
By bettytron in forum Authoring (DVD)Replies: 0Last Post: 20th Jun 2010, 00:17 -
Photo to DVD slideshow software
By Yaro in forum Newbie / General discussionsReplies: 1Last Post: 1st Sep 2009, 07:53 -
Photo to DVD, slideshow speed
By leslieshen in forum Video ConversionReplies: 2Last Post: 29th Oct 2008, 08:51