tbago

Results 12 comments of tbago

I solve the stream issue by reconnect the Facebook rtmp server.

@satishtestrepository First of all, you need make sure your app in Facebook has the ability to push stream (in app review page you must have publish_actions and Live Video API...

@LittleWoodyDoll I change the VCSimpleSession source code. My device will output h264 data to me. First I remove the camera source and h264 encoder. I manual put data to h264...

Dependency "YYModel" has no shared framework schemes for any of the platforms: Mac.

https://github.com/tbago/YYModel.Simple fixed MacOS X compile issue. May not compatible to origin iOS build.

Same issue.I found in landscape mode also draw portrait rect.

I have an orange pi with rk3588(running on ubuntu 22.04 jammy). I use this [ffmpeg repo](https://github.com/jjm2473/ffmpeg-rk) to build rkmpp support, but get undefined reference to **rkmpp function**. ``` /usr/bin/ld: libavcodec/libavcodec.a(rkmppdec.o):...

The pull request to MAVSDK will come soon

ffmpeg代码中本身是包含"TEARDOWN"命令的,但是好像没有效果。我自己fock了一份代码(https://github.com/tbago/IJKFFmpeg )。 在libavformat->rtspdec.c中增加预关闭操作。 ``` static int rtsp_read_preclose(AVFormatContext *s) { RTSPState *rt = s->priv_data; if (!(rt->rtsp_flags & RTSP_FLAG_LISTEN)) { ff_rtsp_send_cmd_async(s, "TEARDOWN", rt->control_uri, NULL); } return 0; } ``` 在IJKPlayer的ffplay.c中增加预关闭处理函数: ``` int...

@huangcy3373 请参照我上面的代码实现,就是在ffmpeg中增加了预关闭操作。然后在ffplay中增加接口。在关闭player时,调用ijkmp_stop(_mediaPlayer);前增加ijkmp_pre_stop(_mediaPlayer);