HELP - how do you make video from pictures

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Antonio
    Too lazy to set a custom title
    • Oct 2001
    • 14136

    #1

    HELP - how do you make video from pictures

    say I have a folder with 30 pics, I want to run a program and it should make me a movie with every single picture say showing for 3 seconds or so, kinda like a slideshow but a movie file (preferably flv format but I can batch convert if I have to)

    tried figuring it out with videocharge but it creates a video which makes only one frame from each image and I don't see an option to change that


    do you know of a program that does this or how can it be done with videocharge?
  • Iron Fist
    Too lazy to set a custom title
    • Dec 2006
    • 23400

    #2
    just click through them VERY FAST and it will look like a video
    i like waffles

    Comment

    • GrouchyAdmin
      Now choke yourself!
      • Apr 2006
      • 12085

      #3
      Code:
      convert `cat list.txt` -delay 3 foo.gif
      ffmpeg -i foo.gif -y foo.flv
      ??

      Comment

      • Antonio
        Too lazy to set a custom title
        • Oct 2001
        • 14136

        #4
        Originally posted by sharphead
        just click through them VERY FAST and it will look like a video
        tried that, it worked well for the first 900 vids, after that all the movies were in a slow motion



        Originally posted by GrouchyAdmin
        Code:
        convert `cat list.txt` -delay 3 foo.gif
        ffmpeg -i foo.gif -y foo.flv
        ??
        that's unix/apache thng no? I want to do that on my desktop

        Comment

        • GrouchyAdmin
          Now choke yourself!
          • Apr 2006
          • 12085

          #5
          Originally posted by Antonio
          that's unix/apache thng no? I want to do that on my desktop
          Yep.

          You could always install win32 ports of ffmpeg and ImageMagick. It'd work the same.

          Comment

          Working...