自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(18)
  • 资源 (4)
  • 收藏
  • 关注

转载 android权限大全

Ø  android.permission.ACCESS_CHECKIN_PROPERTIES允许读写访问"properties"表在checkin数据库中,改值可以修改上传( Allows read/write access to the "properties" table inthe checkin database, to change values that get upload

2014-05-28 10:31:39 547

转载 DecodeEditEncodeTest.java

/* * Copyright (C) 2013 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * Yo

2014-05-21 15:55:27 1944

转载 EncodeAndMuxTest.java

/* * Copyright 2013 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You ma

2014-05-21 13:37:06 1942

转载 MediaExtractor

android.toolib.net/reference/android/media/MediaExtractor.html MediaExtractor extractor = new MediaExtractor(); extractor.setDataSource(...); int numTracks = extractor.getTrackCount(); 

2014-05-21 10:21:17 1281

转载 Android MediaPlayer使用方法简单介绍---(setdatasource)

1)如何获得MediaPlayer实例:可以使用直接new的方式:MediaPlayer mp = new MediaPlayer();也可以使用create的方式,如:MediaPlayer mp = MediaPlayer.create(this, R.raw.test);//这时就不用调用setDataSource了   2)

2014-05-21 10:12:40 16625

转载 Android学习指南

android.yaohuiji.com/about

2014-05-16 17:22:05 445

原创 其他mediacodec的一些例子

android.googlesource.com/platform/cts/+/jb-mr2-release/tests/tests/media/src/android/media/cts

2014-05-15 10:18:53 658

转载 DecodeEditEncodeTest.java

/** Copyright (C) 2013 The Android Open Source Project** Licensed under the Apache License, Version 2.0 (the "License");* you may not use this file except in compliance with the License.* You may obta

2014-05-15 10:17:50 1149

转载 高手速成android开源项目【View篇】

主要介绍那些不错个性化的View,包括ListView、ActionBar、Menu、ViewPager、Gallery、GridView、ImageView、ProgressBar及其他如Dialog、Toast、EditText、TableView、Activity Animation等等。  一、ListView android-pulltorefre

2014-05-14 15:48:12 610

转载 高手速成android开源项目【tool篇】

主要包括那些不错的开发库,包括依赖注入框架、图片缓存、网络相关、数据库ORM建模、Android公共库、Android 高版本向低版本兼容、多媒体相关及其他。一、依赖注入DI通过依赖注入减少View、服务、资源简化初始化,事件绑定等重复繁琐工作AndroidAnnotations(Code Diet)android快速开发框架项目地址:https://githu

2014-05-14 15:47:20 557

转载 MediaCodec类

媒体编解码器MediaCodec类是用来为低级别的媒体编码和解码的媒体编解码器提供访问。您可以实例化一个MediaCodec类通过调用createEncoderByType()方法来进行对媒体文件进行编码或者调用createDecoderByType()来对媒体文件进行解码。每一个方法都要采取一个MIME类型为你想要编码或者解码的媒体文件类型,例如“video/3gpp”或者“audio/

2014-05-14 15:29:20 1378

转载 Android MediaCodec stuff

Android MediaCodec stuffLast updated: 2014-04-12OverviewSamplesFAQThis page is about the Android MediaCodec class, which can be used to encode and decode audio and video data. It includes a

2014-05-14 15:28:17 4140 2

转载 Android MediaCodec “Decoded”

Android has a great media library allowing all sorts of things. Until recently though, there was no way to encode/decode audio/video giving developers the ability to do literally anything. Fortunate

2014-05-14 15:25:35 779

转载 Android MediaCodec 使用例子

下面的例子是使用MediaCodec 录制到文件的例子。public class AvcEncoder {private MediaCodec mediaCodec;private BufferedOutputStream outputStream;public AvcEncoder() { File f = new File(Environment.g

2014-05-14 15:20:04 1187 1

转载 MediaCodec文档翻译&&一些FAQ和例子

前段时间项目需要,接触到android 4.0以后新添加的mediacodec类,并用mediacodec类实现了一个无缝播放视频的播放器,并用这个播放器简单的实现了dash协议。接触到这么多,感觉GOOGLE给的文档写的不够详细,网络上也没有一个标准的例子,为了避免后来人走一些不必要的弯路,我在这里打算先用中文翻译一下codec的文档,然后再把自己在实现播放器时候的一些注意事项和问题列出

2014-05-14 15:17:18 3924

转载 MediaCodec Class Overview

public final classMediaCodecextends Objectjava.lang.Object   ↳android.media.MediaCodecClass OverviewMediaCodec class can be used to access low-level med

2014-05-14 15:01:22 1619

转载 Android 新API 之 MediaCodec使用笔记

转自:http://blog.csdn.net/shawnkong/article/details/16337381Android的视频编解码一直让人有点纠结,SDK竟然不提供硬件编解码的API,如果你想自己做,只能通过JNI借助第三方编解码器,其都是使用的软解码,效率很难保证,这对想做视频通话的是一个不小的打击。好了,说到google 新提供的SDK中出现的类MediaCodec

2014-05-14 14:52:01 985

转载 Android 用MediaCodec实现视频硬解码

转自:  http://blog.csdn.net/halleyzhang3/article/details/11473961本文向你讲述如何用android标准的API (MediaCodec)实现视频的硬件编解码。例程将从摄像头采集视频开始,然后进行H264编码,再解码,然后显示。我将尽量讲得简短而清晰,不展示那些不相关的代码。但是,我不建议你读这篇文章,也不建议你开发这类

2014-05-14 14:49:35 846

opengles2.0 Animation

opengles2.0 方波图,加速减速运动

2015-07-15

ubuntu下构建deb包

ubuntu下构建deb包

2014-06-07

spice_protocol

spice protocol

2014-06-07

基于spice协议研究与改进方案

基于spice协议的桌面虚拟化技术研究与改进方案

2014-05-19

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除