Android Community
Results 1 to 2 of 2

Thread: Batch script for converting large numbers of videos to 3gp for android playback

  1. #1
    Join Date
    Jul 2009
    Posts
    1

    Default Batch script for converting large numbers of videos to 3gp for android playback


    Greetings friends, this was kind of a hassle to put together, so I figured I should post it somewhere for posterity

    This is a windows command line command which will loop through all of the avi files in the current directory and all subdirectories, converting them to 3gp format using H264 and AAC at the proper resolution with FFMPEG

    You have to have FFMPEG and the correct codecs available

    Put this into a file named .bat, then run it (or just paste this command into a windows command shell prompt)

    Code:
    FOR /r %%n IN ("*.avi") DO ffmpeg -i "%%n" -threads 3 -s qcif -vcodec libx264 -acodec libfaac -ac 1 -r 25 -ab 128000 -s 480x320 -y "%%n.3gp"
    There you have it, no need to fork over $30 for some program to do it for you

  2. #2
    Join Date
    Oct 2008
    Location
    Philly
    Posts
    213

    Default Re: Batch script for converting large numbers of videos to 3gp for android playback


    Thank you kind sir. You are a scholar and a gentleman.
    Professional Graphic/Web Designer
    TeamDouche


    My Themes: Mau5, AlienAqua, SystemForce3, and more.
    If you like my contributions..Donate?

Similar Threads

  1. Replies: 9
    Last Post: 12-04-2009, 05:40 PM
  2. Shell Script Help
    By birdman81484 in forum Developers Guild
    Replies: 34
    Last Post: 02-10-2009, 01:54 PM
  3. edit this script!!
    By constellanation in forum Developers Guild
    Replies: 85
    Last Post: 02-07-2009, 03:42 PM
  4. how to use video playback
    By drfunk1986 in forum Off-topic
    Replies: 1
    Last Post: 12-24-2008, 03:14 PM
  5. Follow up on Mobile videos for G1.. Full blown VIDEOS!!!
    By AndroidBoy323 in forum Off-topic
    Replies: 19
    Last Post: 12-18-2008, 04:54 PM

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
  •