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
			
		- 
	
- 
	nopeIs 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: 
 Find the instructions for subtitle here. You will probably just want to play around with the align setting.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 x264By doctormelodious in forum ffmpegX general discussionReplies: 3Last Post: 4th Jul 2010, 09:12
- 
  VirtualDub cannot properly load H.264 Lossless video from AVI or AvisynthBy Jedi787Plus in forum Video ConversionReplies: 1Last Post: 14th Oct 2009, 22:38
- 
  I need some help on writing H.264 AVISynth scriptsBy rocky12 in forum Newbie / General discussionsReplies: 46Last Post: 6th Dec 2008, 14:40
- 
  H.264 deinterlacing AVISynth scripts for 29.97fpsBy PuzZLeR in forum Video ConversionReplies: 12Last Post: 7th May 2008, 23:36
- 
  Having Problems converting h.264 mp4 to xvid using avisynth & vdubmodBy Rusty Shackleford in forum Video ConversionReplies: 3Last Post: 8th May 2007, 04:34


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 Private Message
				Private Message
			 
 
			
			 
			

 Quote
 Quote