How to convert flv video to 3gp video?

1

1

How to convert .flv video format to .3gp for use on an Android device using a desktop computer?

Amit Thaper

Posted 2010-06-09T11:55:49.330

Reputation:

Answers

3

Download and install FFmpeg. The following command will encode to h.264 video with the baseline profile, as demanded by the Android media player.

To change the quality, change the crf parameter. Lower means better, and sane values are from 19 to 25 or more.

As audio, AAC is used with a bitrate of 192 kBit/s.

ffmpeg -i input.mp4 -c:v libx264 -profile:v baseline -crf 23 -c:a libfaac -b:a 192k out.3gp

Will

Posted 2010-06-09T11:55:49.330

Reputation: 329

2

Will provided a link to ffmpeg - This is a good solution, but if you don't know or want to mess around with command prompt tools, I recommend that you take a look at Handbrake.

Handbrake is a very capable, free, video converter.

William Hilsum

Posted 2010-06-09T11:55:49.330

Reputation: 111 572

0

Zamzar is an online conversion utility that can do this without installing software if you are looking for a way to do it from any box.

David Remy

Posted 2010-06-09T11:55:49.330

Reputation: 1 899

0

WinFF should be able to do it. It has a number of presets for various mobile devices.

Force Flow

Posted 2010-06-09T11:55:49.330

Reputation: 3 850