The link to download The Avisynth BMP loaded on this page https://www.videohelp.com/forum/userguides/99389.php is kinda downSomeone else has an available file online?
I'm trying to convert a BMP to a video clip and got the script from this site:
LoadPlugin("MPEG2DEC.dll")
AudioDub(mpeg2source("C:matrixmatrix.d2v"),
WAVSource("C:rescue.wav")).
BilinearResize(448,404,0,0,720,576).AddBorders(16, 80,16,92)
clip1=Trim(0,999).FadeOut(100)
clip2=Trim(1000,0).Reverse.FadeOut(100).Reverse
LoadPlugin("Avisynth BMP Loader.dll")
BlankClip(250,100,100,"YUY2",25,1,44100,true,true, $000000)
pic=AvisynthBMP_Loader("C:Pics","smile.bmp").
BilinearResize(448,404).AddBorders(16,80,16,92).Re verse.
FadeOut(100).Reverse.FadeOut(100)
UnalignedSplice(clip1,pic,clip2)
what is the d2v file?
Also, what are the things I need to have?
- The wave file (in this case: rescue.wav)
- The bitmap file (in this case smile.bmp)
Do I need a video file or is this automatically created?
I just want to have this bitmap to a video file that's all without any insertion to any clips. Much like a stand-alone video file with nothing but the bitmap file.
Any feedback is appreciated![]()
+ Reply to Thread
Results 1 to 2 of 2
-
-
BMP_Loader comes with the DVD2SVCD package or download the single DLL here (up again)
The script above is an example only. To convert a single image to a video clip it is as easy as that:
Code:LoadPlugin("Avisynth_BMP_Loader.dll") # template: define the framecount, framesize, colorspace, framerate # and audio properties of the clip # the framesize should not be smaller than the image size, otherwise # Avisynth may crash # replace all values below with the ones you need BlankClip(250,140,142,"YUY2",25,1,44100,true,true,$000000) # load the still image, replace path and filename with the real ones AvisynthBMP_Loader("C:\","yourimage.bmp") # resize if necessary BilinearResize( x, y)
Code:# load the plugin LoadPlugin("imagesequence.dll") # open the still image ImageSequence("c:\yourimage.bmp",0, 249, 25)
Code:ImageReader("c:\yourimage.bmp",0, 249, 25)
Similar Threads
-
Paragon GPT Loader and 3TB on Win XP pro SP3 32bit not working
By deejay.2001 in forum ComputerReplies: 3Last Post: 13th Jan 2011, 13:40 -
best burner/image loader
By gooberguy in forum ComputerReplies: 6Last Post: 4th Jul 2009, 08:41 -
Acronis Loader error
By Captain315 in forum ComputerReplies: 8Last Post: 22nd Apr 2009, 22:07 -
receiving bmp using hyperterminal
By emenent in forum ProgrammingReplies: 0Last Post: 24th Sep 2008, 00:45 -
Extracting BMP's from a HDV
By alegator in forum Video ConversionReplies: 3Last Post: 18th Jan 2008, 19:20