How do you reduce video from 1920x1080 [or 720] to low res for letting someone see sample of the movie. How low should it be to prevent it being used without permission
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 17 of 17
			
		- 
	
- 
	
- 
	
- 
	
- 
	
- 
	Last edited by David Banner; 18th Apr 2019 at 13:19. 
- 
	Just drop the file into Virtualdub2. You'll see immediately whether it's one or the other 
 and if the result is what you expect
- 
	
- 
	Last edited by David Banner; 19th Apr 2019 at 09:29. 
- 
	Something like: 
 Of course, you'll probably also want to specify the codec and settings:Code:ffmpeg -i input.mp4 -vf scale=w=160:h=90 output.mp4 
 Code:ffmpeg -i input.mp4 -vf scale=w=160:h=90 -c:v libx264 -preset slow -x264opts crf=18:keyint=1 -c:a copy output.mp4 
- 
	Oops, I copied the text from a batch file I was using and I just noticed that I had keyint=1 . You probably don't want that. Just remove it. 
 
 Code:ffmpeg -i input.mp4 -vf scale=w=160:h=90 -c:v libx264 -preset slow -x264opts crf=18 -c:a copy output.mp4 
- 
	Bellow script use ffplay to visualize how it will look - text 'watermark' is placed at random position over video for 55 frames with 60 frames intervals. 
 
 Code:@set filename=%1 @ffplay -loop -1 -hide_banner -loglevel 8 -an -sn -i "%filename%" -vf "drawtext=fontfile=Orbitron.ttf:fontsize=120:fontcolor=gray@0.15:text='watermark':x=if(eq(mod(n\,60)\,0)\,rand(0\,(w-text_w))\,x):y=if(eq(mod(n\,60)\,0)\,rand(0\,(h-text_h))\,y):enable=lt(mod(n\,60)\,55)" 
- 
	Actually, you can just cut a certain video clip from the whole vdieo since you just use it as a sample movie. If you insist on reducing resolution, multiple options are available. Just resort to some professional video converters, most of which have this feature to let you lower the resolution and add some watermarks to your movie. 
 
 Google it and have a try. It's damn easy.
Similar Threads
- 
  low res video recoveryBy Negativepitch in forum RestorationReplies: 10Last Post: 18th Jun 2018, 01:34
- 
  Huappauge hd prv 60 keep 4k resBy conz922 in forum Capturing and VCRReplies: 1Last Post: 24th Apr 2018, 16:21
- 
  JPEG broken for high res photos?By Gurd99 in forum ComputerReplies: 17Last Post: 21st Sep 2017, 06:17
- 
  solution to make low res video bigger without upscalingBy codemaster in forum Software PlayingReplies: 3Last Post: 31st Aug 2016, 13:41
- 
  High bitrate/low res VS Low bitrate/high resBy burakyazan in forum Newbie / General discussionsReplies: 3Last Post: 24th Aug 2014, 08:21


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

 Quote
 Quote
 
 
			
			 seems 480 is the lowest in vegas. There is no render for 160x90
  seems 480 is the lowest in vegas. There is no render for 160x90