Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multi-Program mpegts stream not skip programs without or empty audio/video streams #15696

Open
1 task done
joaoppp opened this issue Mar 7, 2019 · 0 comments
Open
1 task done

Comments

@joaoppp
Copy link

joaoppp commented Mar 7, 2019

Bug report

Describe the bug

Using a Multi-Program mpegts stream(from PVR Enigma2 client 3.19.0), Kodi is not skipping programs without or empty audio/video streams.
The code to skip programs without or empty audio/video streams is there #12655 and it works, but it requires a prior avformat_find_stream_info and that is not being done because m_streaminfo will be false for mpegts.

bool skipCreateStreams = false;
  bool isBluray = pInput->IsStreamType(DVDSTREAM_TYPE_BLURAY);
  if (iformat && (strcmp(iformat->name, "mpegts") == 0) && !fileinfo && !isBluray)
  {
    av_opt_set_int(m_pFormatContext, "analyzeduration", 500000, 0);
    m_checkvideo = true;
    skipCreateStreams = true;
  }
  else if (!iformat || (strcmp(iformat->name, "mpegts") != 0))
  {
    m_streaminfo = true;
  }

Debuglog

(...)
2019-03-07 14:41:59.481 T:139696579516160   DEBUG: CInputStreamPVRChannel - OpenPVRStream - opened channel stream pvr://channels/tv/All channels/pvr.vuplus_1.pvr
2019-03-07 14:41:59.481 T:139696579516160  NOTICE: Creating Demuxer
2019-03-07 14:41:59.481 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: Probing mp3 score:1 size:2048
2019-03-07 14:41:59.481 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: Probing mpegts score:50 size:2048
2019-03-07 14:41:59.481 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: Format mpegts probed with size=2048 and score=50
2019-03-07 14:41:59.481 T:139696579516160   DEBUG: Open - probing detected format [mpegts]
2019-03-07 14:41:59.482 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: score: 44, dvhs_score: 0, fec_score: 0
2019-03-07 14:41:59.482 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] Filter: pid=0x11 type=1
2019-03-07 14:41:59.482 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] Filter: pid=0x0 type=1
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x0 pid=0x10
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x4 pid=0x331
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0004
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] Filter: pid=0x331 type=1
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x5 pid=0x331
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0005
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x191 pid=0x331
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0191
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x192 pid=0x331
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0192
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x193 pid=0x331
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0193
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x195 pid=0x331
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0195
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x196 pid=0x331
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0196
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x199 pid=0x331
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0199
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x19a pid=0x331
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x019a
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x1cb pid=0x331
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x01cb
2019-03-07 14:41:59.484 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x1ce pid=0x331
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x01ce
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x208 pid=0x331
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0208
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x209 pid=0x331
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0209
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x20b pid=0x331
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x020b
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x20c pid=0x331
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x020c
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x642 pid=0x331
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0642
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x649 pid=0x331
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0649
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x64a pid=0x331
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x064a
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13a6 pid=0x331
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13a6
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13a8 pid=0x331
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13a8
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13a9 pid=0x331
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13a9
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13aa pid=0x331
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13aa
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13ab pid=0x331
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13ab
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13ac pid=0x331
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13ac
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13ad pid=0x331
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13ad
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13ae pid=0x331
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13ae
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13b0 pid=0x331
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13b0
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13b1 pid=0x331
2019-03-07 14:41:59.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13b1
2019-03-07 14:41:59.488 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:41:59.489 T:139696310818560   DEBUG: Thread FileCache start, auto delete: false
2019-03-07 14:41:59.489 T:139696310818560    INFO: CFileCache::Process - Source read didn't return any data! Hit eof(?)
2019-03-07 14:41:59.490 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:41:59.539 T:139696310818560   DEBUG: Previous line repeats 1 times.
2019-03-07 14:41:59.539 T:139696310818560   DEBUG: Thread FileCache 139696310818560 terminating
2019-03-07 14:42:00.059 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.064 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:00.064 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PMT: len 44
2019-03-07 14:42:00.064 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x1cb sec_num=0/0 version=10 tid=2
2019-03-07 14:42:00.064 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pcr_pid=0x193b
2019-03-07 14:42:00.064 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] Filter: pid=0x193b type=0
2019-03-07 14:42:00.064 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] stream=0 stream_type=1b pid=193b prog_reg_desc=
2019-03-07 14:42:00.064 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] tag: 0x09 len=4
2019-03-07 14:42:00.064 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] Filter: pid=0x193c type=0
2019-03-07 14:42:00.064 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] stream=1 stream_type=4 pid=193c prog_reg_desc=
2019-03-07 14:42:00.064 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] tag: 0x09 len=4
2019-03-07 14:42:00.064 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] tag: 0x0a len=4
2019-03-07 14:42:00.064 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] tuning done
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]: Input #0, mpegts, from 'pvr://channels/tv/All channels/pvr.vuplus_1.pvr':
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Duration: N/A, bitrate: N/A
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 4
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 5
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 401
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 402
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 403
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 405
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 406
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 409
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 410
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 459
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:     Stream #0:0[0x193b], 0, 1/90000: Video: h264 ([27][0][0][0] / 0x001B), none, 90k tbn
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:     Stream #0:1[0x193c](por), 0, 1/90000: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 462
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 520
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 521
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 523
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 524
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 1602
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 1609
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 1610
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 5030
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 5032
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 5033
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 5034
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 5035
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 5036
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 5037
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 5038
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 5040
2019-03-07 14:42:00.064 T:139696579516160    INFO: ffmpeg[7F0DA4FF9700]:   Program 5041
2019-03-07 14:42:00.064 T:139696579516160   DEBUG: CDVDDemuxFFmpeg::AddStream ID: 0
2019-03-07 14:42:00.064 T:139696579516160   DEBUG: CDVDDemuxFFmpeg::AddStream ID: 1
2019-03-07 14:42:00.064 T:139696579516160  NOTICE: Opening stream: 0 source: 256
2019-03-07 14:42:00.064 T:139696579516160 WARNING: OpenStream - Unsupported stream 0. Stream disabled.
2019-03-07 14:42:00.064 T:139696579516160  NOTICE: Opening stream: 1 source: 256
2019-03-07 14:42:00.064 T:139696579516160  NOTICE: Finding audio codec for: 86017
2019-03-07 14:42:00.065 T:139696579516160  NOTICE: CDVDAudioCodecFFmpeg::Open() Successful opened audio decoder mp3float
2019-03-07 14:42:00.065 T:139696579516160  NOTICE: Creating audio thread
2019-03-07 14:42:00.065 T:139696579516160   DEBUG: CVideoPlayer::SetCaching - caching state 2
2019-03-07 14:42:00.065 T:139696579516160   DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: CDVDClock::SetSpeedAdjust - adjusted:-0.050000
2019-03-07 14:42:00.066 T:139696861189888   DEBUG: OnAVChange: CApplication::OnAVChange
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] Skipping after seek
2019-03-07 14:42:00.066 T:139696310818560   DEBUG: Thread VideoPlayerAudio start, auto delete: false
2019-03-07 14:42:00.066 T:139696310818560  NOTICE: running thread: CVideoPlayerAudio::Process()
2019-03-07 14:42:00.066 T:139696310818560   DEBUG: CVideoPlayerAudio - CDVDMsg::GENERAL_PAUSE: 0
2019-03-07 14:42:00.066 T:139696310818560   DEBUG: CDVDAudio::Pause - pausing audio stream
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] Filter: pid=0x12 type=0
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x0 pid=0x10
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x4 pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0004
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x5 pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0005
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x191 pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0191
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x192 pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0192
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x193 pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0193
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x195 pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0195
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x196 pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0196
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x199 pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0199
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x19a pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x019a
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x1cb pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x01cb
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x1ce pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x01ce
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x208 pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0208
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x209 pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0209
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x20b pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x020b
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x20c pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x020c
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x642 pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0642
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x649 pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x0649
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x64a pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x064a
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13a6 pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13a6
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13a8 pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13a8
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13a9 pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13a9
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13aa pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13aa
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13ab pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13ab
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13ac pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13ac
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13ad pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13ad
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13ae pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13ae
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13b0 pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13b0
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x13b1 pid=0x331
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] new_program: id=0x13b1
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] Filter: pid=0x1010 type=0
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] stream=2 stream_type=0 pid=1010 prog_reg_desc=
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 stream_type=0 probing
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.066 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2500
2019-03-07 14:42:00.067 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: Probing mp3 score:1 size:11134
2019-03-07 14:42:00.067 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] Probe with size=11134, packets=1 detected mp3 with score=1
2019-03-07 14:42:00.067 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.067 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.067 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2499
2019-03-07 14:42:00.067 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.067 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2498
2019-03-07 14:42:00.067 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: Probing mp3 score:1 size:17823
2019-03-07 14:42:00.068 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] Probe with size=17823, packets=3 detected mp3 with score=1
2019-03-07 14:42:00.068 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.068 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2497
2019-03-07 14:42:00.068 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.068 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2496
2019-03-07 14:42:00.068 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.068 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2495
2019-03-07 14:42:00.068 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.068 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2494
2019-03-07 14:42:00.068 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.068 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] Filter: pid=0x1011 type=0
2019-03-07 14:42:00.068 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:00.068 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] stream=3 stream_type=0 pid=1011 prog_reg_desc=
2019-03-07 14:42:00.068 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 stream_type=0 probing
2019-03-07 14:42:00.068 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.068 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.068 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2493
2019-03-07 14:42:00.069 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2492
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2491
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2490
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2489
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2488
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2487
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2486
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PMT: len 44
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] sid=0x1cb sec_num=0/0 version=10 tid=2
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pcr_pid=0x193b
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] tag: 0x09 len=4
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] tag: 0x0a len=4
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 3 pp:2500
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: Probing mp3 score:25 size:3456
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] Probe with size=3456, packets=1 detected mp3 with score=25
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probed stream 3
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2485
2019-03-07 14:42:00.071 T:139697555953408   DEBUG: CAnnouncementManager - Announcement: OnAVChange from xbmc
2019-03-07 14:42:00.071 T:139697555953408   DEBUG: GOT ANNOUNCEMENT, type: 1, from xbmc, message OnAVChange
2019-03-07 14:42:00.073 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.073 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.073 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2484
2019-03-07 14:42:00.073 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.073 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2483
2019-03-07 14:42:00.073 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.073 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2482
2019-03-07 14:42:00.073 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.073 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2481
2019-03-07 14:42:00.074 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.074 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2480
2019-03-07 14:42:00.074 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.074 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2479
2019-03-07 14:42:00.074 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.074 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2478
2019-03-07 14:42:00.074 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.074 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:00.074 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:00.074 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.074 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2477
2019-03-07 14:42:00.079 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.079 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.079 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2476
2019-03-07 14:42:00.079 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.079 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2475
2019-03-07 14:42:00.079 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.080 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2474
2019-03-07 14:42:00.080 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.080 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2473
2019-03-07 14:42:00.080 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.080 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2472
2019-03-07 14:42:00.080 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.190 T:139696327866112   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:00.379 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.379 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:00.383 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] Filter: pid=0x14 type=0
2019-03-07 14:42:00.383 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.383 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2471
2019-03-07 14:42:00.383 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.384 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.384 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2470
2019-03-07 14:42:00.385 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.385 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2469
2019-03-07 14:42:00.387 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.387 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2468
2019-03-07 14:42:00.387 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.387 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2467
2019-03-07 14:42:00.387 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.387 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.387 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2466
2019-03-07 14:42:00.387 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.387 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2465
2019-03-07 14:42:00.387 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.387 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2464
2019-03-07 14:42:00.389 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.391 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:00.392 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.393 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.394 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probing stream 2 pp:2463
2019-03-07 14:42:00.397 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: Probing h264 score:51 size:264741
2019-03-07 14:42:00.402 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] Probe with size=264741, packets=38 detected h264 with score=51
2019-03-07 14:42:00.402 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] probed stream 2
2019-03-07 14:42:00.402 T:139696579516160   ERROR: ffmpeg[7F0DA4FF9700]: [NULL] SPS unavailable in decode_picture_timing
2019-03-07 14:42:00.402 T:139696579516160   ERROR: ffmpeg[7F0DA4FF9700]: [NULL] non-existing PPS 0 referenced
2019-03-07 14:42:00.402 T:139696579516160   DEBUG: CDVDDemuxFFmpeg::AddStream ID: 0
2019-03-07 14:42:00.402 T:139696579516160   DEBUG: CDVDDemuxFFmpeg::AddStream ID: 1
2019-03-07 14:42:00.402 T:139696579516160  NOTICE: Opening stream: 0 source: 256
2019-03-07 14:42:00.402 T:139696579516160 WARNING: OpenStream - Unsupported stream 0. Stream disabled.
2019-03-07 14:42:00.402 T:139696579516160  NOTICE: Opening stream: 1 source: 256
2019-03-07 14:42:00.402 T:139696579516160   DEBUG: CVideoPlayer::HandleMessages - player 1 reported state: 0
2019-03-07 14:42:00.403 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.403 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.403 T:139696579516160   DEBUG: Previous line repeats 4 times.
2019-03-07 14:42:00.403 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.403 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.541 T:139696130742016   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:00.811 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.811 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:00.813 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.816 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:00.816 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.817 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.819 T:139696579516160   DEBUG: Previous line repeats 5 times.
2019-03-07 14:42:00.819 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.822 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:00.822 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.824 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:00.824 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.824 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.824 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.827 T:139696579516160   DEBUG: Previous line repeats 5 times.
2019-03-07 14:42:00.827 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.830 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:00.830 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.832 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:00.832 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:00.832 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:00.833 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:00.833 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:00.833 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:01.041 T:139696130742016   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:01.258 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:01.267 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:01.268 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:01.269 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:01.269 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:01.269 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:01.269 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:01.270 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:01.270 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:01.270 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:01.276 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:01.276 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:01.279 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:01.279 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:01.285 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:01.291 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:01.291 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:01.291 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:01.291 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:01.292 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:01.297 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:01.297 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:01.297 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:01.653 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:01.656 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:01.656 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:01.658 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:01.658 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:01.659 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:01.659 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:01.660 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:01.660 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:01.662 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:01.663 T:139696579516160   DEBUG: Previous line repeats 4 times.
2019-03-07 14:42:01.663 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:01.665 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:01.665 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:01.670 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:01.671 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:01.671 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:01.672 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:01.672 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:01.672 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:01.674 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:01.674 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:01.676 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:01.676 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:01.676 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:01.680 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:01.680 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:01.680 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.060 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.061 T:139696579516160   DEBUG: Previous line repeats 4 times.
2019-03-07 14:42:02.061 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.064 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:02.064 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.064 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:02.065 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.065 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.065 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.067 T:139696579516160   DEBUG: Previous line repeats 5 times.
2019-03-07 14:42:02.067 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.070 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:02.070 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.071 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:02.071 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:02.071 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.071 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.071 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.074 T:139696579516160   DEBUG: Previous line repeats 4 times.
2019-03-07 14:42:02.074 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.078 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:02.078 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:02.079 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.485 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.487 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.488 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.488 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.493 T:139696579516160   DEBUG: Previous line repeats 6 times.
2019-03-07 14:42:02.494 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:02.494 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.496 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:02.496 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.497 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.497 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.502 T:139696579516160   DEBUG: Previous line repeats 4 times.
2019-03-07 14:42:02.502 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.502 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.502 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.503 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:02.504 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.505 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.505 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.506 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.511 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:02.511 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.511 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.513 T:139696579516160   DEBUG: Previous line repeats 4 times.
2019-03-07 14:42:02.513 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.513 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:02.937 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.937 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.939 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:02.939 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.939 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.940 T:139696579516160   DEBUG: Previous line repeats 5 times.
2019-03-07 14:42:02.940 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.941 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:02.942 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.948 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.948 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.948 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.950 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:02.950 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.950 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.955 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:02.955 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.955 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:02.956 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.957 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.958 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:02.958 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.958 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.964 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:02.964 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.965 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:02.966 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:02.966 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:02.966 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:03.381 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.386 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:03.386 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:03.387 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.388 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.388 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.393 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.394 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:03.394 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.395 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.396 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:03.396 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.396 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.396 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:03.397 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.397 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.400 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:03.400 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.400 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.402 T:139696579516160   DEBUG: Previous line repeats 4 times.
2019-03-07 14:42:03.402 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.403 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:03.403 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.403 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.404 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.408 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.408 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.832 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.833 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:03.833 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.833 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.834 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:03.834 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.835 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:03.836 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.836 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.838 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.838 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:03.838 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.839 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.841 T:139696579516160   DEBUG: Previous line repeats 4 times.
2019-03-07 14:42:03.841 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.841 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:03.848 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.848 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.849 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:03.849 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.849 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.850 T:139696579516160   DEBUG: Previous line repeats 4 times.
2019-03-07 14:42:03.850 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.851 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.852 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.856 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:03.856 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.856 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.857 T:139697555966592   DEBUG: ------ Window Deinit (Pointer.xml) ------
2019-03-07 14:42:03.857 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:03.858 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:03.858 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:03.858 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:04.045 T:139696130742016   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:04.254 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:04.256 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:04.257 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:04.258 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:04.266 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:04.266 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:04.267 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:04.267 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:04.268 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:04.268 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:04.268 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:04.271 T:139696579516160   DEBUG: Previous line repeats 5 times.
2019-03-07 14:42:04.271 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:04.272 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:04.272 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:04.272 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:04.275 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:04.275 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:04.275 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:04.276 T:139696579516160   DEBUG: Previous line repeats 4 times.
2019-03-07 14:42:04.276 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:04.276 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:04.609 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:04.672 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:04.672 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:04.672 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:04.674 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:04.675 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:04.675 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:04.675 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:04.682 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:04.682 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:04.683 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:04.683 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:04.684 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:04.684 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:04.685 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:04.685 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:04.685 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:04.686 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:04.686 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:04.691 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:04.691 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:04.692 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:04.692 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:04.692 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:04.693 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:04.694 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:04.694 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:04.694 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:04.696 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:04.696 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.072 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.073 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:05.073 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.073 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.074 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:05.075 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.075 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:05.075 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.075 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.077 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:05.077 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.081 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:05.081 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:05.082 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.086 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:05.086 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.086 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.087 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:05.088 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.088 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.089 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.090 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:05.090 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.090 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.091 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:05.091 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.454 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.454 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.454 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:05.455 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.456 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:05.456 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.456 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.458 T:139696579516160   DEBUG: Previous line repeats 4 times.
2019-03-07 14:42:05.458 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.463 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:05.463 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.463 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:05.464 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.464 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.466 T:139696579516160   DEBUG: Previous line repeats 4 times.
2019-03-07 14:42:05.466 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.466 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.468 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:05.468 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.470 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.471 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:05.471 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.472 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.472 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:05.472 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:05.472 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.473 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:05.473 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.473 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.857 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.858 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.860 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:05.860 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.860 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.863 T:139696579516160   DEBUG: Previous line repeats 4 times.
2019-03-07 14:42:05.863 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:05.863 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.863 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.866 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:05.866 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.867 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.868 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.868 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:05.868 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.869 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.869 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:05.869 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:05.869 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:05.874 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:05.874 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:05.880 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:05.880 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:06.229 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.230 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.231 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.231 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.231 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.235 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:06.235 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.235 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.236 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:06.236 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:06.236 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.238 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.242 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.243 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.244 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:06.244 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.244 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.245 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:06.245 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.245 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:06.249 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.250 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.251 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.251 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.252 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:06.252 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.253 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.547 T:139696130742016   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:06.612 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:06.612 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.614 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.616 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:06.616 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.617 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.618 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:06.618 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.618 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.619 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:06.619 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.620 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:06.624 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.625 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.625 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.627 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:06.627 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.627 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.628 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:06.628 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.630 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.630 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.630 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:06.631 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.634 T:139696579516160   DEBUG: Previous line repeats 4 times.
2019-03-07 14:42:06.634 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.634 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.835 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:06.835 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.992 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:06.992 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:06.994 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:06.998 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:06.998 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:06.999 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.000 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.000 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:07.001 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.002 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:07.002 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.002 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.003 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:07.003 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.005 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.005 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.006 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:07.006 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.008 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.008 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.048 T:139696130742016   DEBUG: Previous line repeats 5 times.
2019-03-07 14:42:07.357 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.360 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:07.360 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.361 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.361 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.364 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:07.364 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.366 T:139696579516160   DEBUG: Previous line repeats 4 times.
2019-03-07 14:42:07.366 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.366 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.367 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.368 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.369 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.371 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.372 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:07.372 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:07.372 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.372 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.373 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.374 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:07.374 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.375 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.376 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.376 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.380 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:07.380 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.380 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.549 T:139696130742016   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:07.775 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.775 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:07.775 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.776 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.778 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.778 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.780 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.781 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:07.781 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.781 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.782 T:139696579516160   DEBUG: Previous line repeats 3 times.
2019-03-07 14:42:07.782 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:07.782 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.782 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.784 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.792 T:139696579516160   DEBUG: Previous line repeats 2 times.
2019-03-07 14:42:07.792 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1011 pes_code=0x1c0
2019-03-07 14:42:07.793 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.793 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:07.798 T:139696579516160   DEBUG: Previous line repeats 1 times.
2019-03-07 14:42:07.798 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] PAT:
2019-03-07 14:42:07.798 T:139696579516160   DEBUG: ffmpeg[7F0DA4FF9700]: [mpegts] pid=1010 pes_code=0x1e0
2019-03-07 14:42:08.049 T:139696130742016   DEBUG: Previous line repeats 3 times.
(...)

Your Environment

Used Operating system:

  • Linux

  • Operating system version/name:

  • Kodi version: 18.1

  • PVR Enigma2 Client version: 3.19.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant