VideoHelp Forum




+ Reply to Thread
Results 1 to 13 of 13
  1. I have a 3 second video, and I want to loop it so it last for 10 hours. How do I do that?
    Quote Quote  
  2. You need to provide more details about your source and your target.
    Quote Quote  
  3. 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
    Quote Quote  
  4. 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.
    Quote Quote  
  5. Originally Posted by pandy View Post
    You need to provide more details about your source and your target.
    I want to extend my 3 second video to a 10 hour video via looping over and over again and upload it to YouTube.
    Quote Quote  
  6. Does YouTube accept 10hour videos?
    Extraordinary claims require extraordinary evidence -Carl Sagan
    Quote Quote  
  7. Originally Posted by TreeTops View Post
    Does YouTube accept 10hour videos?
    they do and for longer.
    Quote Quote  
  8. Member
    Join Date
    May 2005
    Location
    Australia-PAL Land
    Search Comp PM
    @Pandy, there's nothing in the FFMPEG link you provided about creating looping videos.
    Quote Quote  
  9. Member
    Join Date
    Oct 2007
    Location
    United States
    Search Comp PM
    VLC Media Player(Free Download)
    Quote Quote  
  10. Originally Posted by Alwyn View Post
    @Pandy, there's nothing in the FFMPEG link you provided about creating looping videos.

    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
    so to modify it for looping 3 seconds into 10 hours you need to modify it in such way:

    Code:
    ffmpeg -loop 12000 -i inputfile -c:v libx264 -preset ultrafast -crf 18 -c:a aac -b:a 160k outputfile.mkv
    Also there is a chance that bellow example may work (you need to verify).

    Code:
    ffmpeg -loop 12000 -i inputfile -c copy -f mpegts outputfile.ts
    12000=(10*3600)/3

    Btw - all above is not tested
    Quote Quote  
  11. Member Cornucopia's Avatar
    Join Date
    Oct 2001
    Location
    Deep in the Heart of Texas
    Search PM
    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).


    Scott
    Last edited by Cornucopia; 25th Apr 2024 at 15:51.
    Quote Quote  
  12. AviSynth: Loop(N) where N is the number of times to repeat the sequence (including the original). 10 hours is 36000 seconds. So you need to repeat the sequence 12000 times, Loop(12000).
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!