lulzsun / RePlays

Open-source game recording management software
GNU General Public License v3.0
128 stars 16 forks source link

Issue with invalid or corrupt video metadata files #142

Closed AnthonyRubiano closed 10 months ago

AnthonyRubiano commented 10 months ago

There is an issue that prevents the application from launching. Even after attempting to reinstall, the application will not run anymore on my system. This is on Windows 10.

The application ran smoothly for a few weeks and recorded plenty of sessions and clips. One day the below error popped up and it never successfully launched again.

Initial Error:

************** Exception Text **************
System.Text.Json.JsonReaderException: The input does not contain any JSON tokens. Expected the input to start with a valid JSON token, when isFinalBlock is true. LineNumber: 0 | BytePositionInLine: 0.
   at System.Text.Json.ThrowHelper.ThrowJsonReaderException(Utf8JsonReader& json, ExceptionResource resource, Byte nextByte, ReadOnlySpan`1 bytes)
   at System.Text.Json.Utf8JsonReader.Read()
   at System.Text.Json.JsonDocument.Parse(ReadOnlySpan`1 utf8JsonSpan, JsonReaderOptions readerOptions, MetadataDb& database, StackRowStack& stack)
   at System.Text.Json.JsonDocument.Parse(ReadOnlyMemory`1 utf8Json, JsonReaderOptions readerOptions, Byte[] extraRentedArrayPoolBytes, PooledByteBufferWriter extraPooledByteBufferWriter)
   at System.Text.Json.JsonDocument.Parse(ReadOnlyMemory`1 json, JsonDocumentOptions options)
   at System.Text.Json.JsonDocument.Parse(String json, JsonDocumentOptions options)
   at RePlays.Services.DetectionService.DownloadDetections(String dlPath, String file) in D:\a\RePlays\RePlays\Classes\Services\DetectionService.cs:line 279
   at RePlays.Services.DetectionService.LoadDetections() in D:\a\RePlays\RePlays\Classes\Services\DetectionService.cs:line 231
   at RePlays.Services.DetectionService.Start() in D:\a\RePlays\RePlays\Classes\Services\DetectionService.cs:line 43
   at RePlays.Services.RecordingService.Start(Type type) in D:\a\RePlays\RePlays\Classes\Services\RecordingService.cs:line 36
   at System.Threading.Tasks.Task.<>c.<ThrowAsync>b__128_0(Object state)
   at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)
   at System.Reflection.MethodInvoker.Invoke(Object obj, IntPtr* args, BindingFlags invokeAttr)

After a reinstall:

