Android Community
Results 1 to 5 of 5

Thread: An easier way to capture screenshots

  1. #1
    Join Date
    Apr 2009
    Location
    Coral Springs, FL
    Posts
    29

    Default An easier way to capture screenshots


    So I've checked most of the comments and spoke with a few people and gathered that the screenshot app in the market for 2.99 only works with JF builds.
    I'm running the Haykuro build and a few people said it doesn't work with it.

    I've looked at the Developer SDK and that thing is impossible to figure out. Tried it for two days and no luck.

    Is there anybody who can make this app work for Haykuro. If the one in the market does work for this build let me know. Id be willing to pay for such a useful app.
    (Bronze T-Mobile G1)
    Rooted (Haykuro 5.0.2. Hr5 Magic)
    2 GB SD card

  2. #2
    Join Date
    Sep 2008
    Location
    Jacksonville, Fl
    Posts
    2,249

    Default Re: An easier way to capture screenshots

    Quote Originally Posted by daflameking View Post
    So I've checked most of the comments and spoke with a few people and gathered that the screenshot app in the market for 2.99 only works with JF builds.
    I'm running the Haykuro build and a few people said it doesn't work with it.

    I've looked at the Developer SDK and that thing is impossible to figure out. Tried it for two days and no luck.

    Is there anybody who can make this app work for Haykuro. If the one in the market does work for this build let me know. Id be willing to pay for such a useful app.
    This App has always worked on Haykuro's builds!

    I've been running his builds since 4.5 and have used that app and it use to be a Free App. But it does work on Haykuro's builds..

    Phone: ·T···Mobile· Sensation4G/G1/Dream/MT4G(Rooted)
    RoM:CyanogenMod 7.0.X Latest N1&MT4G! &
    Unknown # of Apps, 141MB Free!
    Firmware: Ver 2.2 & 2.3 Gingerbread!
    Bootloader: New! 1.33.2005 SPL
    Dropbox Why aren't you using this?
    Jacksonville, Fl Residents click here!
    http://tiny.cc/1OG8bhttp://www.intransitione.com/intrans...x190-64x64.png

  3. #3
    Join Date
    Apr 2009
    Location
    Coral Springs, FL
    Posts
    29

    Default Re: An easier way to capture screenshots

    Ok sorry. Thanks for reassurance.
    (Bronze T-Mobile G1)
    Rooted (Haykuro 5.0.2. Hr5 Magic)
    2 GB SD card

  4. #4

    Default Re: An easier way to capture screenshots

    Here is a snippet that works:

    m_recorder = new MediaRecorder();
    m_recorder.setPreviewDisplay(m_BeMeSurface);
    m_recorder.setAudioSource(MediaRecorder.AudioSourc e.MIC);
    m_recorder.setVideoSource(MediaRecorder.VideoSourc e.DEFAULT);
    m_recorder.setOutputFormat(MediaRecorder.OutputFor mat.THREE_GPP);
    m_recorder.setAudioEncoder(MediaRecorder.AudioEnco der.AMR_NB);
    m_recorder.setVideoEncoder(MediaRecorder.VideoEnco der.MPEG_4_SP);
    m_recorder.setMaxDuration((int) MAX_TIME);
    m_recorder.setOnInfoListener(m_BeMeSelf);
    m_recorder.setVideoSize(320, 240);
    m_recorder.setVideoFrameRate(15);
    m_recorder.setOutputFile(m_path);

    m_recorder.prepare();
    m_recorder.start();
    THE most important thing is the surface. You don't have it, so without it it fails.

    And I am exactly answering this question in the following tutorial:
    http://integratingstuff.wordpress.co...os-on-android/

    Regards,

    Naveed

  5. #5

    Default Re: An easier way to capture screenshots


    sorry for inconvenient message...

Similar Threads

  1. Flash player for G1/ video capture
    By forgotten realms in forum Developers Guild
    Replies: 27
    Last Post: 05-05-2009, 02:29 PM
  2. Video capture,stereo bluetooth and VK coming in January
    By greg1 in forum General HTC Chat
    Replies: 8
    Last Post: 12-21-2008, 12:35 AM
  3. Will modding get easier?
    By teknomanelvis in forum Developers Guild
    Replies: 2
    Last Post: 12-11-2008, 08:47 AM
  4. How-to: Capture the screen of an Android device
    By happyandyv in forum General Phone Chat
    Replies: 11
    Last Post: 10-31-2008, 08:40 PM
  5. Replies: 5
    Last Post: 09-23-2008, 09:07 AM

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
  •