Divyanshu Pundir

Results 25 comments of Divyanshu Pundir

Great! I'll try to test it in a couple of days.

Some of the readily available libraries are [ExoPlayer](https://github.com/google/ExoPlayer). If you want better control over the stream, you can try to integrate the VLC Android library or the GStreamer.

Hello, I too have been trying to run MavsdkServer using a serial address, and I have come across a similar problem as @lbb1993 did: > serial:///dev/bus/usb/001/002... 2020-07-17 18:04:19.088 26853-26853/com.leopard.droneclient E/Mavsdk:...

Sure. I will try to figure it out. I guess I'll have to make the changes that you've suggested in the C++ code and rebuild it using Android NDK tools....

We use a combination of MAVSDK (high-level operations) and raw MAVLink (low-level operations), to get complete control over the system. You can have a look at [dronefleet/mavlink](https://github.com/dronefleet/mavlink) for Java or...

@rkashaev if you're working on a desktop application, Then you can use mavlink-router to split the MAVLink input into two quite easily. I suggest going through the documentation for it....

mavlink-router even supports serial connections. You can try: ``` mavlink-routerd /dev/ttyACM0:57600 -t 5760 ``` Of course, the device and the baud rate may differ. Please go through the docs of...

@JoshikaNetha, MAVSDK is divided into two parts, the MAVSDK-Server and the MAVSDK frontend, which in your case is MAVSDK-Java. Now, for your web application, you can download the MAVSDK-Server binary...

@JoshikaNetha No need to build the mavsdk-server. You can simply download the binary from the assets on the release page. For example, if you have a Windows machine, you can...

Please try [mavsdk_server_manylinux2010-x64](https://github.com/mavlink/MAVSDK/releases/download/v1.4.16/mavsdk_server_manylinux2010-x64).