Is it possible to somehow extract single frames from AVI file, edit them in some graphics tool (Pohotoshop, etc...) without changing resolution, of course, and then put them back to AVI ? Thanks.
+ Reply to Thread
Results 1 to 3 of 3
-
-
Ulead MediaStudio pro comes with VideoPaint... it does just that!!! Lets you scrawl all over any frame in your movie :P
I'm guessing any timeline editing software would let you drop a frame into the time line.... s'only a glorified JPEG after all.... thats how I add menu frames to DVD Workshop... it even resizes to the correct dimensions.
Hope this helps
Aussie2Windows has recovered from a serious Error -
If the avi is not the final format but a source for a conversion, then I have a freeware solution.
Extract the frame with Avisynth and TMPGEnc. Here is an example how to edit the 100th frame of a source video, that will be converted to a SVCD compliant MPEG (PAL).
Avisource()
Trim(99,99)
Then load the script as Video source into TMPGEnc, select file > output to file > sequence bmp file, save as *.bmp.
Load the *.bmp into your favorite image editor (gimp?).
Add the edited frame to the video again:
AVISource()
clip1=Trim(0,98)
clip2=Trim(100,0)
LoadPlugin("Avisynth BMP Loader.dll")
BlankClip(25,480,576,"YUY2",25,1,44100,true,true,$ 000000)
pic=AvisynthBMP_Loader("C:\Pics","smile.bmp")
UnalignedSplice(clip1,pic,clip2)
Add and configure all the other Avisynth filters and load the script into
your favorite video application.
Similar Threads
-
Extracting frames from single PGM file
By lchen in forum MacReplies: 0Last Post: 18th Jun 2010, 04:49 -
What tool to save single frames as JPGs from video playback?
By zdvd in forum Newbie / General discussionsReplies: 3Last Post: 7th Mar 2010, 02:56 -
Cutting a M2V file or editing SINGLE FRAMES of it
By lorix in forum EditingReplies: 3Last Post: 13th Nov 2008, 03:05 -
How to remove a single or more frames from a DVD
By justmehere in forum Authoring (DVD)Replies: 2Last Post: 22nd Apr 2008, 12:06 -
How do I import multiple dvds then edit them into a single compilation?
By bumblebee21 in forum Newbie / General discussionsReplies: 5Last Post: 15th Aug 2007, 14:33