Home | History | Annotate | only in /developers/build/prebuilts/gradle/MediaEffects
Up to higher level directory
NameDateSize
.google/10-Mar-2015
Application/10-Mar-2015
build.gradle16-Dec-201414
CONTRIBUTING.md10-Mar-20151.5K
gradle/16-Dec-2014
gradlew16-Dec-20145K
gradlew.bat16-Dec-20142.3K
LICENSE16-Dec-201411.1K
NOTICE10-Mar-2015613
README.md10-Mar-20152.3K
screenshots/10-Mar-2015
settings.gradle10-Mar-201522

README.md

      1 Android MediaEffects Sample
      2 ===================================
      3 
      4 This sample shows how to use the Media Effects APIs that were
      5 introduced in Android 4.0.
      6 
      7 Introduction
      8 ------------
      9 
     10 The [Media Effects APIs][1] lets you apply effects to image frames
     11 represented as OpenGL ES 2.0 textures.  Image frames can be images
     12 loaded from disk, frames from the device's camera, or other video
     13 streams.
     14 
     15 For a list of available effects, refer to [EffectsFactory][2].
     16 
     17 [1]: http://developer.android.com/reference/android/media/effect/package-summary.html
     18 [2]: http://developer.android.com/reference/android/media/effect/EffectFactory.html
     19 
     20 Pre-requisites
     21 --------------
     22 
     23 - Android SDK v21
     24 - Android Build Tools v21.1.1
     25 - Android Support Repository
     26 
     27 Screenshots
     28 -------------
     29 
     30 <img src="screenshots/menu.png" height="400" alt="Screenshot"/> <img src="screenshots/duotone.png" height="400" alt="Screenshot"/> 
     31 
     32 Getting Started
     33 ---------------
     34 
     35 This sample uses the Gradle build system. To build this project, use the
     36 "gradlew build" command or use "Import Project" in Android Studio.
     37 
     38 Support
     39 -------
     40 
     41 - Google+ Community: https://plus.google.com/communities/105153134372062985968
     42 - Stack Overflow: http://stackoverflow.com/questions/tagged/android
     43 
     44 If you've found an error in this sample, please file an issue:
     45 https://github.com/googlesamples/android-MediaEffects
     46 
     47 Patches are encouraged, and may be submitted by forking this project and
     48 submitting a pull request through GitHub. Please see CONTRIBUTING.md for more details.
     49 
     50 License
     51 -------
     52 
     53 Copyright 2014 The Android Open Source Project, Inc.
     54 
     55 Licensed to the Apache Software Foundation (ASF) under one or more contributor
     56 license agreements.  See the NOTICE file distributed with this work for
     57 additional information regarding copyright ownership.  The ASF licenses this
     58 file to you under the Apache License, Version 2.0 (the "License"); you may not
     59 use this file except in compliance with the License.  You may obtain a copy of
     60 the License at
     61 
     62 http://www.apache.org/licenses/LICENSE-2.0
     63 
     64 Unless required by applicable law or agreed to in writing, software
     65 distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
     66 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
     67 License for the specific language governing permissions and limitations under
     68 the License.
     69