基于ijkplayer播放android的android播放器开发,求指导,哪有资料

14890人阅读
开源框架(7)
ijkplayer是Bilibili基于ffmpeg开发并开源的轻量级视频播放器,支持播放本地网络视频,也支持流媒体播放。支持Android&iOS。
ijkplayer的编译这里不多阐述,我也是直接获取别人编译完成的so库文件,直接使用的。如果你对ijkplayer的编译感兴趣,可以百度一下,有很多文章。
使用ijkplayer
ijkplayer源码官方下载地址:
上面是官方提供的ijkplayer的源码地址,但是它是没有编译过的。下面我给大家分享一份编译好的ijkplayer源码,由于比较大,分了三个包才上传完成,需要三个包都下载后才能一起解压:
我们下载完成,进入android/ijkplayer目录:
ijkplayer-java:ijkplayer的一些操作封装及定义。这里面是通用的API接口,里面最主要的是IMediaPlayer,它是用来渲染显示多媒体的。
ijkplayer-exo:google开源的一个新的播放器ExoPlayer,在Demo中和ijkplayer对比用的。通过安装ijkplayer可以发现setting里面可以选择不同player来渲染多媒体显示,该模块下面就是一个MediaPlayer。
ijkplayer-example:测试程序
ijkplayer-{arch}:编译出来的各个版本的.so文件。
官方提供的Demo的代码还是挺多的,甚至还用了otto,需要对官方的demo进行精简,去除一些用不到的代码。
首先需要的是ijkplayer-{arch}、ijkplayer-java两个库。exo是Google提供的新的播放器,这里不需要,直接砍掉。其次是ijkplayer-example里的,我们需要的只有tv.danmaku.ijk.media.example.widget.media包下的部分类。
链接库ijkplayer-arm64,ijkplayer-armv5,ijkplayer-armv7a,ijkplayer-x86,ijkplayer-x86_64是不同体系架构的动态链接库,在当前工程结构里面作为一个模块,如果不想做兼容多平台问题,可以删除其他目录结构,单独保留自己需要的平台目录。
新建一个工程:
(1)把ijkplayer-armv7a/src/main/libs下的文件拷贝到新工程app目录的libs下。
(2)把ijkplayer-java/build/outputs/aar/ijkplayer-java-release.aar复制到新工程app目录的libs下。
(3)修改APP下的build.gradle, 主要设置.so及.aar的位置:
apply plugin: 'com.android.application'
compileSdkVersion 24
buildToolsVersion "25.0.0"
defaultConfig {
applicationId "com.hx.ijkplayer_demo"
minSdkVersion 14
targetSdkVersion 24
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
buildTypes {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
sourceSets {
jniLibs.srcDirs = ['libs']
/**在libs文件夹下找so文件*/
repositories {
mavenCentral()
dirs 'libs' /**在libs文件夹下找aar文件*/
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
compile 'com.android.support:appcompat-v7:24.2.1'
testCompile 'junit:junit:4.12'
compile(name: 'ijkplayer-java-release', ext: 'aar') /**编译ijkplayer-java-release.aar文件*/
(4)复制ijkplayer-example下面的tv.danmaku.ijk.media.example.widget.media到新的工程,删掉一些不需要类。
(5)IjkVideoView里面还是有很多如exo等没用的东西,删!具体可以参见我后面的Demo。
(6)Manifest
&activity android:name=".MainActivity"
android:screenOrientation="sensorLandscape"
android:configChanges="orientation|keyboardHidden"&
&/activity&
&uses-permission android:name="android.permission.INTERNET"/&
&?xml version="1.0" encoding="utf-8"?&
xmlns:android="/apk/res/android"
xmlns:tools="/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"&
android:id="@+id/video_view"
android:layout_width="match_parent"
android:layout_height="match_parent"/&
public class MainActivity extends AppCompatActivity {
private IjkVideoView videoV
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
videoView = (IjkVideoView) findViewById(R.id.video_view);
videoView.setAspectRatio(IRenderView.AR_ASPECT_FIT_PARENT);
videoView.setVideoURI(Uri.parse("http://zv./live/zhongwen800k.m3u8"));
videoView.start();
* 参数aspectRatio(缩放参数)参见IRenderView的常量:IRenderView.AR_ASPECT_FIT_PARENT,
IRenderView.AR_ASPECT_FILL_PARENT,
IRenderView.AR_ASPECT_WRAP_CONTENT,
IRenderView.AR_MATCH_PARENT,
IRenderView.AR_16_9_FIT_PARENT,
IRenderView.AR_4_3_FIT_PARENT
public void setAspectRatio(int aspectRatio);
public int toggleAspectRatio();
public void setVideoPath(String path);
public void setVideoURI(Uri uri);
public void stopPlayback();
* 设置媒体控制器。
* 参数controller:媒体控制器,注意是com.hx.ijkplayer_demo.widget.media.IMediaController。
public void setMediaController(IMediaController controller);
private void toggleMediaControlsVisiblity();
public void setOnPreparedListener(OnPreparedListener l);
public void setOnCompletionListener(IMediaPlayer.OnCompletionListener l);
public void setOnErrorListener(IMediaPlayer.OnErrorListener l);
public void setOnInfoListener(IMediaPlayer.OnInfoListener l);
public int getDuration();
public long getCurrentPosition();
public void seekTo(long msec);
public boolean isPlaying();
public int getBufferPercentage();
封装ijkplayer
上面只是ijkplayer的一个基本用法。我们可以对ijkplayer进行一次封装,让ijkplayer使用起来更加简单。
使用Vitamio的VideoView进行视频播放
视频左侧界面(左1/2以内)上下滑动调节亮度
视频右侧界面(右1/2以外)上下滑动调节声音
双击切换视频窗口布局
非直播状态,可以左右滑动调节当前播放进度
public class PlayerManager {
* 可能会剪裁,保持原视频的大小,显示在中心,当原视频的大小超过view的大小超过部分裁剪处理
public static final String SCALETYPE_FITPARENT="fitParent";
* 可能会剪裁,等比例放大视频,直到填满View为止,超过View的部分作裁剪处理
public static final String SCALETYPE_FILLPARENT="fillParent";
* 将视频的内容完整居中显示,如果视频大于view,则按比例缩视频直到完全显示在view中
public static final String SCALETYPE_WRAPCONTENT="wrapContent";
* 不剪裁,非等比例拉伸画面填满整个View
public static final String SCALETYPE_FITXY="fitXY";
* 不剪裁,非等比例拉伸画面到16:9,并完全显示在View中
public static final String SCALETYPE_16_9="16:9";
* 不剪裁,非等比例拉伸画面到4:3,并完全显示在View中
public static final String SCALETYPE_4_3="4:3";
* 状态常量
private final int STATUS_ERROR=-1;
private final int STATUS_IDLE=0;
private final int STATUS_LOADING=1;
private final int STATUS_PLAYING=2;
private final int STATUS_PAUSE=3;
private final int STATUS_COMPLETED=4;
private final A
private final IjkVideoView videoV
private final AudioManager audioM
public GestureDetector gestureD
private boolean playerS
private boolean isLive = false;
private boolean fullScreenO
private boolean
private final int mMaxV
private int screenWidthP
private int currentP
private int status=STATUS_IDLE;
private long pauseT
private float brightness=-1;
private int volume=-1;
private long newPosition = -1;
private long defaultRetryTime=5000;
private OrientationEventListener orientationEventL
private PlayerStateListener playerStateL
public void setPlayerStateListener(PlayerStateListener playerStateListener) {
this.playerStateListener = playerStateL
private OnErrorListener onErrorListener=new OnErrorListener() {
public void onError(int what, int extra) {
private OnCompleteListener onCompleteListener=new OnCompleteListener() {
public void onComplete() {
private OnInfoListener onInfoListener=new OnInfoListener(){
public void onInfo(int what, int extra) {
private OnControlPanelVisibilityChangeListener onControlPanelVisibilityChangeListener=new OnControlPanelVisibilityChangeListener() {
public void change(boolean isShowing) {
* try to play when error(only for live video)
* defaultRetryTime millisecond,0 will stop retry,default is 5000 millisecond
public void setDefaultRetryTime(long defaultRetryTime) {
this.defaultRetryTime = defaultRetryT
public PlayerManager(final Activity activity) {
IjkMediaPlayer.loadLibrariesOnce(null);
IjkMediaPlayer.native_profileBegin("libijkplayer.so");
playerSupport=true;
} catch (Throwable e) {
Log.e("GiraffePlayer", "loadLibraries error", e);
this.activity=
screenWidthPixels = activity.getResources().getDisplayMetrics().widthP
videoView = (IjkVideoView) activity.findViewById(R.id.video_view);
videoView.setOnCompletionListener(new IMediaPlayer.OnCompletionListener() {
public void onCompletion(IMediaPlayer mp) {
statusChange(STATUS_COMPLETED);
onCompleteListener.onComplete();
videoView.setOnErrorListener(new IMediaPlayer.OnErrorListener() {
public boolean onError(IMediaPlayer mp, int what, int extra) {
statusChange(STATUS_ERROR);
onErrorListener.onError(what,extra);
return true;
videoView.setOnInfoListener(new IMediaPlayer.OnInfoListener() {
public boolean onInfo(IMediaPlayer mp, int what, int extra) {
switch (what) {
case IMediaPlayer.MEDIA_INFO_BUFFERING_START:
statusChange(STATUS_LOADING);
case IMediaPlayer.MEDIA_INFO_BUFFERING_END:
statusChange(STATUS_PLAYING);
case IMediaPlayer.MEDIA_INFO_NETWORK_BANDWIDTH:
case IMediaPlayer.MEDIA_INFO_VIDEO_RENDERING_START:
statusChange(STATUS_PLAYING);
onInfoListener.onInfo(what,extra);
return false;
audioManager = (AudioManager) activity.getSystemService(Context.AUDIO_SERVICE);
mMaxVolume = audioManager.getStreamMaxVolume(AudioManager.STREAM_MUSIC);
gestureDetector = new GestureDetector(activity, new PlayerGestureListener());
if (fullScreenOnly) {
activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
portrait=getScreenOrientation()== ActivityInfo.SCREEN_ORIENTATION_PORTRAIT;
if (!playerSupport) {
DebugLog.e("播放器不支持此设备");
private void statusChange(int newStatus) {
status = newS
if (!isLive && newStatus==STATUS_COMPLETED) {
DebugLog.d("statusChange STATUS_COMPLETED...");
if (playerStateListener != null){
playerStateListener.onComplete();
}else if (newStatus == STATUS_ERROR) {
DebugLog.d("statusChange STATUS_ERROR...");
if (playerStateListener != null){
playerStateListener.onError();
} else if(newStatus==STATUS_LOADING){
if (playerStateListener != null){
playerStateListener.onLoading();
DebugLog.d("statusChange STATUS_LOADING...");
} else if (newStatus == STATUS_PLAYING) {
DebugLog.d("statusChange STATUS_PLAYING...");
if (playerStateListener != null){
playerStateListener.onPlay();
public void onPause() {
pauseTime= System.currentTimeMillis();
if (status==STATUS_PLAYING) {
videoView.pause();
if (!isLive) {
currentPosition = videoView.getCurrentPosition();
public void onResume() {
pauseTime=0;
if (status==STATUS_PLAYING) {
if (isLive) {
videoView.seekTo(0);
if (currentPosition&0) {
videoView.seekTo(currentPosition);
videoView.start();
public void onDestroy() {
orientationEventListener.disable();
videoView.stopPlayback();
public void play(String url) {
this.url =
if (playerSupport) {
videoView.setVideoPath(url);
videoView.start();
private String generateTime(long time) {
int totalSeconds = (int) (time / 1000);
int seconds = totalSeconds % 60;
int minutes = (totalSeconds / 60) % 60;
int hours = totalSeconds / 3600;
return hours & 0 ? String.format("%02d:%02d:%02d", hours, minutes, seconds) : String.format("%02d:%02d", minutes, seconds);
private int getScreenOrientation() {
int rotation = activity.getWindowManager().getDefaultDisplay().getRotation();
DisplayMetrics dm = new DisplayMetrics();
activity.getWindowManager().getDefaultDisplay().getMetrics(dm);
int width = dm.widthP
int height = dm.heightP
if ((rotation == Surface.ROTATION_0 || rotation == Surface.ROTATION_180) && height & width ||
(rotation == Surface.ROTATION_90 || rotation == Surface.ROTATION_270) && width & height) {
switch (rotation) {
case Surface.ROTATION_0:
orientation = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT;
case Surface.ROTATION_90:
orientation = ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE;
case Surface.ROTATION_180:
orientation = ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT;
case Surface.ROTATION_270:
orientation = ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE;
orientation = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT;
switch (rotation) {
case Surface.ROTATION_0:
orientation = ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE;
case Surface.ROTATION_90:
orientation = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT;
case Surface.ROTATION_180:
orientation = ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE;
case Surface.ROTATION_270:
orientation = ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT;
orientation = ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE;
* 滑动改变声音大小
private void onVolumeSlide(float percent) {
if (volume == -1) {
volume = audioManager.getStreamVolume(AudioManager.STREAM_MUSIC);
if (volume & 0)
volume = 0;
int index = (int) (percent * mMaxVolume) +
if (index & mMaxVolume) {
index = mMaxV
} else if (index & 0){
index = 0;
audioManager.setStreamVolume(AudioManager.STREAM_MUSIC, index, 0);
int i = (int) (index * 1.0 / mMaxVolume * 100);
String s = i + "%";
if (i == 0) {
s = "off";
DebugLog.d("onVolumeSlide:"+s);
private void onProgressSlide(float percent) {
long position = videoView.getCurrentPosition();
long duration = videoView.getDuration();
long deltaMax = Math.min(100 * 1000, duration - position);
long delta = (long) (deltaMax * percent);
newPosition = delta +
if (newPosition & duration) {
newPosition =
} else if (newPosition &= 0) {
newPosition=0;
int showDelta = (int) delta / 1000;
if (showDelta != 0) {
String text = showDelta & 0 ? ("+" + showDelta) : "" + showD
DebugLog.d("onProgressSlide:" + text);
* 滑动改变亮度
private void onBrightnessSlide(float percent) {
if (brightness & 0) {
brightness = activity.getWindow().getAttributes().screenB
if (brightness &= 0.00f){
brightness = 0.50f;
}else if (brightness & 0.01f){
brightness = 0.01f;
DebugLog.d("brightness:"+brightness+",percent:"+ percent);
WindowManager.LayoutParams lpa = activity.getWindow().getAttributes();
lpa.screenBrightness = brightness +
if (lpa.screenBrightness & 1.0f){
lpa.screenBrightness = 1.0f;
}else if (lpa.screenBrightness & 0.01f){
lpa.screenBrightness = 0.01f;
activity.getWindow().setAttributes(lpa);
public void setFullScreenOnly(boolean fullScreenOnly) {
this.fullScreenOnly = fullScreenO
tryFullScreen(fullScreenOnly);
if (fullScreenOnly) {
activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR);
private void tryFullScreen(boolean fullScreen) {
if (activity instanceof AppCompatActivity) {
ActionBar supportActionBar = ((AppCompatActivity) activity).getSupportActionBar();
if (supportActionBar != null) {
if (fullScreen) {
supportActionBar.hide();
supportActionBar.show();
setFullScreen(fullScreen);
private void setFullScreen(boolean fullScreen) {
if (activity != null) {
WindowManager.LayoutParams attrs = activity.getWindow().getAttributes();
if (fullScreen) {
attrs.flags |= WindowManager.LayoutParams.FLAG_FULLSCREEN;
activity.getWindow().setAttributes(attrs);
activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);
attrs.flags &= (~WindowManager.LayoutParams.FLAG_FULLSCREEN);
activity.getWindow().setAttributes(attrs);
activity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);
fitParent:可能会剪裁,保持原视频的大小,显示在中心,当原视频的大小超过view的大小超过部分裁剪处理
fillParent:可能会剪裁,等比例放大视频,直到填满View为止,超过View的部分作裁剪处理
wrapContent:将视频的内容完整居中显示,如果视频大于view,则按比例缩视频直到完全显示在view中
fitXY:不剪裁,非等比例拉伸画面填满整个View
16:9:不剪裁,非等比例拉伸画面到16:9,并完全显示在View中
4:3:不剪裁,非等比例拉伸画面到4:3,并完全显示在View中
* scaleType
public void setScaleType(String scaleType) {
if (SCALETYPE_FITPARENT.equals(scaleType)) {
videoView.setAspectRatio(IRenderView.AR_ASPECT_FIT_PARENT);
}else if (SCALETYPE_FILLPARENT.equals(scaleType)) {
videoView.setAspectRatio(IRenderView.AR_ASPECT_FILL_PARENT);
}else if (SCALETYPE_WRAPCONTENT.equals(scaleType)) {
videoView.setAspectRatio(IRenderView.AR_ASPECT_WRAP_CONTENT);
}else if (SCALETYPE_FITXY.equals(scaleType)) {
videoView.setAspectRatio(IRenderView.AR_MATCH_PARENT);
}else if (SCALETYPE_16_9.equals(scaleType)) {
videoView.setAspectRatio(IRenderView.AR_16_9_FIT_PARENT);
}else if (SCALETYPE_4_3.equals(scaleType)) {
videoView.setAspectRatio(IRenderView.AR_4_3_FIT_PARENT);
public void start() {
videoView.start();
public void pause() {
videoView.pause();
public boolean onBackPressed() {
if (!fullScreenOnly && getScreenOrientation() == ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE) {
activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
return true;
return false;
class Query {
private final A
public Query(Activity activity) {
this.activity=
public Query id(int id) {
view = activity.findViewById(id);
return this;
public Query image(int resId) {
if (view instanceof ImageView) {
((ImageView) view).setImageResource(resId);
return this;
public Query visible() {
if (view != null) {
view.setVisibility(View.VISIBLE);
return this;
public Query gone() {
if (view != null) {
view.setVisibility(View.GONE);
return this;
public Query invisible() {
if (view != null) {
view.setVisibility(View.INVISIBLE);
return this;
public Query clicked(View.OnClickListener handler) {
if (view != null) {
view.setOnClickListener(handler);
return this;
public Query text(CharSequence text) {
if (view!=null && view instanceof TextView) {
((TextView) view).setText(text);
return this;
public Query visibility(int visible) {
if (view != null) {
view.setVisibility(visible);
return this;
private void size(boolean width, int n, boolean dip){
if(view != null){
ViewGroup.LayoutParams lp = view.getLayoutParams();
if(n & 0 && dip){
n = dip2pixel(activity, n);
if(width){
lp.width =
lp.height =
view.setLayoutParams(lp);
public void height(int height, boolean dip) {
size(false,height,dip);
public int dip2pixel(Context context, float n){
int value = (int) TypedValue.PLEX_UNIT_DIP, n, context.getResources().getDisplayMetrics());
public float pixel2dip(Context context, float n){
Resources resources = context.getResources();
DisplayMetrics metrics = resources.getDisplayMetrics();
float dp = n / (metrics.densityDpi / 160f);
public class PlayerGestureListener extends GestureDetector.SimpleOnGestureListener {
private boolean firstT
private boolean volumeC
private boolean toS
public boolean onDoubleTap(MotionEvent e) {
videoView.toggleAspectRatio();
return true;
public boolean onDown(MotionEvent e) {
firstTouch = true;
return super.onDown(e);
public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) {
float mOldX = e1.getX(), mOldY = e1.getY();
float deltaY = mOldY - e2.getY();
float deltaX = mOldX - e2.getX();
if (firstTouch) {
toSeek = Math.abs(distanceX) &= Math.abs(distanceY);
volumeControl=mOldX & screenWidthPixels * 0.5f;
firstTouch = false;
if (toSeek) {
if (!isLive) {
onProgressSlide(-deltaX / videoView.getWidth());
float percent = deltaY / videoView.getHeight();
if (volumeControl) {
onVolumeSlide(percent);
onBrightnessSlide(percent);
return super.onScroll(e1, e2, distanceX, distanceY);
public boolean onSingleTapUp(MotionEvent e) {
return true;
* is player support this device
public boolean isPlayerSupport() {
return playerS
* 是否正在播放
public boolean isPlaying() {
return videoView!=null?videoView.isPlaying():false;
public void stop(){
videoView.stopPlayback();
public int getCurrentPosition(){
return videoView.getCurrentPosition();
* get video duration
public int getDuration(){
return videoView.getDuration();
public PlayerManager playInFullScreen(boolean fullScreen){
if (fullScreen) {
activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
return this;
public PlayerManager onError(OnErrorListener onErrorListener) {
this.onErrorListener = onErrorL
return this;
public PlayerManager onComplete(OnCompleteListener onCompleteListener) {
this.onCompleteListener = onCompleteL
return this;
public PlayerManager onInfo(OnInfoListener onInfoListener) {
this.onInfoListener = onInfoL
return this;
public PlayerManager onControlPanelVisibilityChange(OnControlPanelVisibilityChangeListener listener){
this.onControlPanelVisibilityChangeListener =
return this;
* set is live (can't seek forward)
public PlayerManager live(boolean isLive) {
this.isLive = isL
return this;
public PlayerManager toggleAspectRatio(){
if (videoView != null) {
videoView.toggleAspectRatio();
return this;
public interface PlayerStateListener{
void onComplete();
void onError();
void onLoading();
void onPlay();
public interface OnErrorListener{
void onError(int what, int extra);
public interface OnCompleteListener{
void onComplete();
public interface OnControlPanelVisibilityChangeListener{
void change(boolean isShowing);
public interface OnInfoListener{
void onInfo(int what, int extra);
使用封装后的PlayerManager播放视频:
public class MainActivity extends AppCompatActivity implements PlayerManager.PlayerStateListener{
private String url1 = "rtmp://203.207.99.19:1935/live/CCTV5";
private String url2 = "http://zv./live/zhongwen800k.m3u8";
private String url3 = "rtsp://184.72.239.149/vod/mp4:BigBuckBunny_115k.mov";
private String url4 = "http://42.96.249.166/live/2";
private PlayerM
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initPlayer();
private void initPlayer() {
player = new PlayerManager(this);
player.setFullScreenOnly(true);
player.setScaleType(PlayerManager.SCALETYPE_FILLPARENT);
player.playInFullScreen(true);
player.setPlayerStateListener(this);
player.play(url1);
public boolean onTouchEvent(MotionEvent event) {
if (player.gestureDetector.onTouchEvent(event))
return true;
return super.onTouchEvent(event);
public void onComplete() {
public void onError() {
public void onLoading() {
public void onPlay() {
&&相关文章推荐
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:103559次
积分:1765
积分:1765
排名:千里之外
原创:74篇
(3)(4)(2)(6)(17)(14)(13)(23)}

我要回帖

更多关于 ijkplayer 音乐播放器 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信