prev/next

Android

Android XML template

Standard template for Android preset:

<format>
    <output>android</output>
    <size>800x480</size>
    <bitrate>1024k</bitrate>
    <audio_bitrate>12.2k</audio_bitrate>
    <audio_sample_rate>8000</audio_sample_rate>
    <audio_channels_number>1</audio_channels_number>
    <framerate>30</framerate>
    <keep_aspect_ratio>yes</keep_aspect_ratio>
    <video_codec>mpeg4</video_codec>
    <profile>baseline</profile>
    <VCodecParameters>no</VCodecParameters>
    <audio_codec>libamr_nb</audio_codec>
    <two_pass>no</two_pass>
    <cbr>no</cbr>
    <deinterlacing>no</deinterlacing>
    <keyframe>300</keyframe>
    <audio_volume>100</audio_volume>
    <file_extension>3gp</file_extension>
</format>
 

Standard template for Android preset:

<format>
    <output>android</output>
    <size>800x480</size>
    <bitrate>1024k</bitrate>
    <audio_bitrate>12.2k</audio_bitrate>
    <audio_sample_rate>8000</audio_sample_rate>
    <audio_channels_number>1</audio_channels_number>
    <framerate>30</framerate>
    <keep_aspect_ratio>yes</keep_aspect_ratio>
    <video_codec>mpeg4</video_codec>
    <profile>baseline</profile>
    <VCodecParameters>no</VCodecParameters>
    <audio_codec>libamr_nb</audio_codec>
    <two_pass>no</two_pass>
    <cbr>no</cbr>
    <deinterlacing>no</deinterlacing>
    <keyframe>300</keyframe>
    <audio_volume>100</audio_volume>
    <file_extension>3gp</file_extension>
</format>
 
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 3 times):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

How do I create videos for the Verizon Droid Incredible?

 

On the Droid incredible, 480x800 is the screen resolution. Generating a working file for the Droid phones can be extremely difficult to find information for, however, in the user guide ( http://cache.vzw.com/multimedia/mim/htc_incredible/incredible.pdf ), some basic supported video types are pointed out (Pg 202, Specifications).

 The four supported video types: .3gp, 3g2, .mp4, .wmv

 More -->

 

On the Droid incredible, 480x800 is the screen resolution. Generating a working file for the Droid phones can be extremely difficult to find information for, however, in the user guide (http://cache.vzw.com/multimedia/mim/htc_incredible/incredible.pdf), some basic supported video types are pointed out (Pg 202, Specifications).

 The four supported video types: .3gp, 3g2, .mp4, .wmv

Of these, .3gp is the native capture for the device.  When a video is shot on the phone, and inspected in Quicktime, it shows:

  • .3gp
  • MPEG4
  • 800x480
  • AMR Narrowband 8KHz
  • Bitrate: 2000 Kbps  

For making video to these devices, MPEG4 video is an excellent codec in this case, as it gives good quality and compression, and AMR Narrowband is the audio of choice. 3gp is the wrapper of choice for encoding as well, as it is the native supported file type. A sample of a working xml (with only relevant lines) is below:

        <output>3gp</output>

	<video_codec>mpeg4</video_codec>

	<audio_codec>libamr_nb</audio_codec>

	<bitrate>1024k</bitrate>    

	<size>800x480</size>

Note, for compatibility with older Droid phones, encoding the video at 480x320 could be handy, and looks pretty good on the devices as well.  

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 2 times):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter