nmai
- 活动总数 12
- 最后的活动
- 成员加入日期
- 正在关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 4
活动概览
nmai 的最新活动-
nmai 创建了一个帖子,
Porting PSDK to Android
已完成There seems to be an Android binary file (arm-linux-androideabi-gcc) in the SKD download. Has anyone tried to port the PSDK sample code to the Android platform? Does the device have to be rooted ...
-
nmai 创建了一个帖子,
Porting GPIO code for PPS from rtos to linux
已完成Has anyone try to port the Time Synchronization code from rtos to linux? In the DJI sample, most GPIO related code is under platform/rtos_freertos. We are trying to port these source files into pl...
-
nmai 进行了评论,
Also you may want to increase the frame rate to at least 5 per second. IIRC, 2 won't work. 3-4 is not reliable.
-
nmai 进行了评论,
Try the following settings for encoding in ffmpeg API: ret = av_opt_set(avContext->priv_data, "preset", "ultrafast", 0); ret = av_opt_set(avContext->priv_data, "tune", "zerolatency...
-
nmai 进行了评论,
We ended up taking a different approach, but I believe you can use a parser (AVCodecParserContext) to extract packets from a live stream raw data. See the details in the file decode_video.c from t...
-
nmai 进行了评论,
If you look at the test_payload_cam_emu_media.c file in the PSDK sample, the SDK provides a function that accepts video "frames" and transmits it to the remote control. If using the ffmpeg library...
-
nmai 进行了评论,
So there is not a way to send the video stream directly? Frame by frame is the only way?
-
nmai 创建了一个帖子,
Send data from a video stream
已完成PSDK provides the function DjiPayloadCamera_SendVideoStream() for sending video stream to the mobile control. This function sends the stream frame by frame. For a video file, it's simple to read ...