ExoPlayerManager


Source link: https://github.com/AAkira/ExoPlayerManager

ExoPlayerManager

An android library that wraps the ExoPlayer and the IMA Android SDK which plays a video advertisement.
This is written in Kotlin.

Preview

Play a HLS video

Play a video advertisement

Features

  • Play a HLS video
  • Play a video advertisement using the IMA SDK v3.
  • Can limit the bitrate

Requirements

  • Kotlin 1.1.0 or above
  • ExoPlayer r2.0 or above
  • Android SDK version 4.1 or above (ExoPlayer requirements)

Usage

Play HLS

// inject from xml val simpleExoPlayerView: SimpleExoPlayerView by bindView(R.id.playerView)  val playerManager: ExoPlayerManager = ExoPlayerManager(context)
// inject SimpleExoPlayerView // https://github.com/google/ExoPlayer/blob/release-v2/library/src/main/java/com/google/android/exoplayer2/SimpleExoPlayer.java playerManager.injectView(simpleExoPlayerView)  val dataSource = DataSourceCreator.UrlBuilder(

url = HLS_SAMPLE_URL,

userAgent = Util.getUserAgent(this, "UserAgent"),

okHttpClient = your ok http client, // you can use your okhttp client if you want use it.

dataSourceCreatorInterface = your data source // you can use your data source if you want use it. ) playerManager.setHlsSource(dataSource.build())  // play playerManager.play()  // pause playerManager.pause()  // stop playerManager.stop()  // release playerManager.release()  // mute playerManager.toMute()  // limit bitrate playerManager.setMaxVideoBitrate((60 * 1000).toLong())  // change playback speed (speed, pitch) playerManager.setPlaybackParameters(2f, 2f)  // state listener playerManager.addOnStateChangedListener {
 playWhenReady: Boolean, playbackState: Int -> 
}
  // error listener playerManager.addOnPlayerErrorListener {
 
}
 
<?xml version="1.0" encoding="UTF-8"?> <RelativeLayout

xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:keepScreenOn="true">

<com.google.android.exoplayer2.ui.SimpleExoPlayerView

android:id="@+id/playerView"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:focusable="true"

app:surface_type="texture_view"

app:use_controller="false" /> </RelativeLayout>

Play a video advertisement

val adPlayerController: AdPlayerController = AdPlayerController.Builder(

context = this,

simpleExoPlayerView = simpleExoPlayerView,

adUiContainer = adUiContainer,

language = "us",

userAgent = Util.getUserAgent(this, "UserAgent"),

playerManager = playerManager)

.create()  // call in Activity onResume() adPlayerController.resume()  // call in Activity onPause() adPlayerController.pause()  // call in Activity onDestroy() adPlayerController.destroy()  // call in Activity detachedFromWindow() adPlayerController.release() 

Setup

Gradle

Add the dependency in your build.gradle

buildscript {
  repositories {

jcenter()  
}
 
}
  dependencies {
  compile 'com.github.aakira:exoplayer-manager:0.0.7@aar'  compile 'com.github.aakira:exoplayer-manager-ima:0.0.7@aar' // if you use an IMA SDK 
}

Using libraries

reference : exoplayer-textureview

Author

Akira Aratani

  • Twitter
  • Mail

License

Copyright (C) 2017 A.Akira  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

A lightweight and simple event bus for Android.

  • small footprint
  • simple to use
  • optimized for startup and event dispatching

View that imitates Ripple Effect on click which was introduced in Android L.

Pure2D is a free and open source Game Engine for Android. It's designed for Android OS and built on top of OpenGL-ES v1.x. Pure2D provides a powerful API set and amazing performance.

Features:

  • Native Android and OpenGL-ES v1.x
  • Built-in Particle System
  • Built-in UI & Layout System, with multi-touch
  • Build-in Grid System, simple A* pathfinding
  • LWF Plugin
  • Backgrounded and asynchronous Asset Loading framework
  • Batch Drawing supported
  • Bitmap fonts, text rendering supported
  • TexturePacker's Sprite Sheet and JSON format supported
  • Box2D Physics Engine Plugin
  • Huge library for Tween Animations
  • etc...

FFmpeg-Android:

  • FFmpeg for Android compiled with x264, libass, fontconfig, freetype and fribidi
  • Supports Android L
  • FFmpeg Android Library

Supported Architecture:

  • armv7
  • armv7-neon
  • x86

Android Http Service is probably the easiest way of using RestServices with Android.

With this component you only have to define whatever you want before and after the request, and declare an intent in your manifest. It will handle network problems, verbs, headers etc. only giving them to it. Developers only have to tell the component what they want to send.

A simple way to define and render UI specs on top of your Android UI.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes