Hi,
I have a couple of H.264 clips taken from my Mino HD that I want to add text and stack vertically as simply as possible. I have the AviSynth scripts written, but I do not know how to process them.
Super always tries to re-encode with the selected parameters and VirtualDub wants to convert to AVI...
Is there a way to apply these filters and save the output without re-encoding the videos? Kind of like when you do "play" and WMPlayer pops up, but save the output...
Thanks!
+ Reply to Thread
Results 1 to 5 of 5
-
-
Is there a way to apply these filters and save the output without re-encoding the videos?
when you use avisynth you have to re-encode , because it's frameserving uncompressed video
you could play that .avs in a media player as a "proxy" (i.e. use that .avs as if it was your video) -
Your avisynth file could be something as simple as this:
Code:a=ffmpegsource2("video1.mp4").subtitle("Whatever text you want here", align=8) # don't know what container the Mino uses for H.264 video b=ffmpegsource2("video2.mp4").subtitle("Whatever text you want here", align=8) StackHorizontal(a, b) #StackVertical(a, b) # uncomment if you want to stack vertically and comment out the StackHorizontal
You can then pass that through the command line version of x264 if you want. Something like this:
Code:x264 --crf 18 -o newvideo.mp4 video.avs
Similar Threads
-
Empty audio files when converting MPEG2 with h.264 mencoder or h.264 x264
By doctormelodious in forum ffmpegX general discussionReplies: 3Last Post: 4th Jul 2010, 08:12 -
VirtualDub cannot properly load H.264 Lossless video from AVI or Avisynth
By Jedi787Plus in forum Video ConversionReplies: 1Last Post: 14th Oct 2009, 21:38 -
I need some help on writing H.264 AVISynth scripts
By rocky12 in forum Newbie / General discussionsReplies: 46Last Post: 6th Dec 2008, 13:40 -
H.264 deinterlacing AVISynth scripts for 29.97fps
By PuzZLeR in forum Video ConversionReplies: 12Last Post: 7th May 2008, 22:36 -
Having Problems converting h.264 mp4 to xvid using avisynth & vdubmod
By Rusty Shackleford in forum Video ConversionReplies: 3Last Post: 8th May 2007, 03:34