Skip to content

Commit ee37568

Browse files
committed
Commiting latest changes
1 parent 699b237 commit ee37568

File tree

79 files changed

+3829
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+3829
-0
lines changed

.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Built application files
2+
*.apk
3+
*.ap_
4+
*.jar
5+
6+
# Android Studio
7+
.idea
8+
local.properties
9+
*.iml
10+
.gradle
11+
build/

AdvancedExample/app/build.gradle

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 25
5+
buildToolsVersion '25.0.1'
6+
7+
defaultConfig {
8+
applicationId "com.google.ads.interactivemedia.v3.samples.videoplayerapp"
9+
minSdkVersion 16
10+
targetSdkVersion 25
11+
versionCode 1
12+
versionName "1.0"
13+
}
14+
buildTypes {
15+
release {
16+
minifyEnabled false
17+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18+
}
19+
}
20+
}
21+
22+
dependencies {
23+
compile 'com.google.ads.interactivemedia.v3:interactivemedia:3.7.4'
24+
compile 'com.android.support:appcompat-v7:25+'
25+
compile 'com.android.support:mediarouter-v7:25+'
26+
compile 'com.google.android.gms:play-services-ads:9.4.0'
27+
compile 'com.google.android.gms:play-services-cast-framework:9.4.0'
28+
compile 'com.google.android.exoplayer:exoplayer:r2.4.1'
29+
}
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Add project specific ProGuard rules here.
2+
# You can edit the include path and order by changing the proguardFiles
3+
# directive in build.gradle.
4+
#
5+
# For more details, see
6+
# http://developer.android.com/guide/developing/tools/proguard.html
7+
8+
# Add any project specific keep options here:
9+
10+
# If your project uses WebView with JS, uncomment the following
11+
# and specify the fully qualified class name to the JavaScript interface
12+
# class:
13+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
14+
# public *;
15+
#}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.google.ads.interactivemedia.v3.samples.videoplayerapp">
4+
5+
<!-- Required permissions for the video player -->
6+
<uses-permission android:name="android.permission.INTERNET"/>
7+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
8+
<application
9+
android:allowBackup="true"
10+
android:icon="@drawable/ic_launcher"
11+
android:label="@string/app_name"
12+
android:theme="@style/AppTheme" >
13+
<meta-data
14+
android:name="com.google.android.gms.cast.framework.OPTIONS_PROVIDER_CLASS_NAME"
15+
android:value="com.google.ads.interactivemedia.v3.samples.videoplayerapp.CastOptionsProvider" />
16+
<meta-data
17+
android:name="com.google.android.gms.version"
18+
android:value="@integer/google_play_services_version" />
19+
<activity
20+
android:name=".MyActivity"
21+
android:label="@string/app_name"
22+
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize">
23+
<intent-filter>
24+
<action android:name="android.intent.action.MAIN" />
25+
<category android:name="android.intent.category.LAUNCHER" />
26+
</intent-filter>
27+
</activity>
28+
</application>
29+
30+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,216 @@
1+
/*
2+
* Copyright 2015 Google, Inc.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package com.google.ads.interactivemedia.v3.samples.samplehlsvideoplayer;
18+
19+
import android.content.Context;
20+
import android.net.Uri;
21+
import android.os.Build;
22+
import android.os.Handler;
23+
import android.util.Log;
24+
25+
import com.google.android.exoplayer2.DefaultLoadControl;
26+
import com.google.android.exoplayer2.DefaultRenderersFactory;
27+
import com.google.android.exoplayer2.ExoPlayer;
28+
import com.google.android.exoplayer2.ExoPlayerFactory;
29+
import com.google.android.exoplayer2.SimpleExoPlayer;
30+
import com.google.android.exoplayer2.Timeline;
31+
import com.google.android.exoplayer2.metadata.Metadata;
32+
import com.google.android.exoplayer2.metadata.MetadataRenderer.Output;
33+
import com.google.android.exoplayer2.metadata.id3.TextInformationFrame;
34+
import com.google.android.exoplayer2.source.MediaSource;
35+
import com.google.android.exoplayer2.source.hls.HlsMediaSource;
36+
import com.google.android.exoplayer2.trackselection.DefaultTrackSelector;
37+
import com.google.android.exoplayer2.ui.PlaybackControlView.ControlDispatcher;
38+
import com.google.android.exoplayer2.ui.SimpleExoPlayerView;
39+
import com.google.android.exoplayer2.upstream.DataSource;
40+
import com.google.android.exoplayer2.upstream.DefaultDataSourceFactory;
41+
42+
/**
43+
* A video player that plays HLS streams; uses ExoPlayer.
44+
*/
45+
public class SampleHlsVideoPlayer {
46+
47+
private static final String LOG_TAG = "HlsPlayer";
48+
private static final String USER_AGENT = "ImaSampleHlsPlayer (Linux;Android "
49+
+ Build.VERSION.RELEASE + ") ImaSample/1.0";
50+
51+
/**
52+
* Video player callback to be called when TXXX ID3 tag is received or seeking occurs.
53+
*/
54+
public interface SampleHlsVideoPlayerCallback {
55+
void onUserTextReceived(String userText);
56+
void onSeek(int windowIndex, long positionMs);
57+
}
58+
59+
private Context mContext;
60+
61+
private SimpleExoPlayer mPlayer;
62+
private SimpleExoPlayerView mPlayerView;
63+
private SampleHlsVideoPlayerCallback mPlayerCallback;
64+
65+
private Timeline.Period mPeriod = new Timeline.Period();
66+
67+
private String mStreamUrl;
68+
private Boolean mIsStreamRequested;
69+
private boolean mCanSeek;
70+
71+
public SampleHlsVideoPlayer(Context context, SimpleExoPlayerView playerView) {
72+
mContext = context;
73+
mPlayerView = playerView;
74+
mIsStreamRequested = false;
75+
mCanSeek = true;
76+
}
77+
78+
private void initPlayer() {
79+
release();
80+
81+
DefaultTrackSelector trackSelector = new DefaultTrackSelector();
82+
DefaultTrackSelector.Parameters params =
83+
new DefaultTrackSelector.Parameters().withPreferredTextLanguage("en");
84+
trackSelector.setParameters(params);
85+
86+
87+
mPlayer = ExoPlayerFactory.newSimpleInstance(new DefaultRenderersFactory(mContext),
88+
trackSelector, new DefaultLoadControl());
89+
mPlayerView.setPlayer(mPlayer);
90+
mPlayerView.setControlDispatcher(new ControlDispatcher() {
91+
@Override
92+
public boolean dispatchSetPlayWhenReady(ExoPlayer player, boolean playWhenReady) {
93+
player.setPlayWhenReady(playWhenReady);
94+
return true;
95+
}
96+
97+
@Override
98+
public boolean dispatchSeekTo(ExoPlayer player, int windowIndex, long positionMs) {
99+
if (mCanSeek) {
100+
if (mPlayerCallback != null) {
101+
mPlayerCallback.onSeek(windowIndex, positionMs);
102+
} else {
103+
player.seekTo(windowIndex, positionMs);
104+
}
105+
}
106+
return true;
107+
}
108+
});
109+
}
110+
111+
public void play() {
112+
if (mIsStreamRequested) {
113+
// Stream requested, just resume.
114+
mPlayer.setPlayWhenReady(true);
115+
return;
116+
}
117+
initPlayer();
118+
119+
DataSource.Factory dataSourceFactory = new DefaultDataSourceFactory(mContext, USER_AGENT);
120+
MediaSource hlsSource =
121+
new HlsMediaSource(Uri.parse(mStreamUrl), dataSourceFactory, new Handler(), null);
122+
mPlayer.prepare(hlsSource);
123+
124+
// Register for ID3 events.
125+
mPlayer.setMetadataOutput(new Output() {
126+
@Override
127+
public void onMetadata(Metadata metadata) {
128+
for (int i = 0; i < metadata.length(); i++) {
129+
Metadata.Entry entry = metadata.get(i);
130+
if (entry instanceof TextInformationFrame) {
131+
TextInformationFrame textFrame = (TextInformationFrame) entry;
132+
if ("TXXX".equals(textFrame.id)) {
133+
Log.d(LOG_TAG, "Received user text: " + textFrame.value);
134+
if (mPlayerCallback != null) {
135+
mPlayerCallback.onUserTextReceived(textFrame.value);
136+
}
137+
}
138+
}
139+
}
140+
}
141+
});
142+
143+
mPlayer.setPlayWhenReady(true);
144+
mIsStreamRequested = true;
145+
}
146+
147+
public void pause() {
148+
mPlayer.setPlayWhenReady(false);
149+
}
150+
151+
public void seekTo(long positionMs) {
152+
this.seekTo(mPlayer.getCurrentWindowIndex(), positionMs);
153+
}
154+
155+
public void seekTo(int windowIndex, long positionMs) {
156+
mPlayer.seekTo(windowIndex, positionMs);
157+
}
158+
159+
public void release() {
160+
if (mPlayer != null) {
161+
mPlayer.release();
162+
mPlayer = null;
163+
mIsStreamRequested = false;
164+
}
165+
}
166+
167+
public void setStreamUrl(String streamUrl) {
168+
mStreamUrl = streamUrl;
169+
mIsStreamRequested = false; //request new stream on play
170+
}
171+
172+
public void enableControls(boolean doEnable) {
173+
if (doEnable) {
174+
mPlayerView.showController();
175+
} else {
176+
mPlayerView.hideController();
177+
}
178+
}
179+
180+
public void setCanSeek(boolean canSeek) {
181+
mCanSeek = canSeek;
182+
}
183+
184+
public boolean getCanSeek() {
185+
return mCanSeek;
186+
}
187+
188+
public boolean isPlaying() {
189+
return mPlayer.getPlayWhenReady();
190+
}
191+
192+
public boolean isStreamRequested() {
193+
return mIsStreamRequested;
194+
}
195+
196+
// Methods for exposing player information.
197+
public void setSampleHlsVideoPlayerCallback(SampleHlsVideoPlayerCallback callback) {
198+
mPlayerCallback = callback;
199+
}
200+
201+
public long getCurrentPositionPeriod() {
202+
// Adjust position to be relative to start of period rather than window, to account for DVR
203+
// window.
204+
long position = mPlayer.getCurrentPosition();
205+
Timeline currentTimeline = mPlayer.getCurrentTimeline();
206+
if (!currentTimeline.isEmpty()) {
207+
position -= currentTimeline.getPeriod(mPlayer.getCurrentPeriodIndex(), mPeriod)
208+
.getPositionInWindowMs();
209+
}
210+
return position;
211+
}
212+
213+
public long getDuration() {
214+
return mPlayer.getDuration();
215+
}
216+
}

0 commit comments

Comments
 (0)