Results 1 to 3 of 3

Thread: Convertin any video format to 3gp format

  1. #1
    Join Date
    Jun 2011
    Location
    Juja, KENYA
    Beans
    41
    Distro
    Ubuntu 10.04 Lucid Lynx

    Convertin any video format to 3gp format

    Guys i need help converting videos to 3gp format.

    i have installed transmaggedon software but it fails to convert because quicktime muxer plugin is not installed.

    This plugin is not available in the repositories.

    How can i get this video converter to work or what else can i do to be able to convert videos to 3gp format?

    Thank u!!!
    I intend to live forever...So far so GOOD!
    ~subchief~ =D>

  2. #2
    Join Date
    Dec 2006
    Beans
    7,349

    Re: Convertin any video format to 3gp format

    The 3gp container can hold a quite limited range of codecs, see here for some details. The most compatible pair of codecs would be h263 for the video and amr for the sound, although quality for both of these is never great. A sample commandline for this combination, using FFmpeg, is as follows:

    Code:
    ffmpeg -i <input_file> \
           -s qcif -vcodec h263 \
           -acodec libopencore_amrnb -ac 1 -ar 8000 -r 25 -ab 12200 \
           <output_file>
    This will be ok on an older mobile phone for example but newer devices will support aac sound which will make a huge improvement to playback. Lots of room for experimentation there with the device you wish to use for playback and the codecs available to you .
    You think that's air you're breathing now?

  3. #3
    Join Date
    May 2011
    Location
    Golden, CO
    Beans
    90
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Convertin any video format to 3gp format

    Can't you convert it in OpenShot? Import the file, add it to the timeline, then export it as .3gp and the correct audio codec in the Advanced tab.
    Ubuntu 12.04 for personal use
    Solaris 9, 10 and Red Hat Ent 5 @ work

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
  •