|
55 | 55 | import dji.sdk.products.Aircraft;
|
56 | 56 | import dji.sdk.sdkmanager.DJISDKManager;
|
57 | 57 | import dji.sdk.sdkmanager.LiveStreamManager;
|
| 58 | +import dji.sdk.sdkmanager.LiveVideoBitRateMode; |
| 59 | +import dji.sdk.sdkmanager.LiveVideoResolution; |
58 | 60 | import dji.ux.widget.FPVOverlayWidget;
|
59 | 61 | import dji.ux.widget.FPVWidget;
|
60 | 62 | import dji.ux.widget.MapWidget;
|
61 | 63 | import dji.ux.widget.controls.CameraControlsWidget;
|
62 | 64 | import dji.ux.widget.dashboard.CompassWidget;
|
63 | 65 |
|
64 |
| -import static java.lang.Math.cosh; |
65 |
| -import static java.lang.Math.tan; |
66 |
| - |
67 | 66 | /**
|
68 | 67 | * Activity that shows all the UI elements together
|
69 | 68 | */
|
@@ -102,7 +101,7 @@ public class CompleteWidgetActivity extends Activity {
|
102 | 101 | private final Handler stream_handler = new Handler();
|
103 | 102 | private Runnable sensor_runnable, stream_runnable;
|
104 | 103 | // send 4 sensor updates a second
|
105 |
| - int sensor_delay = 250; |
| 104 | + int sensor_delay = 500; |
106 | 105 | // every 3 seconds try to send a stream cot, stop when we send one successfully
|
107 | 106 | int stream_delay = 3000;
|
108 | 107 |
|
@@ -484,6 +483,10 @@ public void onClick(View v) {
|
484 | 483 | l.registerListener((x) -> {
|
485 | 484 | Log.d(TAG, "LiveStream callback:" + x);
|
486 | 485 | });
|
| 486 | + |
| 487 | + //l.setLiveVideoResolution(new LiveVideoResolution(480, 360)); |
| 488 | + //l.setLiveVideoResolution(LiveVideoResolution.VIDEO_RESOLUTION_480_360); |
| 489 | + //l.setLiveVideoBitRate(LiveVideoBitRateMode.AUTO.getValue()); |
487 | 490 | l.setAudioMuted(true);
|
488 | 491 | l.setVideoSource(LiveStreamManager.LiveStreamVideoSource.Primary);
|
489 | 492 | l.setVideoEncodingEnabled(true);
|
|
0 commit comments