FFMpeg
iteye_661
这个作者很懒,什么都没留下…
展开
-
cross-compile ffmpeg with neon
if u wanna compile ffmpeg with neon.your config.sh must be like this:./configure \--disable-static \--enable-asm \--cpu=cortex-a8 \--arch=armv7 \--enable-neon \--enable-shared \-...原创 2011-08-19 15:52:21 · 155 阅读 · 0 评论 -
ffmpeg获取一个视频或音频的时长
totalFrames=pInputVstream->duration *pInputVstream->time_base.num/pInputVstream->time_base.den *pInputVstream->r_frame_rate.num/pInputVstream->r_frame_rate...原创 2011-08-23 08:17:49 · 3411 阅读 · 0 评论 -
FFMpeg官网源代码中的示例代码(编码和解码示例)(精华)
转:http://blog.csdn.net/cosmoslife/article/details/7583275//FFMpeg学习官网地址:http://www.ffmpeg.org/developer.html /* * Copyright (c) 2001 Fabrice Bellard * * Permission is hereby granted, free of...原创 2012-07-03 21:55:28 · 319 阅读 · 0 评论 -
ffmpeg对音频解码的一般步骤
以下是我自己写的小demo #include <errno.h>#include <android/log.h>#include <libavutil/avutil.h>#include <libavcodec/avcodec.h>#include <libavformat/avformat.h>AVFor...原创 2012-07-04 00:19:55 · 123 阅读 · 0 评论 -
ffmpeg编译出来的库组成及其作用
当我们把FFmpeg(0.11.1)项目完整编译出来后,会有7个库文件,根据so依赖关系排行.1.libavdevice2.libavfilter3.libavformat 容器,也就是文件的格式,装载着流4.libavcodec 编码,解码器,针对某一流5.libswscale6.libswresample7.libavutil 一般工具类,以上的组件都要依赖它 ...原创 2012-07-06 10:26:01 · 401 阅读 · 0 评论 -
ffmpeg获得视频音频长度
ffmpeg -i ~/Movies/a.3gp 2>&1 | grep 'Duration' | cut -d ' ' -f 4 | sed s/,//原创 2012-03-20 12:19:52 · 2221 阅读 · 1 评论