nmai
- Total activity 12
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 4
Comments
Recent activity by 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.
-
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...
-
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...
-
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...
-
So there is not a way to send the video stream directly? Frame by frame is the only way?