************** Exception Text **************
System.Text.Json.JsonReaderException: '0x00' is an invalid start of a value. LineNumber: 0 | BytePositionInLine: 0.
   at System.Text.Json.ThrowHelper.ThrowJsonReaderException(Utf8JsonReader& json, ExceptionResource resource, Byte nextByte, ReadOnlySpan`1 bytes)
   at System.Text.Json.Utf8JsonReader.ConsumeValue(Byte marker)
   at System.Text.Json.Utf8JsonReader.ReadFirstToken(Byte first)
   at System.Text.Json.Utf8JsonReader.ReadSingleSegment()
   at System.Text.Json.Utf8JsonReader.Read()
   at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state)
Segergren commented 10 months ago

Which version are you using?

AnthonyRubiano commented 10 months ago

I use 1.2.1.

I tried to use the 1.2.42 pre-release and also had the same issue. I also tried downgrading to 1.2.0 with no luck either.

Segergren commented 10 months ago

Can you try to delete the gameDetections.json and nonGameDetections.json? It should be at the same place as the logs.

AnthonyRubiano commented 10 months ago

I deleted both files and tried to launch again. I got the '0x00' is an invalid start of a value. error.

Segergren commented 10 months ago

Okay, what's the filesize and can you send the first line in those files?

AnthonyRubiano commented 10 months ago

gameDetections.json = 4258kb nonGameDetections.json = 475kb

First line would just be a bracket, so I'll post the first entry in each.

gameDetections.json:

[
    {
        "primary_key": "d33295b466f545aa891f01b05a79e2da",
        "region": null,
        "title": "Roblox",
        "mapped": {
            "game_detection": [
                {
                    "primary_key": "4247dcdf56eb4cd2144570f18d52f316",
                    "gameexe": "RobloxPlayerBeta.exe",
                    "is_64bit": "y",
                    "launchexe": "RobloxPlayerLauncher.exe",
                    "launchflags": "-browser",
                    "regkey": "HKEY_CURRENT_USER/Software/Microsoft/Windows/CurrentVersion/Uninstall/{373B1718-8CC5-4567-8EE2-9033AD08A680}/InstallLocation",
                    "longname": "Roblox"
                },
                {
                    "primary_key": "84ac68ea6245b2f8c815e35cc6476ef4",
                    "gameexe": "ROBLOXCORPORATION*/Win10Universal.exe",
                    "longname": "Roblox - Windows Store"
                }
            ]
        }
    },

nonGameDetections.json:

[
    {
        "nongame_id": "38ff03203e6f40a2073968a45d38e9f8",
        "title": "Search Host",
        "detections": [
            {
                "id": "371524a1b5ba2d6946d9655378bacaf7",
                "detect_exe": "SearchHost.exe",
                "nongame_type": "blacklist",
                "title": "SearchHost.exe"
            }
        ]
    },
Segergren commented 10 months ago

That looks correct... Now, can you send me the full logs? It should include some error-messages :)

AnthonyRubiano commented 10 months ago
Log file ``` [8/15/2023 4:45:06 PM][Logger.cs(38)]: Failed to purge logs file, reason: Could not find file 'C:\Users\rubi\AppData\Local\RePlays\cfg\logs.txt'. [8/15/2023 4:45:06 PM][Program.cs(52)]: First launch [8/15/2023 4:45:07 PM][SettingsService.cs(48)]: C:\Users\rubi\AppData\Local\RePlays\app-1.2.1\..\cfg\userSettings.json did not exist, using default values [8/15/2023 4:45:07 PM][SettingsService.cs(65)]: Saved userSettings.json [8/15/2023 4:45:07 PM][StorageService.cs(16)]: VideoSaveDir 'C:/Users/rubi/Videos/Plays' size is 237.02000126522034 gbs [8/15/2023 4:45:07 PM][StorageService.cs(19)]: Automatically managing space if exceeds 90% of folder's disk. Currently at 69.68851286152407% [8/15/2023 4:45:07 PM][SettingsService.cs(65)]: Saved userSettings.json [8/15/2023 4:45:07 PM][SettingsService.cs(65)]: Saved userSettings.json [8/15/2023 4:45:07 PM][HotkeyService.cs(49)]: Loaded KeyboardHook... [8/15/2023 4:45:07 PM][RecordingService.cs(35)]: RecordingService starting... [8/15/2023 4:45:07 PM][RecordingService.cs(45)]: Creating a new ActiveRecorder [8/15/2023 4:45:07 PM][LibObsRecorder.cs(106)]: libobs version: 29.0.0 [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: error: CoInitializeEx failed: 0x80010106 [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: CPU Name: Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: CPU Speed: 3600MHz [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: Physical Cores: 8, Logical Cores: 16 [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: Physical Memory: 49093MB Total, 41380MB Free [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: Windows Version: 10.0 Build 19045 (release: 22H2; revision: 3324; 64-bit) [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: Running as administrator: false [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: Windows 10/11 Gaming Features: [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: Game DVR: On [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: Game Mode: Probably On (no reg key set) [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: Sec. Software Status: [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: : enabled (AV) [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: : enabled (FW) [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: Loading module: aja.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: warning: No AJA devices found, skipping loading AJA plugin [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: warning: Failed to initialize module 'aja.dll' [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: Loading module: coreaudio-encoder.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: warning: [CoreAudio encoder]: CoreAudio AAC encoder not installed on the system or couldn't be loaded [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: Loading module: decklink.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: warning: A DeckLink iterator could not be created. The DeckLink drivers may not be installed [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: warning: Failed to initialize module 'decklink.dll' [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: Loading module: enc-amf.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: [AMF] Loading... [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: error: [AMF] Unable to load 'amfrt64.dll', error code 126. [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: error: [AMF] AMF Test failed due to one or more errors. [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: warning: Failed to initialize module 'enc-amf.dll' [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: Loading module: image-source.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:07 PM][Helpers.cs(148)]: {0.0.1.00000000}.{251cb120-86fb-485e-be8b-4e23de63597c} | Microphone (Schiit Hel 2e) [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-ffmpeg.dll [8/15/2023 4:45:07 PM][Helpers.cs(148)]: {0.0.0.00000000}.{de2cac8b-d576-41f9-8ad6-1c2373a75e0b} | Speakers (Schiit Hel 2e) [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: NVENC supported [8/15/2023 4:45:07 PM][Helpers.cs(148)]: {0.0.0.00000000}.{51c8a4aa-ce3e-4852-a42f-a3556b02f89a} | LG ULTRAWIDE (NVIDIA High Definition Audio) [8/15/2023 4:45:07 PM][SettingsService.cs(65)]: Saved userSettings.json [8/15/2023 4:45:07 PM][frmMain.cs(82)]: WebView2 Version: 115.0.1901.203 [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: amf_load: No AMF library [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-filters.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: [noise suppress]: NVIDIA denoiser disabled, redistributable not found or could not be loaded. [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: error: Failed to get NVVideoEffects.dll version info size [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: [NVIDIA VIDEO FX]: FX disabled, redistributable not found or could not be loaded. [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-outputs.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-qsv11.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-text.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-transitions.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-x264.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: Loading module: rtmp-services.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: Loading module: text-freetype2.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: Loading module: win-capture.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: gs_get_device_type: called while not in a graphics context [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: Loading module: win-dshow.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: Loading module: win-mf.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: debug: Loading module: win-wasapi.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: Loaded Modules: [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: win-wasapi.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: win-mf.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: win-dshow.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: win-capture.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: text-freetype2.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: rtmp-services.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: obs-x264.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: obs-transitions.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: obs-text.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: obs-qsv11.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: obs-outputs.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: obs-filters.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: obs-ffmpeg.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: image-source.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: coreaudio-encoder.dll [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: audio settings reset: samples per sec: 44100 speakers: 2 max buffering: 1044 milliseconds buffering type: dynamically increasing [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: --------------------------------- [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: Initializing D3D11... [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: Available Video Adapters: [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: Adapter 0: NVIDIA GeForce RTX 4070 Ti [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: Dedicated VRAM: 4003463168 [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: Shared VRAM: 4264054784 [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: PCI ID: 10de:2782 [8/15/2023 4:45:07 PM][Messages.cs(145)]: BrowserReady ::: {} [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: Driver Version: 31.0.0.0 [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: output 0: name=LG ULTRAWIDE pos={0, 0} size={2560, 1080} attached=true refresh=59 space=RGB_FULL_G22_NONE_P709 sdr_white_nits=80 nit_range=[min=0.500000, max=270.000000, max_full_frame=270.000000] [8/15/2023 4:45:07 PM][SettingsService.cs(65)]: Saved userSettings.json [8/15/2023 4:45:07 PM][LibObsRecorder.cs(425)]: Encoder: Hardware (NVENC) [8/15/2023 4:45:07 PM][LibObsRecorder.cs(427)]: Rate Control options: VBR,CBR,CQP,Lossless [8/15/2023 4:45:07 PM][LibObsRecorder.cs(70)]: info: Loading up D3D11 on adapter NVIDIA GeForce RTX 4070 Ti (0) [8/15/2023 4:45:07 PM][SettingsService.cs(65)]: Saved userSettings.json [8/15/2023 4:45:07 PM][Updater.cs(32)]: Found no updates higher than current version 1.2.1 [8/15/2023 4:45:08 PM][LibObsRecorder.cs(70)]: info: D3D11 loaded successfully, feature level used: b000 [8/15/2023 4:45:08 PM][LibObsRecorder.cs(70)]: info: DXGI increase maximum frame latency success [8/15/2023 4:45:08 PM][Messages.cs(145)]: Initialize ::: {} [8/15/2023 4:45:08 PM][SettingsService.cs(39)]: Loaded userSettings.json [8/15/2023 4:45:08 PM][Messages.cs(158)]: 0 Initialized List [8/15/2023 4:45:08 PM][Messages.cs(145)]: RetrieveVideos ::: {"game":"All Games","sortBy":"Latest"} [8/15/2023 4:45:08 PM][Helpers.cs(205)]: Found '95' video files in C:/Users/rubi/Videos/Plays [8/15/2023 4:45:08 PM][DetectionService.cs(273)]: Process [14804][get-graphics-offsets64.exe] isn't in the game detection list, checking if it might be a game [8/15/2023 4:45:09 PM][LibObsRecorder.cs(70)]: info: --------------------------------- [8/15/2023 4:45:09 PM][LibObsRecorder.cs(70)]: info: video settings reset: base resolution: 2560x1080 output resolution: 2560x1080 downscale filter: Bilinear fps: 60/1 format: NV12 YUV mode: Rec. 709/Partial [8/15/2023 4:45:09 PM][LibObsRecorder.cs(70)]: info: NV12 texture support enabled [8/15/2023 4:45:09 PM][LibObsRecorder.cs(70)]: info: P010 texture support not available [8/15/2023 4:45:09 PM][LibObsRecorder.cs(127)]: Successfully started LibObs! [8/15/2023 4:45:13 PM][DetectionService.cs(277)]: PROCESS GPU USAGE [14804]: 0 [8/15/2023 4:45:14 PM][DetectionService.cs(228)]: Failed to get process: [10772] full path. Error: [Access is denied. [8/15/2023 4:45:14 PM][DetectionService.cs(228)]: Failed to get process: [16864] full path. Error: [Access is denied. [8/15/2023 4:45:14 PM][DetectionService.cs(228)]: Failed to get process: [14408] full path. Error: [Access is denied. [8/15/2023 4:45:14 PM][DetectionService.cs(228)]: Failed to get process: [4636] full path. Error: [Access is denied. [8/15/2023 4:45:14 PM][DetectionService.cs(228)]: Failed to get process: [7084] full path. Error: [Access is denied. [8/15/2023 4:45:27 PM][SettingsService.cs(39)]: Loaded userSettings.json [8/15/2023 4:45:27 PM][SettingsService.cs(65)]: Saved userSettings.json [8/15/2023 4:45:27 PM][StorageService.cs(16)]: VideoSaveDir 'C:/Users/rubi/Videos/Plays' size is 237.02000126522034 gbs [8/15/2023 4:45:27 PM][StorageService.cs(19)]: Automatically managing space if exceeds 90% of folder's disk. Currently at 69.67701461663994% [8/15/2023 4:45:27 PM][HotkeyService.cs(49)]: Loaded KeyboardHook... [8/15/2023 4:45:27 PM][RecordingService.cs(35)]: RecordingService starting... [8/15/2023 4:45:27 PM][RecordingService.cs(45)]: Creating a new ActiveRecorder [8/15/2023 4:45:27 PM][LibObsRecorder.cs(106)]: libobs version: 29.0.0 [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: error: CoInitializeEx failed: 0x80010106 [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: info: CPU Name: Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: info: CPU Speed: 3600MHz [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: info: Physical Cores: 8, Logical Cores: 16 [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: info: Physical Memory: 49093MB Total, 41672MB Free [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: info: Windows Version: 10.0 Build 19045 (release: 22H2; revision: 3324; 64-bit) [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: info: Running as administrator: false [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: info: Windows 10/11 Gaming Features: [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: info: Game DVR: On [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: info: Game Mode: Probably On (no reg key set) [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: info: Sec. Software Status: [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: info: : enabled (AV) [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: info: : enabled (FW) [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: debug: Loading module: aja.dll [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: warning: No AJA devices found, skipping loading AJA plugin [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: warning: Failed to initialize module 'aja.dll' [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: debug: Loading module: coreaudio-encoder.dll [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: warning: [CoreAudio encoder]: CoreAudio AAC encoder not installed on the system or couldn't be loaded [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: debug: Loading module: decklink.dll [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: warning: A DeckLink iterator could not be created. The DeckLink drivers may not be installed [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: warning: Failed to initialize module 'decklink.dll' [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: debug: Loading module: enc-amf.dll [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: debug: [AMF] Loading... [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: error: [AMF] Unable to load 'amfrt64.dll', error code 126. [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: error: [AMF] AMF Test failed due to one or more errors. [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: warning: Failed to initialize module 'enc-amf.dll' [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: debug: Loading module: image-source.dll [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-ffmpeg.dll [8/15/2023 4:45:27 PM][LibObsRecorder.cs(70)]: info: NVENC supported [8/15/2023 4:45:27 PM][Helpers.cs(148)]: {0.0.1.00000000}.{251cb120-86fb-485e-be8b-4e23de63597c} | Microphone (Schiit Hel 2e) [8/15/2023 4:45:27 PM][Helpers.cs(148)]: {0.0.0.00000000}.{de2cac8b-d576-41f9-8ad6-1c2373a75e0b} | Speakers (Schiit Hel 2e) [8/15/2023 4:45:27 PM][Helpers.cs(148)]: {0.0.0.00000000}.{51c8a4aa-ce3e-4852-a42f-a3556b02f89a} | LG ULTRAWIDE (NVIDIA High Definition Audio) [8/15/2023 4:45:27 PM][SettingsService.cs(65)]: Saved userSettings.json [8/15/2023 4:45:28 PM][frmMain.cs(82)]: WebView2 Version: 115.0.1901.203 [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: amf_load: No AMF library [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-filters.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: [noise suppress]: NVIDIA denoiser disabled, redistributable not found or could not be loaded. [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: error: Failed to get NVVideoEffects.dll version info size [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: [NVIDIA VIDEO FX]: FX disabled, redistributable not found or could not be loaded. [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-outputs.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-qsv11.dll [8/15/2023 4:45:28 PM][Updater.cs(32)]: Found no updates higher than current version 1.2.1 [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-text.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-transitions.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-x264.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: Loading module: rtmp-services.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: Loading module: text-freetype2.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: Loading module: win-capture.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: gs_get_device_type: called while not in a graphics context [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: Loading module: win-dshow.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: Loading module: win-mf.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: debug: Loading module: win-wasapi.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: Loaded Modules: [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: win-wasapi.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: win-mf.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: win-dshow.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: win-capture.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: text-freetype2.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: rtmp-services.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: obs-x264.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: obs-transitions.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: obs-text.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: obs-qsv11.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: obs-outputs.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: obs-filters.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: obs-ffmpeg.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: image-source.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: coreaudio-encoder.dll [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: --------------------------------- [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: audio settings reset: samples per sec: 44100 speakers: 2 max buffering: 1044 milliseconds buffering type: dynamically increasing [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: --------------------------------- [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: Initializing D3D11... [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: Available Video Adapters: [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: Adapter 0: NVIDIA GeForce RTX 4070 Ti [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: Dedicated VRAM: 4003463168 [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: Shared VRAM: 4264054784 [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: PCI ID: 10de:2782 [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: Driver Version: 31.0.0.0 [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: output 0: name=LG ULTRAWIDE pos={0, 0} size={2560, 1080} attached=true refresh=59 space=RGB_FULL_G22_NONE_P709 sdr_white_nits=80 nit_range=[min=0.500000, max=270.000000, max_full_frame=270.000000] [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: Loading up D3D11 on adapter NVIDIA GeForce RTX 4070 Ti (0) [8/15/2023 4:45:28 PM][Messages.cs(145)]: BrowserReady ::: {} [8/15/2023 4:45:28 PM][SettingsService.cs(65)]: Saved userSettings.json [8/15/2023 4:45:28 PM][LibObsRecorder.cs(425)]: Encoder: Hardware (NVENC) [8/15/2023 4:45:28 PM][LibObsRecorder.cs(427)]: Rate Control options: VBR,CBR,CQP,Lossless [8/15/2023 4:45:28 PM][SettingsService.cs(65)]: Saved userSettings.json [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: D3D11 loaded successfully, feature level used: b000 [8/15/2023 4:45:28 PM][LibObsRecorder.cs(70)]: info: DXGI increase maximum frame latency success [8/15/2023 4:45:28 PM][Messages.cs(145)]: Initialize ::: {} [8/15/2023 4:45:28 PM][SettingsService.cs(39)]: Loaded userSettings.json [8/15/2023 4:45:28 PM][Messages.cs(158)]: 0 Initialized List [8/15/2023 4:45:28 PM][Messages.cs(145)]: RetrieveVideos ::: {"game":"All Games","sortBy":"Latest"} [8/15/2023 4:45:28 PM][Helpers.cs(205)]: Found '95' video files in C:/Users/rubi/Videos/Plays [8/15/2023 4:45:28 PM][DetectionService.cs(199)]: Failed to open process: [10528]. Error: [Process with an Id of 10528 is not running. [8/15/2023 4:45:29 PM][LibObsRecorder.cs(70)]: info: --------------------------------- [8/15/2023 4:45:29 PM][LibObsRecorder.cs(70)]: info: video settings reset: base resolution: 2560x1080 output resolution: 2560x1080 downscale filter: Bilinear fps: 60/1 format: NV12 YUV mode: Rec. 709/Partial [8/15/2023 4:45:29 PM][LibObsRecorder.cs(70)]: info: NV12 texture support enabled [8/15/2023 4:45:29 PM][LibObsRecorder.cs(70)]: info: P010 texture support not available [8/15/2023 4:45:29 PM][LibObsRecorder.cs(127)]: Successfully started LibObs! [8/15/2023 5:51:09 PM][SettingsService.cs(39)]: Loaded userSettings.json [8/15/2023 5:51:09 PM][SettingsService.cs(65)]: Saved userSettings.json [8/15/2023 5:51:09 PM][StorageService.cs(16)]: VideoSaveDir 'C:/Users/rubi/Videos/Plays' size is 237.02000126522034 gbs [8/15/2023 5:51:09 PM][StorageService.cs(19)]: Automatically managing space if exceeds 90% of folder's disk. Currently at 69.67526005689791% [8/15/2023 5:51:09 PM][HotkeyService.cs(49)]: Loaded KeyboardHook... [8/15/2023 5:51:09 PM][RecordingService.cs(35)]: RecordingService starting... [8/15/2023 5:51:10 PM][RecordingService.cs(45)]: Creating a new ActiveRecorder [8/15/2023 5:51:10 PM][LibObsRecorder.cs(106)]: libobs version: 29.0.0 [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: error: CoInitializeEx failed: 0x80010106 [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: CPU Name: Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: CPU Speed: 3600MHz [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: Physical Cores: 8, Logical Cores: 16 [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: Physical Memory: 49093MB Total, 41320MB Free [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: Windows Version: 10.0 Build 19045 (release: 22H2; revision: 3324; 64-bit) [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: Running as administrator: false [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: Windows 10/11 Gaming Features: [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: Game DVR: On [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: Game Mode: Probably On (no reg key set) [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: Sec. Software Status: [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: : enabled (AV) [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: : enabled (FW) [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: Loading module: aja.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: warning: No AJA devices found, skipping loading AJA plugin [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: warning: Failed to initialize module 'aja.dll' [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: Loading module: coreaudio-encoder.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: warning: [CoreAudio encoder]: CoreAudio AAC encoder not installed on the system or couldn't be loaded [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: Loading module: decklink.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: warning: A DeckLink iterator could not be created. The DeckLink drivers may not be installed [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: warning: Failed to initialize module 'decklink.dll' [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: Loading module: enc-amf.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: [AMF] Loading... [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: error: [AMF] Unable to load 'amfrt64.dll', error code 126. [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: error: [AMF] AMF Test failed due to one or more errors. [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: warning: Failed to initialize module 'enc-amf.dll' [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: Loading module: image-source.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-ffmpeg.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: NVENC supported [8/15/2023 5:51:10 PM][Helpers.cs(148)]: {0.0.1.00000000}.{251cb120-86fb-485e-be8b-4e23de63597c} | Microphone (Schiit Hel 2e) [8/15/2023 5:51:10 PM][Helpers.cs(148)]: {0.0.0.00000000}.{de2cac8b-d576-41f9-8ad6-1c2373a75e0b} | Speakers (Schiit Hel 2e) [8/15/2023 5:51:10 PM][Helpers.cs(148)]: {0.0.0.00000000}.{51c8a4aa-ce3e-4852-a42f-a3556b02f89a} | LG ULTRAWIDE (NVIDIA High Definition Audio) [8/15/2023 5:51:10 PM][SettingsService.cs(65)]: Saved userSettings.json [8/15/2023 5:51:10 PM][frmMain.cs(82)]: WebView2 Version: 115.0.1901.203 [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: amf_load: No AMF library [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-filters.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: [noise suppress]: NVIDIA denoiser disabled, redistributable not found or could not be loaded. [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: error: Failed to get NVVideoEffects.dll version info size [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: [NVIDIA VIDEO FX]: FX disabled, redistributable not found or could not be loaded. [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-outputs.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-qsv11.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-text.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-transitions.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: Loading module: obs-x264.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: Loading module: rtmp-services.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: Loading module: text-freetype2.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: Loading module: win-capture.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: gs_get_device_type: called while not in a graphics context [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: Loading module: win-dshow.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: Loading module: win-mf.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: debug: Loading module: win-wasapi.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: Loaded Modules: [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: win-wasapi.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: win-mf.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: win-dshow.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: win-capture.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: text-freetype2.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: rtmp-services.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: obs-x264.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: obs-transitions.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: obs-text.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: obs-qsv11.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: obs-outputs.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: obs-filters.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: obs-ffmpeg.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: image-source.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: coreaudio-encoder.dll [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: audio settings reset: samples per sec: 44100 speakers: 2 max buffering: 1044 milliseconds buffering type: dynamically increasing [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: --------------------------------- [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: Initializing D3D11... [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: Available Video Adapters: [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: Adapter 0: NVIDIA GeForce RTX 4070 Ti [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: Dedicated VRAM: 4003463168 [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: Shared VRAM: 4264054784 [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: PCI ID: 10de:2782 [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: Driver Version: 31.0.0.0 [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: output 0: name=LG ULTRAWIDE pos={0, 0} size={2560, 1080} attached=true refresh=59 space=RGB_FULL_G22_NONE_P709 sdr_white_nits=80 nit_range=[min=0.500000, max=270.000000, max_full_frame=270.000000] [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: Loading up D3D11 on adapter NVIDIA GeForce RTX 4070 Ti (0) [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: D3D11 loaded successfully, feature level used: b000 [8/15/2023 5:51:10 PM][LibObsRecorder.cs(70)]: info: DXGI increase maximum frame latency success [8/15/2023 5:51:10 PM][Updater.cs(32)]: Found no updates higher than current version 1.2.1 [8/15/2023 5:51:10 PM][Messages.cs(145)]: BrowserReady ::: {} [8/15/2023 5:51:10 PM][SettingsService.cs(65)]: Saved userSettings.json [8/15/2023 5:51:10 PM][LibObsRecorder.cs(425)]: Encoder: Hardware (NVENC) [8/15/2023 5:51:10 PM][LibObsRecorder.cs(427)]: Rate Control options: VBR,CBR,CQP,Lossless [8/15/2023 5:51:10 PM][SettingsService.cs(65)]: Saved userSettings.json [8/15/2023 5:51:10 PM][Messages.cs(145)]: Initialize ::: {} [8/15/2023 5:51:10 PM][SettingsService.cs(39)]: Loaded userSettings.json [8/15/2023 5:51:10 PM][Messages.cs(158)]: 0 Initialized List [8/15/2023 5:51:10 PM][Messages.cs(145)]: RetrieveVideos ::: {"game":"All Games","sortBy":"Latest"} [8/15/2023 5:51:10 PM][Helpers.cs(205)]: Found '95' video files in C:/Users/rubi/Videos/Plays [8/15/2023 5:51:11 PM][DetectionService.cs(199)]: Failed to open process: [17784]. Error: [Process with an Id of 17784 is not running. [8/15/2023 5:51:12 PM][LibObsRecorder.cs(70)]: info: --------------------------------- [8/15/2023 5:51:12 PM][LibObsRecorder.cs(70)]: info: video settings reset: base resolution: 2560x1080 output resolution: 2560x1080 downscale filter: Bilinear fps: 60/1 format: NV12 YUV mode: Rec. 709/Partial [8/15/2023 5:51:12 PM][LibObsRecorder.cs(70)]: info: NV12 texture support enabled [8/15/2023 5:51:12 PM][LibObsRecorder.cs(70)]: info: P010 texture support not available [8/15/2023 5:51:12 PM][LibObsRecorder.cs(127)]: Successfully started LibObs! ```
lulzsun commented 10 months ago

Could you please use the latest nightly and then copy the error logs and from the error popup for us? The latest nightly should have had some changes to the json structure of the detection files.

I do not know why version 1.2.1 is just now causing issues, since 1.2.1 shouldn't be using the new json structure.

AnthonyRubiano commented 10 months ago
Error Popup ``` See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box. ************** Exception Text ************** System.Text.Json.JsonReaderException: '0x00' is an invalid start of a value. LineNumber: 0 | BytePositionInLine: 0. at System.Text.Json.ThrowHelper.ThrowJsonReaderException(Utf8JsonReader& json, ExceptionResource resource, Byte nextByte, ReadOnlySpan`1 bytes) at System.Text.Json.Utf8JsonReader.ConsumeValue(Byte marker) at System.Text.Json.Utf8JsonReader.ReadFirstToken(Byte first) at System.Text.Json.Utf8JsonReader.ReadSingleSegment() at System.Text.Json.Utf8JsonReader.Read() at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) ************** Loaded Assemblies ************** System.Private.CoreLib Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Private.CoreLib.dll ---------------------------------------- RePlays Assembly Version: 1.2.42.0 Win32 Version: 1.2.42.0 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/RePlays.dll ---------------------------------------- System.Runtime Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Runtime.dll ---------------------------------------- System.Threading Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Threading.dll ---------------------------------------- System.Net.Sockets Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Net.Sockets.dll ---------------------------------------- System.Net.Primitives Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Net.Primitives.dll ---------------------------------------- System.Linq Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Linq.dll ---------------------------------------- SquirrelLib Assembly Version: 2.8.0.0 Win32 Version: 2.8.40.22556 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/SquirrelLib.dll ---------------------------------------- System.Windows.Forms Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.7201 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Windows.Forms.dll ---------------------------------------- System.Windows.Forms.Primitives Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.7201 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Windows.Forms.Primitives.dll ---------------------------------------- System.ComponentModel.Primitives Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.ComponentModel.Primitives.dll ---------------------------------------- System.Runtime.InteropServices Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Runtime.InteropServices.dll ---------------------------------------- System.Drawing.Primitives Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Drawing.Primitives.dll ---------------------------------------- System.Collections.Specialized Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Collections.Specialized.dll ---------------------------------------- System.Collections Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Collections.dll ---------------------------------------- System.Console Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Console.dll ---------------------------------------- System.Drawing.Common Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Drawing.Common.dll ---------------------------------------- System.Diagnostics.TraceSource Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Diagnostics.TraceSource.dll ---------------------------------------- System.Threading.Thread Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Threading.Thread.dll ---------------------------------------- Microsoft.Win32.Primitives Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/Microsoft.Win32.Primitives.dll ---------------------------------------- System.ComponentModel.EventBasedAsync Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.ComponentModel.EventBasedAsync.dll ---------------------------------------- Accessibility Assembly Version: 4.0.0.0 Win32 Version: 7.0.323.7201 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/Accessibility.dll ---------------------------------------- System.Text.Json Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Text.Json.dll ---------------------------------------- System.Collections.Concurrent Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Collections.Concurrent.dll ---------------------------------------- System.Private.Uri Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Private.Uri.dll ---------------------------------------- System.Text.Encodings.Web Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Text.Encodings.Web.dll ---------------------------------------- System.Reflection.Emit.Lightweight Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Reflection.Emit.Lightweight.dll ---------------------------------------- System.Reflection.Primitives Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Reflection.Primitives.dll ---------------------------------------- System.Reflection.Emit.ILGeneration Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Reflection.Emit.ILGeneration.dll ---------------------------------------- System.Runtime.Intrinsics Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Runtime.Intrinsics.dll ---------------------------------------- System.Numerics.Vectors Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Numerics.Vectors.dll ---------------------------------------- System.Memory Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Memory.dll ---------------------------------------- System.Text.Encoding.Extensions Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Text.Encoding.Extensions.dll ---------------------------------------- System.Diagnostics.Process Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Diagnostics.Process.dll ---------------------------------------- System.Runtime.InteropServices.RuntimeInformation Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Runtime.InteropServices.RuntimeInformation.dll ---------------------------------------- System.Collections.NonGeneric Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Collections.NonGeneric.dll ---------------------------------------- System.Diagnostics.FileVersionInfo Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Diagnostics.FileVersionInfo.dll ---------------------------------------- System.Text.RegularExpressions Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Text.RegularExpressions.dll ---------------------------------------- SharpCompress Assembly Version: 0.30.1.0 Win32 Version: 0.30.1 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/SharpCompress.dll ---------------------------------------- System.Text.Encoding.CodePages Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Text.Encoding.CodePages.dll ---------------------------------------- System.Xml.XDocument Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Xml.XDocument.dll ---------------------------------------- System.Private.Xml.Linq Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Private.Xml.Linq.dll ---------------------------------------- System.Private.Xml Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Private.Xml.dll ---------------------------------------- System.Xml.ReaderWriter Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Xml.ReaderWriter.dll ---------------------------------------- System.Security.Cryptography.Algorithms Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Security.Cryptography.Algorithms.dll ---------------------------------------- System.Security.Cryptography Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Security.Cryptography.dll ---------------------------------------- System.Security.Cryptography.Primitives Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Security.Cryptography.Primitives.dll ---------------------------------------- Microsoft.Win32.SystemEvents Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/Microsoft.Win32.SystemEvents.dll ---------------------------------------- System.IO.FileSystem.DriveInfo Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.IO.FileSystem.DriveInfo.dll ---------------------------------------- Microsoft.Web.WebView2.WinForms Assembly Version: 1.0.1661.34 Win32 Version: 1.0.1661.34 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/Microsoft.Web.WebView2.WinForms.dll ---------------------------------------- Microsoft.Web.WebView2.Core Assembly Version: 1.0.1661.34 Win32 Version: 1.0.1661.34 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/Microsoft.Web.WebView2.Core.dll ---------------------------------------- mscorlib Assembly Version: 4.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/mscorlib.dll ---------------------------------------- System.ComponentModel.TypeConverter Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.ComponentModel.TypeConverter.dll ---------------------------------------- System.ComponentModel Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.ComponentModel.dll ---------------------------------------- System.Runtime.Loader Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Runtime.Loader.dll ---------------------------------------- System.Net.Http Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Net.Http.dll ---------------------------------------- System.Diagnostics.Tracing Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Diagnostics.Tracing.dll ---------------------------------------- System.Diagnostics.DiagnosticSource Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Diagnostics.DiagnosticSource.dll ---------------------------------------- System.Net.Security Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Net.Security.dll ---------------------------------------- System.Net.Quic Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Net.Quic.dll ---------------------------------------- System.Threading.ThreadPool Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Threading.ThreadPool.dll ---------------------------------------- System.Threading.Overlapped Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Threading.Overlapped.dll ---------------------------------------- System.Net.NameResolution Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Net.NameResolution.dll ---------------------------------------- System.Management Assembly Version: 4.0.0.0 Win32 Version: 6.0.21.52210 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Management.dll ---------------------------------------- System.Security.Principal.Windows Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Security.Principal.Windows.dll ---------------------------------------- System.Security.Claims Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Security.Claims.dll ---------------------------------------- System.Linq.Expressions Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Linq.Expressions.dll ---------------------------------------- Anonymously Hosted DynamicMethods Assembly Assembly Version: 0.0.0.0 Win32 Version: n/a CodeBase: ---------------------------------------- System.Runtime.Serialization.Primitives Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Runtime.Serialization.Primitives.dll ---------------------------------------- Microsoft.Win32.Registry Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/Microsoft.Win32.Registry.dll ---------------------------------------- System Assembly Version: 4.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.dll ---------------------------------------- System.Threading.Tasks Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Threading.Tasks.dll ---------------------------------------- System.Drawing Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.7201 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Drawing.dll ---------------------------------------- System.Runtime.Extensions Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Runtime.Extensions.dll ---------------------------------------- System.Net.Requests Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Net.Requests.dll ---------------------------------------- System.Web.HttpUtility Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Web.HttpUtility.dll ---------------------------------------- System.Diagnostics.StackTrace Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Diagnostics.StackTrace.dll ---------------------------------------- System.Reflection.Metadata Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Reflection.Metadata.dll ---------------------------------------- System.Collections.Immutable Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.Collections.Immutable.dll ---------------------------------------- System.IO.Compression Assembly Version: 7.0.0.0 Win32 Version: 7.0.323.6910 CodeBase: file:///C:/Users/rubi/AppData/Local/RePlays/app-1.2.42/System.IO.Compression.dll ---------------------------------------- ************** JIT Debugging ************** ```
Log file ``` [8/15/2023 6:02:05 PM][Logger.cs::Purge(39)]: Failed to purge logs file, reason: Could not find file 'C:\Users\rubi\AppData\Local\RePlays\cfg\logs.txt'. [8/15/2023 6:02:05 PM][Program.cs::Main(46)]: System Culture: en-US [8/15/2023 6:02:06 PM][Program.cs::Main(46)]: System Culture: en-US [8/15/2023 6:02:06 PM][Program.cs::Main(109)]: First launch [8/15/2023 6:02:06 PM][SettingsService.cs::LoadSettings(47)]: C:\Users\rubi\AppData\Local\RePlays\app-1.2.42\..\cfg\userSettings.json did not exist, using default values [8/15/2023 6:02:06 PM][SettingsService.cs::SaveSettings(70)]: Saved userSettings.json [8/15/2023 6:02:06 PM][StorageService.cs::ManageStorage(16)]: VideoSaveDir 'C:/Users/rubi/Videos/Plays' size is 237.02000126522034 gbs [8/15/2023 6:02:06 PM][StorageService.cs::ManageStorage(19)]: Automatically managing space if exceeds 90% of folder's disk. Currently at 69.69604132793987% [8/15/2023 6:02:06 PM][SettingsService.cs::SaveSettings(70)]: Saved userSettings.json [8/15/2023 6:02:06 PM][Keybind.cs::SetKeybind(22)]: Set new keybind: Action=CreateBookmark, Keys=System.String[] [8/15/2023 6:02:06 PM][SettingsService.cs::SaveSettings(70)]: Saved userSettings.json [8/15/2023 6:02:06 PM][Keybind.cs::SetKeybind(22)]: Set new keybind: Action=StartStopRecording, Keys=System.String[] [8/15/2023 6:02:06 PM][KeybindService.cs::Start(39)]: Loaded KeyboardHook... [8/15/2023 6:02:06 PM][RecordingService.cs::Start(35)]: RecordingService starting... [8/15/2023 6:02:06 PM][DetectionService.cs::DownloadDetections(270)]: Downloaded gameDetections.json sha1= [8/15/2023 6:02:06 PM][DetectionService.cs::DownloadDetections(270)]: Downloaded nonGameDetections.json sha1= [8/15/2023 6:02:07 PM][RecordingService.cs::Start(44)]: Creating a new ActiveRecorder [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(127)]: libobs version: 29.1.1 [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: error: CoInitializeEx failed: 0x80010106 [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: CPU Name: Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: CPU Speed: 3600MHz [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: Physical Cores: 8, Logical Cores: 16 [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: Physical Memory: 49093MB Total, 41236MB Free [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: Windows Version: 10.0 Build 19045 (release: 22H2; revision: 3324; 64-bit) [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: Running as administrator: false [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: Windows 10/11 Gaming Features: [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: Game DVR: On [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: Game Mode: Probably On (no reg key set) [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: Sec. Software Status: [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: Microsoft Defender Antivirus: enabled (AV) [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: Windows Firewall: enabled (FW) [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: --------------------------------- [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: Loading module: aja.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: warning: No AJA devices found, skipping loading AJA plugin [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: warning: Failed to initialize module 'aja.dll' [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: --------------------------------- [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: Loading module: coreaudio-encoder.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: warning: [CoreAudio encoder]: CoreAudio AAC encoder not installed on the system or couldn't be loaded [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: --------------------------------- [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: Loading module: decklink.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: warning: A DeckLink iterator could not be created. The DeckLink drivers may not be installed [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: warning: Failed to initialize module 'decklink.dll' [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: --------------------------------- [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: Loading module: enc-amf.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: [AMF] Loading... [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: error: [AMF] Unable to load 'amfrt64.dll', error code 126. [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: error: [AMF] AMF Test failed due to one or more errors. [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: warning: Failed to initialize module 'enc-amf.dll' [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: --------------------------------- [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: Loading module: image-source.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: --------------------------------- [8/15/2023 6:02:07 PM][Helpers.cs::GetAudioDevices(161)]: {0.0.1.00000000}.{251cb120-86fb-485e-be8b-4e23de63597c} | Microphone (Schiit Hel 2e) [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: Loading module: obs-ffmpeg.dll [8/15/2023 6:02:07 PM][Helpers.cs::GetAudioDevices(161)]: {0.0.0.00000000}.{de2cac8b-d576-41f9-8ad6-1c2373a75e0b} | Speakers (Schiit Hel 2e) [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: NVENC supported [8/15/2023 6:02:07 PM][Helpers.cs::GetAudioDevices(161)]: {0.0.0.00000000}.{51c8a4aa-ce3e-4852-a42f-a3556b02f89a} | LG ULTRAWIDE (NVIDIA High Definition Audio) [8/15/2023 6:02:07 PM][SettingsService.cs::SaveSettings(70)]: Saved userSettings.json [8/15/2023 6:02:07 PM][frmMain.cs::InitializeWebView2(89)]: WebView2 Version: 115.0.1901.203 [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: amf_load: No AMF library [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: --------------------------------- [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: Loading module: obs-filters.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: [noise suppress]: NVIDIA denoiser disabled, redistributable not found or could not be loaded. [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: error: Failed to get NVVideoEffects.dll version info size [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: [NVIDIA VIDEO FX]: FX disabled, redistributable not found or could not be loaded. [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: --------------------------------- [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: Loading module: obs-outputs.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: --------------------------------- [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: Loading module: obs-qsv11.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: --------------------------------- [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: Loading module: obs-text.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: --------------------------------- [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: Loading module: obs-transitions.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: --------------------------------- [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: Loading module: obs-x264.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: --------------------------------- [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: Loading module: rtmp-services.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: --------------------------------- [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: Loading module: text-freetype2.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: --------------------------------- [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: Loading module: win-capture.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: gs_get_device_type: called while not in a graphics context [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: --------------------------------- [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: Loading module: win-dshow.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: --------------------------------- [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: debug: Loading module: win-wasapi.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: Loaded Modules: [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: win-wasapi.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: win-dshow.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: win-capture.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: text-freetype2.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: rtmp-services.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: obs-x264.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: obs-transitions.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: obs-text.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: obs-qsv11.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: obs-outputs.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: obs-filters.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: obs-ffmpeg.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: image-source.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: coreaudio-encoder.dll [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: --------------------------------- [8/15/2023 6:02:07 PM][SettingsService.cs::SaveSettings(70)]: Saved userSettings.json [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: audio settings reset: samples per sec: 44100 speakers: 2 max buffering: 1044 milliseconds buffering type: dynamically increasing [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: --------------------------------- [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: Initializing D3D11... [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: Available Video Adapters: [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: Adapter 0: NVIDIA GeForce RTX 4070 Ti [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: Dedicated VRAM: 12593397760 [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: Shared VRAM: 25738891264 [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: PCI ID: 10de:2782 [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: Driver Version: 31.0.0.0 [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: output 0: name=LG ULTRAWIDE pos={0, 0} size={2560, 1080} attached=true refresh=59 bits_per_color=8 space=RGB_FULL_G22_NONE_P709 sdr_white_nits=80 nit_range=[min=0.500000, max=270.000000, max_full_frame=270.000000] dpi=96 (100%) id=\\?\DISPLAY#GSM76FE#5&2b1708ad&0&UID4355#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7} alt_id=\\.\DISPLAY1 [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: Loading up D3D11 on adapter NVIDIA GeForce RTX 4070 Ti (0) [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: [rtmp-services plugin] Successfully updated file 'services.json' (version 231) [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: [rtmp-services plugin] Successfully updated package (version 231) [8/15/2023 6:02:07 PM][SettingsService.cs::LoadSettings(38)]: Loaded userSettings.json [8/15/2023 6:02:07 PM][Updater.cs::CheckForUpdates(67)]: Found no updates higher than current version 1.2.42 [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: D3D11 loaded successfully, feature level used: b000 [8/15/2023 6:02:07 PM][LibObsRecorder.cs::Start(86)]: info: DXGI increase maximum frame latency success [8/15/2023 6:02:07 PM][Messages.cs::RecieveMessage(154)]: BrowserReady ::: {} [8/15/2023 6:02:07 PM][SettingsService.cs::SaveSettings(70)]: Saved userSettings.json [8/15/2023 6:02:07 PM][LibObsRecorder.cs::GetAvailableRateControls(493)]: Encoder: Hardware (NVENC) [8/15/2023 6:02:07 PM][LibObsRecorder.cs::GetAvailableRateControls(495)]: Rate Control options: VBR,CBR,CQP,Lossless [8/15/2023 6:02:07 PM][SettingsService.cs::SaveSettings(70)]: Saved userSettings.json [8/15/2023 6:02:07 PM][Messages.cs::RecieveMessage(154)]: Initialize ::: {} [8/15/2023 6:02:07 PM][LibObsRecorder.cs::GetAvailableFileFormats(504)]: File format: File Format {Format: mp4, Title: MPEG-4 (.mp4)} [8/15/2023 6:02:07 PM][SettingsService.cs::SaveSettings(70)]: Saved userSettings.json [8/15/2023 6:02:07 PM][SettingsService.cs::LoadSettings(38)]: Loaded userSettings.json [8/15/2023 6:02:07 PM][Messages.cs::RecieveMessage(175)]: Initializing 0 Toasts [8/15/2023 6:02:07 PM][Messages.cs::RecieveMessage(180)]: Initializing 0 Modals [8/15/2023 6:02:07 PM][Messages.cs::RecieveMessage(154)]: RetrieveVideos ::: {"game":"All Games","sortBy":"Latest"} [8/15/2023 6:02:07 PM][Helpers.cs::GetAllVideos(231)]: Found '95' video files in C:/Users/rubi/Videos/Plays [8/15/2023 6:02:09 PM][LibObsRecorder.cs::Start(86)]: info: --------------------------------- [8/15/2023 6:02:09 PM][LibObsRecorder.cs::Start(86)]: info: video settings reset: base resolution: 2560x1080 output resolution: 2560x1080 downscale filter: Bilinear fps: 60/1 format: NV12 YUV mode: Rec. 709/Partial [8/15/2023 6:02:09 PM][LibObsRecorder.cs::Start(86)]: info: NV12 texture support enabled [8/15/2023 6:02:09 PM][LibObsRecorder.cs::Start(86)]: info: P010 texture support not available [8/15/2023 6:02:09 PM][LibObsRecorder.cs::Start(148)]: Successfully started LibObs! [8/15/2023 6:02:09 PM][DetectionService.cs::GetExecutablePathFromProcessId(223)]: Failed to get process: [12960][cam_helper] full path. Error: Access is denied. [8/15/2023 6:02:09 PM][DetectionService.cs::GetExecutablePathFromProcessId(223)]: Failed to get process: [14820][NVDisplay.Container] full path. Error: Access is denied. [8/15/2023 6:02:09 PM][DetectionService.cs::GetExecutablePathFromProcessId(223)]: Failed to get process: [14820][NVDisplay.Container] full path. Error: Access is denied. [8/15/2023 6:02:09 PM][DetectionService.cs::GetExecutablePathFromProcessId(223)]: Failed to get process: [14820][NVDisplay.Container] full path. Error: Access is denied. [8/15/2023 6:02:10 PM][DetectionService.cs::GetExecutablePathFromProcessId(223)]: Failed to get process: [19440][dwm] full path. Error: Access is denied. [8/15/2023 6:02:10 PM][DetectionService.cs::GetExecutablePathFromProcessId(223)]: Failed to get process: [18212][ctfmon] full path. Error: Access is denied. [8/15/2023 6:02:10 PM][DetectionService.cs::GetExecutablePathFromProcessId(223)]: Failed to get process: [11656][conhost] full path. Error: Access is denied. ```
lulzsun commented 10 months ago

Thanks.

It seems like the json detection being downloaded gets malformed in the process? Also for some reason the full error stack isn't shown like in the first comment, which may make debugging difficult. But I think I know where the root of the problem is, I'll try to resolve it quickly and build another nightly release.

You could try deleting both gameDetections.json and nonGameDetections.json and try manually downloading them yourself from here to see if it resolves the issue.

AnthonyRubiano commented 10 months ago

Just tried deleting them and manually downloading them, didn't work. Same error on start. Weirdly enough, if I choose to continue instead of exit, it actually still turns on (when I launch I game I hear the chime) and records my gameplay, however the frontend is completely non functional.

image

No worries. Please let me know if you need anything else from me.

lulzsun commented 10 months ago

Have you also tried deleting your userSettings.json? Issue might be related to that file instead?

Edit: It seems like it might not be the issue as it was creating userSettings.json on first launch. It could be some other json de-serialization that is unrelated to any of the files mentioned.

Segergren commented 10 months ago

Would be interesting to see what's in it before you delete it 😀

lulzsun commented 10 months ago

If you are getting this issue upon opening the front-end, then my other theory is that there could potentially be a corrupted .metadata file in one of your video thumb folders that is trying to be loaded. You could try deleting all the of the .thumbs folder in every sub folder of your video directory to have all the metadata be regenerated.

This seems to make the most sense with regards to your issue since you claim that the issue occurred after several weeks without any problems.

Edit: I was able to replicate the same exception thrown in your first comment:

System.Text.Json.JsonReaderException: The input does not contain any JSON tokens. Expected the input to start with a valid JSON token, when isFinalBlock is true. LineNumber: 0 | BytePositionInLine: 0.

when the .metadata file of a video was empty.

AnthonyRubiano commented 10 months ago

That solved the issue! I deleted the .thumbs folder in the directory of one of my games and then RePlays launched successfully after that. Thank you both so much for your help.

lulzsun commented 10 months ago

Sounds great! I will write some checks for invalid or corrupted metadata files so that way this won't happen again in the future. Thanks for reporting this issue.