こんばんは、同じコンピューターで 2 つの rtp セッションを実行する JMF プロジェクトを実装しています。rtp セッションは初期化して開始できますが、そのうちの 1 つを中断するにはどうすればよいですか。同じコンピューターで 2 つの rtp セッションを実行しない代わりに、JMF が rtp セッションを中断/保持する方法はありますか? 情報にはいくつかのコードがあります。
transmitA と transmitB は、ローカル コンピュータから LINEAR サウンドを取得し、GSM_RTP または ULAW_RTP に変換するコードとほぼ同じですが、送信用のポートが同じではありません。最後に、mediaLocator の datasink を他のコンピューターに送信します。
Thread transmitA = new Thread() {
public void run() {
transmitA();
}
};
Thread transmitB = new Thread() {
public void run() {
transmitB();
}
};
中断する条件
transmitA.start();
trasmitB.start();
while (...) {
if (...) {
//interrupt transmitA
transmitA.interrupt();
transmitA.stop();
} /*else if (...) {
//interrupt transmitB
transmitB.interrupt();
transmitB.stop();
}*/
}//notation end here
スレッドを中断することは、rtp セッションを中断することと同じではありません。1 つの rtp セッションを他のコンピュータに送信するのを中断する、または送信する方法は? トラックで何かをするつもりですか?またはプロセッサ?
送信A()
public void transmitA(){
// First find a capture device that will capture linear audio
// data at 8bit 8Khz
AudioFormat format= new AudioFormat(AudioFormat.LINEAR,
8000,
8,
1);
Vector devices= CaptureDeviceManager.getDeviceList( format);
CaptureDeviceInfo di= null;
if (devices.size() > 0) {
di = (CaptureDeviceInfo) devices.elementAt( 0);
}
else {
// exit if we could not find the relevant capturedevice.
System.exit(-1);
}
// Create a processor for this capturedevice & exit if we
// cannot create it
Processor processor = null;
try {
processor = Manager.createProcessor(di.getLocator());
} catch (IOException e) {
System.exit(-1);
} catch (NoProcessorException e) {
System.exit(-1);
}
// configure the processor
processor.configure();
while (processor.getState() != Processor.Configured){
try {
Thread.sleep(100);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
processor.setContentDescriptor(
new ContentDescriptor( ContentDescriptor.RAW));
TrackControl track[] = processor.getTrackControls();
boolean encodingOk = false;
// Go through the tracks and try to program one of them to
// output gsm data.
for (int i = 0; i < track.length; i++) {
if (!encodingOk && track[i] instanceof FormatControl) {
if (((FormatControl)track[i]).
setFormat( new AudioFormat(AudioFormat.GSM_RTP,
8000,
8,
1)) == null) {
track[i].setEnabled(false);
}
else {
encodingOk = true;
}
} else {
// we could not set this track to gsm, so disable it
track[i].setEnabled(false);
}
}
// At this point, we have determined where we can send out
// gsm data or not.
// realize the processor
if (encodingOk) {
processor.realize();
while (processor.getState() != Processor.Realized){
try {
Thread.sleep(100);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
// get the output datasource of the processor and exit
// if we fail
DataSource ds = null;
try {
ds = processor.getDataOutput();
} catch (NotRealizedError e) {
System.exit(-1);
}
// hand this datasource to manager for creating an RTP
// datasink our RTP datasink will multicast the audio
try {
String url= "rtp://192.168.1.3:22222/audio/16";
//String url= "rtp://224.0.0.1:22224/audio/16";
MediaLocator m = new MediaLocator(url);
DataSink d = Manager.createDataSink(ds, m);
d.open();
d.start();
processor.start();
} catch (Exception e) {
System.out.println("cannot find the receiver address!!!");
System.exit(-1);
}
}
}
ヒントとガイドラインが必要です。よろしくお願いします^^"