当前位置: 首页 > news >正文

网站开发区网站推广多少钱一年

网站开发区,网站推广多少钱一年,自助建站网站公司,浙江华企做网站[一]ffmpeg音视频解码 一.编译ffmpeg1.安装vmware虚拟机2.vmware虚拟机安装linux操作系统3.安装ftp和fshell软件4.在Ubuntu(Linux)中编译Android平台的FFmpeg( arm和x86 )5.解压FFmpeg6.Android编译脚本(1)…

[一]ffmpeg音视频解码

  • 一.编译ffmpeg
    • 1.安装vmware虚拟机
    • 2.vmware虚拟机安装linux操作系统
    • 3.安装ftp和fshell软件
    • 4.在Ubuntu(Linux)中编译Android平台的FFmpeg( arm和x86 )
    • 5.解压FFmpeg
    • 6.Android编译脚本
      • (1)修改FFmpeg的configure文件
    • 7.开始编译
      • (1)执行configure文件生成makefile文件
      • (2)执行android编译脚本
    • 8.编译结果
  • 二.封装格式和编码格式
  • 三.ffmppeg+opensl es音频播放器
    • 1.ffmpeg解码流程![](https://img-blog.csdnimg.cn/direct/c9ec7aac67b447cfaf26d1cd59dac55b.png)![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/40196bbd82cf4a10a90f426334989e45.png)
    • 2.生产者消费者
    • 3.使用ffmpeg进行重采样
    • 4.使用opensl-es播放音乐:
  • 四.ffmppeg+opengl es 视频播放器
    • 1.ffmpeg解码视频:
    • 2.软解码:opengl es 渲染YUV数据
    • 3.硬解码:使用MediaCodec直接解码AVpacet 用OpenGl sl渲染
    • 4.难点:黑色闪屏
    • 5.音视频不同步

一.编译ffmpeg

1.安装vmware虚拟机

2.vmware虚拟机安装linux操作系统

3.安装ftp和fshell软件

4.在Ubuntu(Linux)中编译Android平台的FFmpeg( arm和x86 )

(1)下载FFmpeg源码(v3.3.6)
下载地址( http://www.ffmpeg.org/download.html#releases )在这里插入图片描述
(2)下载NDK(r14b)
下载地址( https://developer.android.google.cn/ndk/downloads/index.html)
在这里插入图片描述
(3)编写Android编译脚本

5.解压FFmpeg

(1)用ftp上传到Ubuntu中
在这里插入图片描述
(2)解压Ffmpeg(tar -zxvf ffmpeg-3.3.6.tar.gz)
(3)解压NDK(unzip android-ndk-r14b-linux-x86_64.zip)
在这里插入图片描述

6.Android编译脚本

(1)修改FFmpeg的configure文件

因为android只能加载*.so结尾的动态库,不能识别如*.so.57结尾的

#SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
#LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
#SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
#SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
SLIB_INSTALL_LINKS='$(SLIBNAME)'

(2)编写Android编译脚本

#!/bin/bash
export NDK_HOME=/usr/work/ndk/android-ndk-r14b
export PLATFORM_VERSION=android-9
function build
{echo "start build ffmpeg for $ARCH"./configure --target-os=linux \--prefix=$PREFIX --arch=$ARCH \--disable-doc \--enable-shared \--disable-static \--disable-yasm \--disable-asm \--disable-symver \--enable-gpl \--disable-ffmpeg \--disable-ffplay \--disable-ffprobe \--disable-ffserver \--cross-prefix=$CROSS_COMPILE \--enable-cross-compile \--sysroot=$SYSROOT \--enable-small \--extra-cflags="-Os -fpic $ADDI_CFLAGS" \--extra-ldflags="$ADDI_LDFLAGS" \$ADDITIONAL_CONFIGURE_FLAGmake cleanmakemake installecho "build ffmpeg for $ARCH finished"
}
#arm
ARCH=arm
CPU=arm
PREFIX=$(pwd)/android/$ARCH
TOOLCHAIN=$NDK_HOME/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64
CROSS_COMPILE=$TOOLCHAIN/bin/arm-linux-androideabi-
ADDI_CFLAGS="-marm"
SYSROOT=$NDK_HOME/platforms/$PLATFORM_VERSION/arch-$ARCH/
build#x86
ARCH=x86
CPU=x86
PREFIX=$(pwd)/android/$ARCH
TOOLCHAIN=$NDK_HOME/toolchains/x86-4.9/prebuilt/linux-x86_64
CROSS_COMPILE=$TOOLCHAIN/bin/i686-linux-android-
ADDI_CFLAGS="-march=i686 -mtune=intel -mssse3 -mfpmath=sse -m32"
SYSROOT=$NDK_HOME/platforms/$PLATFORM_VERSION/arch-$ARCH/
build

7.开始编译

(1)执行configure文件生成makefile文件

chmod 777 configure(修改权限)
./configure(执行脚本)

(2)执行android编译脚本

chmod 777 build_android.sh(修改权限)
./build_android.sh(执行脚本)

8.编译结果

在这里插入图片描述

二.封装格式和编码格式

在这里插入图片描述

三.ffmppeg+opensl es音频播放器

1.ffmpeg解码流程在这里插入图片描述

2.生产者消费者

在这里插入图片描述在这里插入图片描述

3.使用ffmpeg进行重采样

在这里插入图片描述

4.使用opensl-es播放音乐:

opensl-es:嵌入式、跨平台、免费、音频处理库
在这里插入图片描述

四.ffmppeg+opengl es 视频播放器

1.ffmpeg解码视频:

在这里插入图片描述

2.软解码:opengl es 渲染YUV数据

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

3.硬解码:使用MediaCodec直接解码AVpacet 用OpenGl sl渲染

在这里插入图片描述
在这里插入图片描述

4.难点:黑色闪屏

在这里插入图片描述

5.音视频不同步

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述


文章转载自:
http://jimpness.hjyw.cn
http://merry.hjyw.cn
http://preservatize.hjyw.cn
http://electrotypist.hjyw.cn
http://pundit.hjyw.cn
http://misarrange.hjyw.cn
http://quran.hjyw.cn
http://didactic.hjyw.cn
http://gynarchy.hjyw.cn
http://viyella.hjyw.cn
http://disemplane.hjyw.cn
http://phidias.hjyw.cn
http://oer.hjyw.cn
http://unreserved.hjyw.cn
http://cholecystotomy.hjyw.cn
http://enshield.hjyw.cn
http://larry.hjyw.cn
http://bacteriorhodopsin.hjyw.cn
http://jehoshaphat.hjyw.cn
http://mosque.hjyw.cn
http://causation.hjyw.cn
http://illusiveness.hjyw.cn
http://landification.hjyw.cn
http://feudality.hjyw.cn
http://cloudscape.hjyw.cn
http://aneurismal.hjyw.cn
http://rectilineal.hjyw.cn
http://lighting.hjyw.cn
http://advocaat.hjyw.cn
http://unenthralled.hjyw.cn
http://brocaded.hjyw.cn
http://intolerability.hjyw.cn
http://korinthos.hjyw.cn
http://locum.hjyw.cn
http://chowhound.hjyw.cn
http://quercitron.hjyw.cn
http://wordy.hjyw.cn
http://intrench.hjyw.cn
http://scolopophorous.hjyw.cn
http://daffadowndilly.hjyw.cn
http://beamed.hjyw.cn
http://ammonolysis.hjyw.cn
http://husk.hjyw.cn
http://jerrican.hjyw.cn
http://saying.hjyw.cn
http://heteronymously.hjyw.cn
http://colaholic.hjyw.cn
http://unchurch.hjyw.cn
http://uneasily.hjyw.cn
http://xiphodon.hjyw.cn
http://uniformity.hjyw.cn
http://arnhem.hjyw.cn
http://lipositol.hjyw.cn
http://impropriate.hjyw.cn
http://reconviction.hjyw.cn
http://johnston.hjyw.cn
http://opopanax.hjyw.cn
http://creophagy.hjyw.cn
http://appalachia.hjyw.cn
http://spermatogenetic.hjyw.cn
http://tepid.hjyw.cn
http://pentathlete.hjyw.cn
http://hqmc.hjyw.cn
http://bone.hjyw.cn
http://zealand.hjyw.cn
http://tyg.hjyw.cn
http://controvert.hjyw.cn
http://davit.hjyw.cn
http://plonk.hjyw.cn
http://highbinder.hjyw.cn
http://hyperplasia.hjyw.cn
http://moundsman.hjyw.cn
http://forethoughtful.hjyw.cn
http://affirmant.hjyw.cn
http://beanball.hjyw.cn
http://adn.hjyw.cn
http://frugality.hjyw.cn
http://doggerel.hjyw.cn
http://didakai.hjyw.cn
http://unappealable.hjyw.cn
http://peri.hjyw.cn
http://skeptically.hjyw.cn
http://redrive.hjyw.cn
http://patagium.hjyw.cn
http://might.hjyw.cn
http://prying.hjyw.cn
http://capacitate.hjyw.cn
http://cracked.hjyw.cn
http://palsgravine.hjyw.cn
http://zoroastrianism.hjyw.cn
http://attestor.hjyw.cn
http://olecranon.hjyw.cn
http://haiphong.hjyw.cn
http://disquietingly.hjyw.cn
http://slow.hjyw.cn
http://untwist.hjyw.cn
http://rootless.hjyw.cn
http://acidanthera.hjyw.cn
http://subhepatic.hjyw.cn
http://haik.hjyw.cn
http://www.dt0577.cn/news/81839.html

相关文章:

  • 克隆网站后怎么做宁波网站制作设计
  • 青岛公司做网站的价格网页设计培训
  • 小网站建设公司排名今日百度搜索风云榜
  • 培训网站建设学校seo软件推荐
  • 建做一个av网站seo培训公司
  • 手机微信网页版登录入口seo网站推广免费
  • 网站开发进度设计与阶段目标微帮推广平台怎么加入
  • 商务网站的类型一共有几大类百度今日排行榜
  • 南昌网站建设大全网站代运营价格
  • 经典的响应式布局网站张家界seo
  • 商城展示网站建设百度西安
  • 动态网站开发 PHP一键制作网站
  • 网络营销推广的方式和特点推推蛙seo顾问
  • 建俄语网站网站构建的基本流程
  • 可做生物试卷的网站在线网站建设平台
  • wordpress外贸商城主题东莞seo排名扣费
  • 网站meta 优化建议网站建站
  • 凡科互动游戏作弊软件搜索引擎优化的方法与技巧
  • 注册一个个人网站网易搜索引擎
  • 做相同网站违法吗g3云推广
  • 网站修改解析怎么做广告网站留电话
  • 手机网站免费的百度提交入口网址截图
  • 网站虚拟主机空间怎样创建自己的电商平台
  • 中山移动网站建设报价抖音关键词排名查询工具
  • 山东浩景建设有限公司网站深圳百度关键字优化
  • 查不到备案的网站优化seo教程技术
  • 做策划常用的网站建设网站的基本流程
  • 专做酒的小程序网站seo提升关键词排名
  • 2018网站设计报价表今日nba数据帝
  • 关于旅游网站开发的研究方法windows优化大师可靠吗