티스토리 뷰
exoPlayer 장점 - 빠르다. 버벅임이 적다. 가볍다 등등. MediaPlayer보다 훨신 기능도 많고 좋은것 같음.
실제 상용 프로젝트에선 MediaPlayer를 사용한 SurfaceView보다 ExoPlayer가 훨신 좋아보임..
타겟 환경
compileSdkVersion 22
buildToolsVersion "28.0.3"
minSdkVersion 17
* build.gradle(Module:app) - android
compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}
* build.gradle(Module:app) - dependencies
implementation "com.google.android.exoplayer:exoplayer-core:2.7.0"
implementation "com.google.android.exoplayer:exoplayer-ui:2.7.0"
* build.gradle(Project: app) - buildscript
buildscript {
repositories {
maven { url "https://maven.google.com" }
maven { url "https://jcenter.bintray.com" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
}
}
* build.gradle(Project: app) - allprojects
allprojects {
repositories {
maven { url "https://maven.google.com" }
maven { url "https://jcenter.bintray.com" }
}
}
*** url이 http이면 에러남.
원래 google() jcenter() 만 해줘도 되지만.. 구버전을 쓰기 때문에 위와 같이 함. exoPlayer를 2.7.0 버전쓰는 이유도 구버전 컴파일 때문.
*xml
<com.google.android.exoplayer2.ui.PlayerView
android:id="@+id/exoPlayerView1"
android:focusable="true"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"
app:use_controller="false"
/>
*activity - onCreate()
mExoPlayerView = (PlayerView) findViewById(R.id.exoPlayerView1);
mExoPlayerView.setShutterBackgroundColor(Color.TRANSPARENT);
*실행 함수 - 매개변수는 R.raw.파일 이름.
private void exoPlayerStartAnimation(int movie) {
if (mExoPlayer != null) {
mExoPlayer.release();
}
mExoPlayer = ExoPlayerFactory.newSimpleInstance(new DefaultRenderersFactory(this), new DefaultTrackSelector(), new DefaultLoadControl());
Uri uri = RawResourceDataSource.buildRawResourceUri(movie);
ExtractorMediaSource audioSource = new ExtractorMediaSource(uri, new DefaultDataSourceFactory(this, "MyExoplayer"),
new DefaultExtractorsFactory(), null, null);
mExoPlayer.prepare(audioSource);
mExoPlayer.setRepeatMode(Player.REPEAT_MODE_ONE);
mExoPlayerView.setPlayer(mExoPlayer);
mExoPlayerView.setResizeMode(AspectRatioFrameLayout.RESIZE_MODE_ZOOM);
mExoPlayer.setPlayWhenReady(true);
}
*onDestroy()
if (mExoPlayer != null) {
mExoPlayer.release();
}
'android' 카테고리의 다른 글
AnimationDrawable memory 문제. (0) | 2020.04.27 |
---|---|
안드로이드 SurfaceView Video 예제 (0) | 2020.01.31 |
custom frameWork 빌드 방법. (0) | 2020.01.21 |
타이틀, 하단 홈 백버튼 등 안보이게 처리하기 (0) | 2020.01.21 |
인텐트 oem 연동 리스트 (0) | 2019.09.23 |
- Total
- Today
- Yesterday
- MongoDB
- React Native
- 차번호 정규식
- react native state
- not starting .bash_profile
- ubunut 설치 link
- ubunut android
- not working adb
- 안드로이드
- rn
- 자바
- 구글 맵 경로 그리기
- 함수형 코드
- not found adb
- https://hwan-shell.tistory.com/244
- 구글 맵 선그리기
- 명령어
- 데이터베이스
- 귀찮아;;
- text 부분 색 칠하기
- nosql
- 클래스형 코드
- adb 환경변수
- Android
- spannableText
- 차번호 정규표현식
- https://medium.com/@limgyumin/%EC%BD%94%ED%8B%80%EB%A6%B0-%EC%9D%98-apply-with-let-also-run-%EC%9D%80-%EC%96%B8%EC%A0%9C-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94%EA%B0%80-4a517292df29
- insert
- mac android
- mongo db
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |