Skip to content

GibbsQin/GPlayer

Repository files navigation

GPlayer

README English

介绍

GPlayer是一款基于 ffmpeg、mediacodec 的Android视频播放器框架。同时支持软解码和硬解码,通过OpenGL和AudioTrack进行渲染。

下载

allprojects {
	repositories {
		...
		maven { url 'https://www.jitpack.io' }
	}
}

dependencies {
        implementation 'com.github.GibbsQin:GPlayer:+'
}

使用

<com.gibbs.gplayer.GPlayerView
    android:id="@+id/gl_surface_view"
    android:layout_width="0dp"
    android:layout_height="0dp"
    app:layout_constraintDimensionRatio="H,16:9"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintBottom_toBottomOf="parent"/>

private GPlayerView mVideoView;
mVideoView = findViewById(R.id.gl_surface_view);
mVideoView.setDataSource(url);
mVideoView.prepare()