BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 03-10-2010, 02:37 AM   #1
neha.chaudhary
Knows Where the Search Button Is
 
Join Date: Jan 2010
Model: 8900
PIN: N/A
Carrier: trainee
Posts: 30
Default make more than one clip while recording

Please Login to Remove!

hi !

how to make more than one video clip,while recording.
is it possible using for loop?

i m using following code to record one clip:

private class StartRecordingThread extends Thread
{
public void run()
{
try{

videoEncodings = System
.getProperty("video.encodings");

final boolean hasVideoRecording = videoEncodings != null
&& videoEncodings.length() > 0;

if (player == null || recorder == null)
{
if (hasVideoRecording)
{
int encodingSpace = videoEncodings
.indexOf(' ');
if (encodingSpace != -1)
{
videoEncodings = videoEncodings
.substring(0, encodingSpace);
}
player = Manager
.createPlayer("capture://video?"
+ videoEncodings);
player.start();
VideoControl video = (VideoControl) player
.getControl("VideoControl");
cameraView = (Field) video
.initDisplayMode(
VideoControl.USE_GUI_PRIMITIVE,
"net.rim.device.api.ui.Field");
getApplication().invokeLater(new Runnable()
{
public void run()
{
add(cameraView);
}
});

}

recorder = (RecordControl) player
.getControl("RecordControl");
}


String PATH = System.getProperty("fileconn.dir.videos") + "video.3gp";
conn = (FileConnection)Connector.open(PATH,Connector.READ _WRITE);
if(!conn.exists())
conn.create();
conn.truncate(0);
// conn.close();

OutputStream out=conn.openDataOutputStream();
recorder.setRecordStream(out);
recorder.startRecord();
recording = true;
Thread.currentThread().sleep(15000);
recorder.stopRecord();
recorder.commit();
recording = false;
out.close();
conn.close();

player.stop();
player.deallocate();
player.close();
//conn.close();//end of fro loop
}
catch (Throwable t)
{
Dialog.alert(t.getMessage());
t.printStackTrace();
}
}

}
Offline  
Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


Serta Big and Tall Commercial Office Chair Memory Foam 350 Lb Capacity Black NEW picture

Serta Big and Tall Commercial Office Chair Memory Foam 350 Lb Capacity Black NEW

$169.99



Serta Big and Tall Commercial Office Chair Memory Foam 350 Lb Capacity Brown picture

Serta Big and Tall Commercial Office Chair Memory Foam 350 Lb Capacity Brown

$169.99



New In Box SIEMENS 6ES7954-8LF03-0AA0 6ES7 954-8LF03-0AA0 Memory Card picture

New In Box SIEMENS 6ES7954-8LF03-0AA0 6ES7 954-8LF03-0AA0 Memory Card

$246.08



Yaskawa JANCD-MM08 REV.B Memory Board picture

Yaskawa JANCD-MM08 REV.B Memory Board

$75.00



Brother EM-630 Professional Electronic Daisy Wheel Typewriter FOR PARTS picture

Brother EM-630 Professional Electronic Daisy Wheel Typewriter FOR PARTS

$225.00



Nightingale CXO 6200 Memory Foam, New Headrest, Lumbar Support Ergo Office Chair picture

Nightingale CXO 6200 Memory Foam, New Headrest, Lumbar Support Ergo Office Chair

$415.00







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.