
FFmpeg
时间一粒
这个作者很懒,什么都没留下…
展开
-
ijkplayer error
1.Invalid NDK_TOOLCHAIN_VERSION value: 4.9. GCC is no longer supported. 注释NDK_TOOLCHAIN_VERSION 2.invalid argument ‘-std=c99’ not allowed with ‘C++’原创 2019-08-12 16:01:04 · 994 阅读 · 0 评论 -
Use ffmpeg to play video data received by socket
1.ffmpeg怎么样处理网络流 2.利用ffmpeg播放socket接收到的视频数据 3.最简单的基于FFmpeg的内存读写的例子:内存播放器 4.FFMPEG实时解码网络视频流(回调方式) 5.FFmpeg: unspecified pixel format when opening video with custom context 6.Creating Custom FFmpeg IO-C...原创 2019-04-23 14:04:52 · 396 阅读 · 0 评论 -
Add x264 to FFmpeg for Android
From原创 2019-04-23 11:37:40 · 147 阅读 · 0 评论 -
Changing the resolution of a video using FFmpeg
ffmpeg -i video_1920.mp4 -vf scale=640:360 video_640.mp4 -hide_banner原创 2019-04-23 11:33:11 · 199 阅读 · 0 评论 -
FFmpeg/ffplay commands with AV
Video commands: ffplay -f rawvideo -pix_fmt yuv420p -video_size 1280x720 a.yuv Audio commands: ffplay -f f16le -ac 1 -ar 48000 a.pcm原创 2018-08-07 20:00:25 · 301 阅读 · 0 评论 -
FFmpeg capture stream picture
Capture live stream and convert YUV to JPEG using FFmpeg. static int capture_picture(Decoder *d, AVFrame *frame) { AVPacket pkt; int got_picture = 0; int ret = 0; AVCodec *pCodec = a...原创 2018-03-29 17:15:21 · 593 阅读 · 0 评论