add log to debug #86

This commit is contained in:
lishoujun 2019-01-04 23:52:09 +08:00
parent a5cc3f29b2
commit 875cb0fd54
2 changed files with 11 additions and 3 deletions

View File

@ -183,8 +183,9 @@ public class VideoPlayActivity extends AppCompatActivity implements VideoRendere
torrentStream.addListener(new TorrentListener() {
@Override
public void onStreamReady(Torrent torrent) {
Log.d(TAG, "Ready");
mService.setCurrentStreamUrl(Uri.fromFile(torrent.getVideoFile()).toString());
String videopath = Uri.fromFile(torrent.getVideoFile()).toString();
Log.d(TAG, "Ready! torrentStream videopath:" + videopath);
mService.setCurrentStreamUrl(videopath);
startPlayer();
}

View File

@ -35,6 +35,7 @@ import androidx.annotation.Nullable;
import android.support.v4.media.MediaDescriptionCompat;
import android.support.v4.media.session.MediaSessionCompat;
import android.util.Log;
import android.widget.Toast;
import com.google.android.exoplayer2.C;
import com.google.android.exoplayer2.ExoPlayerFactory;
@ -82,6 +83,8 @@ public class VideoPlayerService extends Service {
@Override
public void onCreate() {
Log.v(TAG, "onCreate...");
super.onCreate();
player = ExoPlayerFactory.newSimpleInstance(getApplicationContext(), new DefaultTrackSelector());
@ -136,7 +139,11 @@ public class VideoPlayerService extends Service {
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Context context = this;
Log.v(TAG, "onStartCommand...");
if(currentStreamUrl == null){
Toast.makeText(context, "currentStreamUrl must not null", Toast.LENGTH_SHORT).show();
}
playVideo();
return START_STICKY;
}
@ -150,7 +157,7 @@ public class VideoPlayerService extends Service {
public void setCurrentStreamUrl(String streamUrl)
{
Log.v(TAG, "setCurrentStreamUrl...");
Log.v(TAG, "setCurrentStreamUrl..." + streamUrl);
currentStreamUrl = streamUrl;
}