VERO4K+ unable to play x.h265 HDR 4K and crashes [SADFACE] 2 to 3 min in to the Movie [Isolated to KODI 18]

@darwindesign Thanks heap for taking your time to help me. This issue is not isolated to passthrough enable / disable.

Given initial evidence showed files are playing with NO AUDIO with passthrough mode enabled, I invested on DOLBY Atmos soundbar and and got one.

Unfortunately now the issue 100% reproducible even with passthrough mode enabled. It’s a 2.1 soundbar and I have enabled the settings correctly and as below.

I also know Dolby sound received by the soundbar as it’s DARK BLUE light turning on as per soundbar specification.

I have connected the VERO 4K to soundbar directly via HDMI and then Passthrough to TV for the VIDEO.

Number of channels: 2.1
Allow passthrough: enabled
Dolby Digital capable receiver: enabled
Enable Dolby Digital transcoding: enabled
DTS capable receiver: disabled

@bmillham Thanks for this valuable tip. I will disable this also. As per your feedback I have already disabled the “Watchdog” service and now I will disable this and will post the logs If the issue happen again.

Let’s get this solved.

I assumed you were setup differently. The correct settings should actually be…

Number of channels: 7.1
Allow passthrough: enabled
Dolby Digital capable receiver: enabled
Enable Dolby Digital transcoding: disabled
DTS capable receiver: disabled

1 Like

!!!eureka

I did a below change and let a movie played for 3 hours. To my suprise not crash while playing a movie.

I am not that technical and this means an issue related to KODI handling of NFS mounts and now we got a clear evidence. What is next @sam_nazarko? How to fix this…

I have mount the 4K movies as a local HDD via

osmc@MBRVero4Kplus : ~ $ sudo nano /etc/fstab
192.168.1.117:/volume1/4K_Content /home/osmc/4K_Direct nfs noauto,x-systemd.automount 0 0

Then I have added the mount as a local drive and then played the file without scanning to Movies Lib.

Movie used have issue now playing fine with this workaround. Given I have 4x Vero boxes, 1 MAC at home on KODI I need to use central DB and scanning and having local copies not helpful at least this will allow me to play movies until a solid fix available.

I will try this as well. Thanks for this…

P.S: Attached is my sound settings… Can you kindly confirm these are correct. My soundbar details as below as well.

