Hello Tello Pilot!
Join our DJI Tello community & remove this banner.
Sign up

Recent content by sarathp@tello

  1. S

    SDK "streamon" format

    Yes. I am now able to view the video on Surface View. I used Mediacodec to decode. I am trying to take a screenshot and record video of the video content on Surface view. I found that some of them are suggesting "media recorder" to record the video content from the Surface view. I am still...
  2. S

    SDK "streamon" format

    Hi. I have created a sample Android app, where I am able to listen from port 11111. So in my case, the 'lastMessage2' have the video streaming data. I put a log to get the length of the data. Please find the attached screenshot. Log.e("Video_packet","length =...
  3. S

    Not able to receive Tello Video streaming

    Hi. I have updated my code for streaming. Still, I am not able to display the content. Please find the below code: Can anyone please tell me where I made mistake? Is the below code right? Code for getting data (working perfectly): public class myVideoReceiver extends Thread { public...
  4. S

    Not able to receive Tello Video streaming

    Thanks for your response. I'll definitely take a look at your FrameGrabberThread. Meanwhile, I made some changes to the code. Now I am able to receive the raw data and display it on my textView. Please find the image below. Following is the end portion of the code where I set raw data...
  5. S

    Not able to receive Tello Video streaming

    Hello everyone. I am trying to set up a video streaming server for Tello. Please find my code below. VideoView vidView = findViewById(R.id.videoView); Uri vidUri = Uri.parse("rtsp://0.0.0.0:1111.stream"); vidView.setVideoURI(vidUri); vidView.start(); Its shows an error 'Can't play this...
  6. S

    How to extract specific values from Tello state response

    Thank you:) I am able to get the results.
  7. S

    How to extract specific values from Tello state response

    Hello everyone. I am trying to extract low temperature, high temperature, battery status values from the drone state response to set a condition like if the battery is less than 20%, the drone should land or if the temperature is high the drone should land. Currently, the response is displayed...