GiraffePlayer
android video player base on ijkplayer
Install / Use
/learn @tcking/GiraffePlayerREADME
GiraffePlayer
NOTE:this project is no longer update please using improved GiraffePlayer2 ,for flutter please visit GPlayer
out of the box android video player base on ijkplayer
note: if the player can't play your video,try download full-featured so which support more codec/format (bigger binary size) to replace ijkplayer-java/src/main/jniLibs (I have try to push a new branch to github but failed)
features
- base on ijkplayer,support RTMP , HLS (http & https) , MP4,M4A etc.
- gestures for volume control
- gestures for brightness control
- gestures for forward or backward
- fullscreen by manual or sensor
- try to replay when error(only for live video)
- set video scale type (double click video will switch the scale types in app,you can find the difference)
- fitParent:scale the video uniformly (maintain the video's aspect ratio) so that both dimensions (width and height) of the video will be equal to or less than the corresponding dimension of the view. like ImageView's
CENTER_INSIDE.等比缩放,画面填满view。 - fillParent:scale the video uniformly (maintain the video's aspect ratio) so that both dimensions (width and height) of the video will be equal to or larger than the corresponding dimension of the view .like ImageView's
CENTER_CROP.等比缩放,直到画面宽高都等于或小于view的宽高。 - wrapContent:center the video in the view,if the video is less than view perform no scaling,if video is larger than view then scale the video uniformly so that both dimensions (width and height) of the video will be equal to or less than the corresponding dimension of the view. 将视频的内容完整居中显示,如果视频大于view,则按比例缩视频直到完全显示在view中。
- fitXY:scale in X and Y independently, so that video matches view exactly.不剪裁,非等比例拉伸画面填满整个View
- 16:9:scale x and y with aspect ratio 16:9 until both dimensions (width and height) of the video will be equal to or less than the corresponding dimension of the view.不剪裁,非等比例拉伸画面到16:9,并完全显示在View中。
- 4:3:scale x and y with aspect ratio 4:3 until both dimensions (width and height) of the video will be equal to or less than the corresponding dimension of the view.不剪裁,非等比例拉伸画面到4:3,并完全显示在View中。
- fitParent:scale the video uniformly (maintain the video's aspect ratio) so that both dimensions (width and height) of the video will be equal to or less than the corresponding dimension of the view. like ImageView's
how to import library
- git clone https://github.com/tcking/GiraffePlayer.git
- android studio->file->New->Import module->select
giraffeplayer
notice:
the player default support 6 CPU architecture:ARMv5, ARMv7, ARMv8,x86 and 86_64,if your project need't support all of the architectures,you can remove the folder in ijkplayer-java/src/main/jniLibs to generate a light APK.
read this first:How to use 32-bit native libaries on 64-bit Android device,What you should know about .so files,关于Android的.so文件你所需要知道的
How to use (example code)
case 1: only want to play a video fullscreen
just callGiraffePlayerActivity.configPlayer(activity).play(url),all is done.
case 2: embed a player in a layout
step 1: include video layout in your layout xml file
<include
layout="@layout/giraffe_player"
android:layout_width="match_parent"
android:layout_height="210dp"/>
notice:the giraffe player is match_parent default,if you want to specify height or width you can overwrite layout_width and layout_width in include tag
step 2: new player and call play
GiraffePlayer player = new GiraffePlayer(activity);
player.play(url);
API:
play(url)//play videostop()//stop playpause()start()forward()// forward or back,example: forward(0.1f) forward(-0.1f)getCurrentPosition()setScaleType(GiraffePlayer.SCALETYPE_FITPARENT)//set video scale typetoggleAspectRatio()// toggle video scale typeseekTo(...)//seek to specify positiongetDuration()//get video durationonInfo(...)//callback when have some informationonError(...)//callback when an error occurredonComplete(...)//callback when the play is overonControlPanelVisibilityChange(...)//callback when control panel visibility change
screencap

Related Skills
docs-writer
99.3k`docs-writer` skill instructions As an expert technical writer and editor for the Gemini CLI project, you produce accurate, clear, and consistent documentation. When asked to write, edit, or revie
model-usage
339.3kUse CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per-model summary from codexbar cost JSON.
Design
Campus Second-Hand Trading Platform \- General Design Document (v5.0 \- React Architecture \- Complete Final Version)1\. System Overall Design 1.1. Project Overview This project aims t
ddd
Guía de Principios DDD para el Proyecto > 📚 Documento Complementario : Este documento define los principios y reglas de DDD. Para ver templates de código, ejemplos detallados y guías paso
