zhuonan zhang
zhuonan zhang
```java public void liveStreamingVideos(List urls, String rtmpAddress) { try { avutil.av_log_set_level(avutil.AV_LOG_INFO); FFmpegLogCallback.set(); int count = 0; for (String url : urls) { FFmpegFrameGrabber grabber = new FFmpegFrameGrabber(url); grabber.setOption("analyzeduration", "10000"); grabber.setFormat("webm");...
Here is all FFmpeg's log and exception av_interleaved_write_frame() error -32 while writing interleaved video packet
how to use libx264?
I still have the problem av_interleaved_write_frame() error -32 ```java Debug: [matroska,webm @ 0x7ff4eab72ac0] Opening '/Users/caoshuhua/Downloads/1.webm' for reading Debug: [file @ 0x7ff4f9a7c6c0] Setting default whitelist 'file,crypto,data' Debug: st:0 removing common factor...
What else can I do to avoid the error?
I found that the av_interleaved_write_frame() return 32 means Broken pipe, Does that mean I had livestreamed too fast or there's a problem with the bitrate?
I fix the problem recently!!!! av_interleaved_write_frame() return 32 means Broken pipe, because of the video frame rate and audio frame rate are not stable, and in the process of livestreaming...