@Effect({ dispatch: false })
  pauseVideo$ = this.actions$.pipe(
    ofType(AppPlayer.ActionTypes.PAUSE),
    tap(() => this.youtubePlayerService.pause())
  );