Soundbar Specs: [https://www.soundcore.com/products/variant/infini-pro/A3372111]

SPECS

Audio
  • Drivers: 2 × 3” Subwoofers, 2 × 2.5” Mid-Range Drivers, 2 × 1” Tweeters, 2 × Bass Ports
  • Output: 120W
  • Decoder: Dolby Digital, Dolby TrueHD, Dolby Digital Plus, Dolby atmos
  • EQ Mode: Movie, Music, Voice
Dimensions & Weight
  • Length: 36.6 inches / 930 mm
  • Width: 4.7 inches / 120 mm
  • Height: 2.4” /61mm
  • Weight: 116 oz / 3.3kg
Connectivity
  • Bluetooth Version 5.0
  • Supports A2DP1.2, AVRCP1.5, and SBC decoding
  • Range: 10 m / 33 ft
  • HDMI Arc
  • HDMI In
  • Digital Optical input
  • AUX in (3.5 mm)
  • Bluetooth Version 5.0
  • Input: USB (For service only)

Vero4K+ Audio Settings:

Some NAS seem to not work to work as well with current versions of Kodi than they had in the past and system mounts can cure this problem. You do not have to give up your MySQL or redo your library fortunately. What you need to do on all your systems is to setup fstab and do a pathsub in your advancedsettings.xml file.

  <substitute>
    <from>nfs://192.168.1.117/volume1/4K_Content/</from>
    <to>/home/osmc/4K_Direct</to>
  </substitute>

or something of that general effect for ALL of your sources that you setup fstab for
(note that I have never done this myself but this is the way I understand it to work)

1 Like

The manual for that is fairly sparse and does not actually answer the question I would need to be sure.

The basic rundown is that the channel setting is the number of LPCM channels your input device (soundbar) supports. This setting is NOT how many speakers you have. If you set it to 7.1 and play a DTS soundtrack and get sound then your soundbar supports 8 channel LPCM and that is the setting you should use with DD transcoding off. If you get no sound when you play a DTS soundtrack with those settings then you would want the 2 channel setting I outlined above. Since the soundbar is Atmos I would expect it support what any Atmos AVR supports, but this would require testing as the manual does not list it one way or another.

@darwindesign

When you free can you kindly review below Kodi log and confirm my path substitute working? Your suggestion is much appreciated. Once this working I will replicate across other VERO boxes.

https://paste.osmc.tv/oqipesumas.vhdl

My new advancedsettings.xml as below and updated all tags accordingly your feedback and validate in KODI Wiki for TAG validity

<?xml version="1.0" encoding="utf-8"?>
<!-- General Settings -->
<advancedsettings>
    
    <!-- MySQL Library -->
    <videodatabase>
        <name>MyVideos</name>
        <host>192.168.1.117</host>
        <user>xbmc</user>
        <pass>****</pass>
        <type>mysql</type>
        <port>3307</port>
    </videodatabase>
    <musicdatabase>
        <name>MyMusic</name>
        <host>192.168.1.117</host>
        <user>xbmc</user>
        <pass>****</pass>
        <type>mysql</type>
        <port>3307</port>
    </musicdatabase>
    

   <pathsubstitution>
  	<substitute>
  	  	<from>nfs://192.168.1.117/volume1/4K_Content/4K Movies/</from>
   	  	<to>/home/osmc/4K_Direct/4K Movies/</to>
  	</substitute>
 	<substitute>
   		 <from>nfs://192.168.1.117/volume1/4K_Content/4K Tv Shows/</from>
    		<to>/home/osmc/4K_Direct/4K Tv Shows/</to>
  	</substitute>
	<substitute>
  		<from>nfs://192.168.1.117/volume1/4K_Content/Test Clips/</from>
    		<to>/home/osmc/4K_Direct/Test Clips/</to>
  	</substitute>
   </pathsubstitution>
   

  <cache>
    <buffermode>1</buffermode>
    <memorysize>160428800</memorysize>
    <readfactor>4</readfactor>
  </cache>

    
    <!-- Video Library Tweaks -->
    <videolibrary>
        <importwatchedstate>true</importwatchedstate>
        <recentlyaddeditems>25</recentlyaddeditems>
        <dateadded>1</dateadded>
    </videolibrary> 
    
    <videoscanner>
        <ignoreerrors>true</ignoreerrors>
    </videoscanner>
    

 <loglevel hide="true">2</loglevel>
	
</advancedsettings>

make sure you put the actual password in for the MySQL db.

test the path subs on the first box before copying to the other boxes. Make sure you have added fstab entries and they are working for all of the paths you are subbing. You will have to edit the fstab on all the boxes as well. Make sure you are accounting for the spaces in fstab (\040). I don’t know if the spaces are an issue with the path sub or not but since the wiki doesn’t mention it I assume not. Testing will answer that question.

<ignoreerrors>Why? If this is an issue get better at naming your files.

<loglevel>Remove this. When you need to do this add it as a log level ‘1’ and then remove it after your done. This setting is a lot more complicated than the wiki would lead you to believe. When you want a loglevel 2 you get that from turning it on in the GUI.

Suggest to remove the cache setting, the default is already optimized

@darwindesign I have marked this post as resolved via KODI “pathsubstitution”. Even this is not the proper solution I am happy as I can play all files now. Hopefully KODI will fix this in later releases.

For other users who experiencing the same issue below are the steps it got resolved for me.

Step 1: Create local folders according to your NAS folders

E.G: I have created below in my Vero Box → Home

4K_Direct 
Movie_Belly
TVShows_Belly

Step 2: Modify your fstab to mount the shared NAS folders to created folders in above step

osmc@MBRVero4Kplus : ~ $ sudo nano /etc/fstab

Step 3: Add the fstab entries
E.G: Below is my fstab and make sure you change it to match yours

192.168.1.117:/volume1/4K_Content /home/osmc/4K_Direct nfs noauto,x-systemd.automount  0  0
192.168.1.117:/volume1/Movie_Belly /home/osmc/Movie_Belly nfs noauto,x-systemd.automount  0  0
192.168.1.117:/volume1/TVShows_Belly /home/osmc/TVShows_Belly nfs noauto,x-systemd.automount  0  0

**Step 4: Add the pathsubstitution entries to your "advancedsettings.xml **

E.G: Below is my “advancedsettings.xml” and make sure you change it to match yours

 <pathsubstitution>
  	<substitute>
  	  	<from>nfs://192.168.1.117/volume1/4K_Content/4K Movies/</from>
   	  	<to>/home/osmc/4K_Direct/4K Movies/</to>
  	</substitute>
 	<substitute>
   		 <from>nfs://192.168.1.117/volume1/4K_Content/4K Tv Shows/</from>
    		<to>/home/osmc/4K_Direct/4K Tv Shows/</to>
  	</substitute>
	<substitute>
  		<from>nfs://192.168.1.117/volume1/4K_Content/Test Clips/</from>
    		<to>/home/osmc/4K_Direct/Test Clips/</to>
  	</substitute>

	<substitute>
  		<from>nfs://192.168.1.117/volume1/Movie_Belly/</from>
    		<to>/home/osmc/Movie_Belly/</to>
  	</substitute>
	<substitute>
  		<from>nfs://192.168.1.117/volume1/TVShows_Belly/</from>
    		<to>/home/osmc/TVShows_Belly/</to>
  	</substitute>
   </pathsubstitution>

**Step 5: Reboot the box **

I’m not sure what you mean by this. This is a completely valid way to run your library. You could completely redo your library so your database points to the new location instead of the old one but you would gain nothing from this. If your referring simply to system mounts working better than Kodi network paths then I would say you would have to bring that up with team Kodi. If there was something to be done in OSMC to fix whatever issue is going on with certain peoples setups that are proving problematic then Sam and his team would have already done it.

It’s not really a Kodi issue. When you mount a share using fstab, it’s doing it as part of the kernel so will perform better and use less resources. When you mount via Kodi then the mount is running in userland and will require more system resources. The issue is just that the NFS and SMB userland libraries on linux are not as optimized as the kernel based libraries.

@sniferx1 if you are really brave, you could modify the MySQL database so you don’t have to use the path substitution. That would require that all your systems use fstab mounts of course, and if you have other windows based system then you would have to use path substitution on them. And you would be in danger of completely hosing your database if you don’t run the SQL commands correctly. I personally have done this a number of times when I moved content to different shares.

So, while fixing the database is not really difficult, it’s not something you should try unless you understand SQL commands and the risks if you make a mistake and how it may affect other systems using the same database.

Thanks @darwindesign, I thought not everyone willing to do what I did and they might expect NAS mounts works via Kodi UI and without the need to ssh and modify file systems.

To be fully transparent, I used to own a NAS from WD and which only supported SMB and once the VERO4K was out I was told that SMB shares are not sufficient to play 4K files and go with a NAS that support NFS mounts.

After lot of research I went with Synology DS1819+ 8 Bay NAS With 16GB Ram and spend a fortune with disk drives. It’s kind of disappointing that I wasn’t told about this problem with NFS as well.

Then when this issue start happening Issue didn’t happen initially when passthrough mode enabled for Audio and then I spend another fortune getting a soundbar. Again I was not aware of this solution.

I am not criticising anyone and if this was told upfront as the solution I could have saved money and time.

In any case now the issue is resolved across all of my Vero boxes and I am happy…

I really appreciate your help and time taken to providing the proper solution and I am sure as a result of this three lot of Vero users will learn about this performance problem with NFS and will apply the same solution as you proposed.

@bmillham Thanks again for taking time for a detail response.

You were correct about my SQL skills and I am
Not a skilled SQL developer. As a humble user of Vero and OSMC solution provided resolved my issue and thanks for the extra suggestions.

However I ask a simple question from Kodi and OSMC team…

If known issues are present with NFS shares and KODI its a responsibility of KODI and OSMC teams to educate the users and provide this solution to them.

Thanks again…

If there was a problem such that ‘this kind of networking’ or ‘that piece of hardware’ was problematic then sure, a fix or a workaround would be put out there. The problems often are much more complicated or nuanced than what it may seem to an observer. We have seen some people with NFS and NAS report issues. At the same time there are a lot of other users using similar setups not reporting problems. Posts like what you made are great for people who are able to diagnose that they have the same problem. To put that out there as some kind of universal cure all would be irresponsible as it is a specific workaround to a specific problem.

I understand the frustration in the general sense. People buy a toaster and they expect to push a button and darker versions of what they put in come back out. I’ve seen plenty of people post about “I can play x in this device and never had a problem”. If these people never had a problem it is because the device was limited in what you could do with it. The fact is that OSMC is not a limited operating system (like LibreElec), nor closed (like Android and iOS), and Kodi is probably the most open and flexible media player available. Being able to play files from almost anywhere to a player that can be customized to an extreme extent is impossible to do trouble free for everyone. People who want a toaster should buy a bluray player or a smart TV with a paid subscription. I have recommended this route to more people in my personal life than I have the Kodi route. For the rest of us that can get through whatever hoops we have to jump through to get to our ideal media player, I think OSMC is the best way to go. I have gone through the crazy multiuser modded xbox route and I have gone through the silent PC route. Trust me that real pain was in the past, not in the present.

2 Likes

Thanks @darwindesign. Understand your detailed feedback.

On a side note, post the new changes, I can still see below errors in the kodi debug log. Highlighting this to improve this issue or fix in a future release. This is a 1080p file and not a 4K movie.

Full log at below location:
https://paste.osmc.tv/icanamujim.vhdl

2019-09-17 16:25:56.531 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-11885.105600, adjusted:-11885.105600
2019-09-17 16:28:38.327 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:22692.603139, adjusted:41708.333333
2019-09-17 16:28:40.377 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-31016.261415, adjusted:-41708.333333
2019-09-17 16:28:43.446 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:20562.915168, adjusted:41708.333333
2019-09-17 16:28:51.648 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-31398.149814, adjusted:-41708.333333
2019-09-17 16:29:09.048 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:22917.039836, adjusted:41708.333333
2019-09-17 16:29:11.102 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-31648.898982, adjusted:-41708.333333
2019-09-17 16:29:17.242 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:23194.088377, adjusted:41708.333333
2019-09-17 16:29:19.287 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-28770.320659, adjusted:-41708.333333
2019-09-17 16:29:36.698 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:24129.373168, adjusted:41708.333333
2019-09-17 16:29:38.751 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-27752.824264, adjusted:-41708.333333
2019-09-17 16:29:43.867 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:23248.784250, adjusted:41708.333333
2019-09-17 16:29:48.984 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-27217.131454, adjusted:-41708.333333
2019-09-17 16:29:58.200 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:28098.062577, adjusted:41708.333333
2019-09-17 16:32:42.045 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-28164.677767, adjusted:-41708.333333
2019-09-17 16:32:51.261 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:22393.385300, adjusted:41708.333333
2019-09-17 16:33:00.484 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-27401.317779, adjusted:-41708.333333
2019-09-17 16:33:10.720 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:26773.600725, adjusted:41708.333333
2019-09-17 16:33:18.909 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-33526.732124, adjusted:-41708.333333
2019-09-17 16:33:24.029 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:22166.426908, adjusted:41708.333333
2019-09-17 16:33:43.486 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-29773.329956, adjusted:-41708.333333
2019-09-17 16:33:59.879 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:24681.423892, adjusted:41708.333333
2019-09-17 16:34:02.949 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-28283.492778, adjusted:-41708.333333
2019-09-17 16:34:04.993 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:20553.802683, adjusted:41708.333333
2019-09-17 16:36:43.717 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-28442.860236, adjusted:-41708.333333
2019-09-17 16:36:45.766 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:33857.326704, adjusted:41708.333333
2019-09-17 16:36:51.914 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-27836.343906, adjusted:-41708.333333
2019-09-17 16:36:59.077 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:22527.331824, adjusted:41708.333333
2019-09-17 16:37:02.150 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-39127.410719, adjusted:-41708.333333
2019-09-17 16:37:13.411 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:21709.983309, adjusted:41708.333333
2019-09-17 16:37:18.532 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-38623.311576, adjusted:-41708.333333
2019-09-17 16:37:21.603 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:24152.493162, adjusted:41708.333333
2019-09-17 16:37:31.844 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-35740.975802, adjusted:-41708.333333
2019-09-17 16:37:34.924 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:24319.186447, adjusted:41708.333333
2019-09-17 16:37:40.043 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-33694.174518, adjusted:-41708.333333
2019-09-17 16:37:51.304 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:27978.426935, adjusted:41708.333333
2019-09-17 16:37:59.493 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-31054.542595, adjusted:-41708.333333
2019-09-17 16:38:02.564 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:26495.070526, adjusted:41708.333333
2019-09-17 16:38:10.759 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-30623.936514, adjusted:-41708.333333
2019-09-17 16:38:18.949 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:24491.095236, adjusted:41708.333333
2019-09-17 16:38:22.025 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-27636.736030, adjusted:-41708.333333
2019-09-17 16:38:32.261 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:27490.825247, adjusted:41708.333333
2019-09-17 16:40:48.480 T:4023382752   DEBUG: ActiveAE::SyncStream - average error of 93.038195, start adjusting
2019-09-17 16:40:48.523 T:4023382752   DEBUG: ActiveAE::SyncStream - average error 9.038195 below threshold of 30.000000
2019-09-17 16:40:53.573 T:4023382752   DEBUG: ActiveAE::SyncStream - average error of 100.890197, start adjusting
2019-09-17 16:40:53.617 T:4023382752   DEBUG: ActiveAE::SyncStream - average error 16.890197 below threshold of 30.000000
2019-09-17 16:40:57.397 T:4023382752   DEBUG: ActiveAE::SyncStream - average error of 72.703010, start adjusting
2019-09-17 16:40:57.440 T:4023382752   DEBUG: ActiveAE::SyncStream - average error 0.703010 below threshold of 30.000000
2019-09-17 16:40:58.249 T:4023382752   DEBUG: ActiveAE::SyncStream - average error of 79.151344, start adjusting
2019-09-17 16:40:58.292 T:4023382752   DEBUG: ActiveAE::SyncStream - average error 0.151344 below threshold of 30.000000
2019-09-17 16:40:59.317 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-30287.641490, adjusted:-41708.333333
2019-09-17 16:41:00.042 T:4023382752   DEBUG: ActiveAE::SyncStream - average error of 48.090671, start adjusting
2019-09-17 16:41:00.042 T:4023382752   DEBUG: ActiveAE::SyncStream - average error 6.090671 below threshold of 30.000000
2019-09-17 16:41:01.203 T:4023382752   DEBUG: ActiveAE::SyncStream - average error of 63.506592, start adjusting
2019-09-17 16:41:01.203 T:4023382752   DEBUG: ActiveAE::SyncStream - average error 21.506592 below threshold of 30.000000
2019-09-17 16:41:02.228 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:31807.081281, adjusted:41708.333333
2019-09-17 16:41:03.550 T:4023382752   DEBUG: ActiveAE::SyncStream - average error of 85.682228, start adjusting
2019-09-17 16:41:03.593 T:4023382752   DEBUG: ActiveAE::SyncStream - average error 1.682228 below threshold of 30.000000
2019-09-17 16:41:06.667 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-29193.542085, adjusted:-41708.333333
2019-09-17 16:41:07.179 T:4023382752   DEBUG: ActiveAE::SyncStream - average error of 88.187825, start adjusting
2019-09-17 16:41:07.222 T:4023382752   DEBUG: ActiveAE::SyncStream - average error 4.187825 below threshold of 30.000000
2019-09-17 16:41:08.248 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-39304.645877, adjusted:-41708.333333
2019-09-17 16:41:13.368 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:22174.381407, adjusted:41708.333333
2019-09-17 16:41:19.512 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-34074.467661, adjusted:-41708.333333
2019-09-17 16:41:27.705 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:24320.486311, adjusted:41708.333333
2019-09-17 16:41:29.752 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-27414.053015, adjusted:-41708.333333
2019-09-17 16:41:35.896 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:27323.252517, adjusted:41708.333333
2019-09-17 16:41:38.969 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-33683.403058, adjusted:-41708.333333
2019-09-17 16:41:41.019 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:21679.755583, adjusted:41708.333333
2019-09-17 16:41:47.161 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-32331.131926, adjusted:-41708.333333
2019-09-17 16:41:50.236 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:27015.348342, adjusted:41708.333333
2019-09-17 16:41:52.281 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-28042.136182, adjusted:-41708.333333
2019-09-17 16:41:55.353 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:21463.893039, adjusted:41708.333333
2019-09-17 16:41:58.428 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-31725.752749, adjusted:-41708.333333
2019-09-17 16:42:00.476 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:27792.074366, adjusted:41708.333333
2019-09-17 16:42:06.617 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-28737.226682, adjusted:-41708.333333
2019-09-17 16:42:08.665 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:28001.407264, adjusted:41708.333333
2019-09-17 16:42:16.857 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-27206.523324, adjusted:-41708.333333
2019-09-17 16:42:23.001 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:28339.462794, adjusted:41708.333333
2019-09-17 16:42:55.774 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-30746.863864, adjusted:-41708.333333
2019-09-17 16:42:57.818 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:28737.370582, adjusted:41708.333333
2019-09-17 16:43:04.990 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-27108.015912, adjusted:-41708.333333
2019-09-17 16:43:07.034 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:23234.617560, adjusted:41708.333333
2019-09-17 16:43:41.852 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-33554.333921, adjusted:-41708.333333
2019-09-17 16:45:07.869 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:21158.505455, adjusted:41708.333333
2019-09-17 16:45:09.926 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-31421.716958, adjusted:-41708.333333
2019-09-17 16:45:19.134 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:23997.695285, adjusted:41708.333333
2019-09-17 16:45:27.326 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-38110.597315, adjusted:-41708.333333
2019-09-17 16:45:49.862 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:22547.605227, adjusted:41708.333333
2019-09-17 16:45:51.903 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-35425.614799, adjusted:-41708.333333
2019-09-17 16:46:00.103 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:30316.965829, adjusted:41708.333333
2019-09-17 16:46:05.218 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-28682.815476, adjusted:-41708.333333
2019-09-17 16:46:11.366 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:31115.033026, adjusted:41708.333333
2019-09-17 16:46:14.431 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-30024.673089, adjusted:-41708.333333
2019-09-17 16:46:16.482 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:27088.990462, adjusted:41708.333333
2019-09-17 16:46:19.551 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-29249.795875, adjusted:-41708.333333
2019-09-17 16:46:22.631 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:23840.052996, adjusted:41708.333333
2019-09-17 16:46:27.743 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-28362.887968, adjusted:-41708.333333
2019-09-17 16:46:29.792 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:20651.366643, adjusted:41708.333333
2019-09-17 16:46:32.863 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-27918.126846, adjusted:-41708.333333
2019-09-17 16:47:03.594 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:27174.416317, adjusted:41708.333333
2019-09-17 16:47:09.729 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-27454.942783, adjusted:-41708.333333
2019-09-17 16:47:19.971 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:25159.761214, adjusted:41708.333333
2019-09-17 16:47:30.209 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-29496.643990, adjusted:-41708.333333
2019-09-17 16:47:33.282 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:20863.151591, adjusted:41708.333333
2019-09-17 16:47:42.497 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-30594.427950, adjusted:-41708.333333
2019-09-17 16:47:48.645 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:20270.642595, adjusted:41708.333333
2019-09-17 16:47:59.913 T:3304084192   DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-30467.056947, adjusted:-41708.333333

The optimistic side of me just wants to paraphrase an Inigo Montoja quote from an old 80’s movie. The less optimistic side of me is wondering if i’m being trolled.

1 Like