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:
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
Code:ffmpeg -loop 12000 -i inputfile -c:v libx264 -preset ultrafast -crf 18 -c:a aac -b:a 160k outputfile.mkv
Code: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 15:51.
Similar Threads
-
looping video message
By Tinpot in forum Newbie / General discussionsReplies: 1Last Post: 28th Dec 2021, 08:49 -
UniConverter v 12 trouble with looping back to the first video?
By Kopter6 in forum Authoring (DVD)Replies: 0Last Post: 20th Aug 2020, 06:49 -
Looping multiple mp4s at once using ffmpeg?
By DrScientist in forum Newbie / General discussionsReplies: 0Last Post: 30th May 2020, 22:50 -
ffmpeg slideshow: why do pictures keep looping a good 2 minutes after audio
By renedevilil in forum Newbie / General discussionsReplies: 0Last Post: 2nd Dec 2019, 16:05 -
What is ADPCM looping ?
By smartel in forum AudioReplies: 3Last Post: 9th Aug 2019, 14:44