FFMPEG

  1. Eclipse中的工程配置
    https://trac.ffmpeg.org/wiki/How%20to%20setup%20Eclipse%20IDE%20for%20FFmpeg%20development
    ffmpeg官网
    http://www.ffmpeg.org/

ffmpeg实例
http://www.ffmpeg.org/doxygen/trunk/examples.html

ffmpeg中国论坛china video
http://bbs.chinavideo.org/forumdisplay.php?fid=10

ffmpeg中国论坛china ffmpeg
http://bbs.chinaffmpeg.com/forum.php

ffmpeg介绍:
http://blog.csdn.net/hemingwang0902/article/details/4382429

http://blog.csdn.net/leixiaohua1020/article/details/15811977

eclipse配置ndk
properties->builders->new->program->location选择build-ndk路径。working Directory选择jni目录,其他不用配

eclipse配置ndk第二种设置
工程右键->android tools->add Native support。然后设置头文件目录

Android studio配置ndk
不用在写什么.mk文件 只需在gradle里写ndk编译配置。

google基于自己的mediaplayer写的一套开源的播放器
http://wear.techbrood.com/guide/topics/media/exoplayer.html
https://github.com/google/ExoPlayer/tree/master/library/src/main

linux api中文参考
http://net.pku.edu.cn/~yhf/linux_c/

Linux C编程一站式学习
http://docs.linuxtone.org/ebooks/C&CPP/c/

Linux c编程书籍
http://share.weiyun.com/ba4eeb5031ce26978ee1b769e5e5e074

posix参考手册
http://share.weiyun.com/5f282004cacce8d5fb9d6f0891faab3a

ndk 编译 ffmpeg
https://github.com/dxjia/ffmpeg-for-android-shared-library
https://github.com/hybridego/ffmpeg-Android.mk/blob/master/Android.mk

player ffmpeg sdl
https://github.com/DeYangLiu/AndroidPlayer

ffmpeg播放器(显示不怎么耗资源)
sdl是用cpu显示。
opengl+shard+gpu显示。
bitmap
//windows 上的
2d ddraw
3d direct3d

开源播放器sdl显示
https://github.com/Bilibili/ijkplayer

mp4文件格式详解
http://blog.sina.com.cn/s/blog_48f93b530100jz4b.html
mp4文件分析工具 mp4info

opengl 显示
http://www.cnblogs.com/hrlnw/p/3277300.html
http://blog.csdn.net/ueryueryuery/article/details/17608185
http://blog.csdn.net/leixiaohua1020/article/details/40379845

ffmpeg编译
http://blog.csdn.net/gobitan/article/details/22750719
http://blog.csdn.net/jake9602/article/details/30215833

ffmpeg源码解析
http://blog.csdn.net/leixiaohua1020/article/details/12677129

你可能感兴趣的:(ffmpeg)