Results 1 to 10 of 28

Thread: Create Video from JPEGs

Threaded View

  1. #11
    Join Date
    Feb 2007
    Beans
    2,339
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Create Video from JPEGs

    The commands are supposed to be entered directly into terminal. But if you want to put into a script, add this as the first line:
    Code:
    #!/bin/bash
    So it should look like this:
    Code:
    #!/bin/bash
    
    mkdir out
    for a in $( ls in ); do
    convert "in/$a" -resize 800x600 -background black -gravity center -extent 800x600 "out/$a"
    done
    Last edited by chewearn; January 19th, 2010 at 08:16 PM.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •