|
| 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