I have a 3 second video, and I want to loop it so it last for 10 hours. How do I do that?
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 13 of 13
			
		- 
	
- 
	Or google it. Videohelp doesn't always have to be your first port of call. 
 
 https://www.google.com/search?q=how+to+loop+video&oq=how+to+loop+video&aqs=chrome..69i...obile&ie=UTF-8
- 
	Also important question is what equipment will be used to play it. Most PC players have loop playback option. Problem may arise with some standalone players. 
- 
	
- 
	You can use ffmpeg to prepare such video. 
 
 https://trac.ffmpeg.org/wiki/Encode/YouTube
- 
	Does YouTube accept 10hour videos? Extraordinary claims require extraordinary evidence -Carl Sagan
- 
	
 Well, there is example with looping source:
 
 so to modify it for looping 3 seconds into 10 hours you need to modify it in such way:Code:ffmpeg -loop 1 -framerate 2 -i input.png -i audio.m4a -c:v libx264 -preset medium -tune stillimage -crf 18 -c:a copy -shortest -pix_fmt yuv420p output.mkv 
 
 Also there is a chance that bellow example may work (you need to verify).Code:ffmpeg -loop 12000 -i inputfile -c:v libx264 -preset ultrafast -crf 18 -c:a aac -b:a 160k outputfile.mkv 
 
 12000=(10*3600)/3Code:ffmpeg -loop 12000 -i inputfile -c copy -f mpegts outputfile.ts 
 
 Btw - all above is not tested
- 
	I see very little point to going to the trouble of either prepping & uploading, or of DL & viewing, a looped video, when it is SIMPLE to loop in YT already through its player (right-click). 
 
 
 ScottLast edited by Cornucopia; 25th Apr 2024 at 16:51. 
Similar Threads
- 
  looping video messageBy Tinpot in forum Newbie / General discussionsReplies: 1Last Post: 28th Dec 2021, 09:49
- 
  UniConverter v 12 trouble with looping back to the first video?By Kopter6 in forum Authoring (DVD)Replies: 0Last Post: 20th Aug 2020, 07:49
- 
  Looping multiple mp4s at once using ffmpeg?By DrScientist in forum Newbie / General discussionsReplies: 0Last Post: 30th May 2020, 23:50
- 
  ffmpeg slideshow: why do pictures keep looping a good 2 minutes after audioBy renedevilil in forum Newbie / General discussionsReplies: 0Last Post: 2nd Dec 2019, 17:05
- 
  What is ADPCM looping ?By smartel in forum AudioReplies: 3Last Post: 9th Aug 2019, 15:44


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 
 
			
			

 Quote
 Quote

 
			