I am streaming live video on youtube live using ffmpeg sdk
av_interleaved_write_frame(m_pAvFmtCntx, pkt);
av_interleaved_write_frame taking more than 60 millisecond to write packet . How to optimize time?
I am streaming live video on youtube live using ffmpeg sdk
av_interleaved_write_frame(m_pAvFmtCntx, pkt);
av_interleaved_write_frame taking more than 60 millisecond to write packet . How to optimize time?
Insufficient information..
Anyway, if you write to pipe
then it's more like producer-consumer problem. Check if other side reads output fast enough.