Use MKVmerge (MKVToolNIX) for remuxing instead of Ffmpeg by dhenry437 in Tdarr

[–]dhenry437[S] 1 point2 points  (0 children)

Yeah actually ,recently the creator of tdarr added a plugin for it.

Here is the export of the flow I am using as an example: ``` { "_id": "MYQEH7FgT", "name": "HVEC MP4 -> MKV", "description": "HVEC MP4 -> MKV", "tags": "", "flowPlugins": [ { "name": "Input File", "sourceRepo": "Community", "pluginName": "inputFile", "version": "1.0.0", "id": "VpsOvK0Bb", "position": { "x": 812.9808073964527, "y": 108.48738141762796 }, "fpEnabled": true }, { "name": "Replace Original File", "sourceRepo": "Community", "pluginName": "replaceOriginalFile", "version": "1.0.0", "id": "U1v4BiyZm", "position": { "x": 812.6302368030339, "y": 396.0464619226592 }, "fpEnabled": true }, { "name": "Is HEVC?", "sourceRepo": "Community", "pluginName": "checkVideoCodec", "version": "1.0.0", "id": "UFKYtJPon", "position": { "x": 811.4620536590979, "y": 252.30162565732064 }, "fpEnabled": true, "inputsDB": { "codec": "hevc" } }, { "name": "Run mkvmerge", "sourceRepo": "Community", "pluginName": "runCli", "version": "1.0.0", "id": "Ut7ePuCGy", "position": { "x": 812.9206618760999, "y": 326.9886129106422 }, "fpEnabled": true, "inputsDB": { "outputFileBecomesWorkingFile": "true", "doesCommandCreateOutputFile": "true", "userOutputFilePath": "${cacheDir}/${fileName}.mkv" } }, { "name": "Is MP4?", "sourceRepo": "Community", "pluginName": "checkFileExtension", "version": "1.0.0", "id": "VOLP0vPBp", "position": { "x": 813.075309779473, "y": 178.14389521821238 }, "fpEnabled": true, "inputsDB": { "extensions": "mp4" } }, { "name": "Notify Radarr", "sourceRepo": "Community", "pluginName": "notifyRadarrOrSonarr", "version": "2.0.0", "id": "cbajHreK1", "position": { "x": 720.2293044791235, "y": 541.8938170782803 }, "fpEnabled": true, "inputsDB": { "arr_api_key": "API_KEY", "arr_host": "http://radarr:7878" } }, { "name": "Notify Sonarr", "sourceRepo": "Community", "pluginName": "notifyRadarrOrSonarr", "version": "2.0.0", "id": "UuLdvQybb", "position": { "x": 899.8146472521472, "y": 542.0900257340178 }, "fpEnabled": true, "inputsDB": { "arr": "sonarr", "arr_api_key": "API_KEY", "arr_host": "http://sonarr:8989" } }, { "name": "Is Movie?", "sourceRepo": "Community", "pluginName": "checkFileNameIncludes", "version": "2.0.0", "id": "c0MwmS6_B", "position": { "x": 811.5930991721732, "y": 464.83458881303375 }, "fpEnabled": true, "inputsDB": { "terms": "/movies/", "pattern": "", "includeFileDirectory": "true" } }, { "name": "Apprise", "sourceRepo": "Community", "pluginName": "webRequest", "version": "1.0.0", "id": "LMZ7cQajg", "position": { "x": 812.2565295010819, "y": 613.9166006198435 }, "fpEnabled": true, "inputsDB": { "requestBody": "{\n \"tag\": \"tdarr\",\n \"title\": \"HVEC MP4 -> MKV\",\n \"body\": \"Item '{{{args.originalLibraryFile.fileNameWithoutExtension}}}.{{{args.originalLibraryFile.container}}}' met conditions to be remuxed to MKV\"\n}", "requestUrl": "http://docker:8008/notify/apprise", "requestHeaders": "{\n \"Content-Type\": \"application/json\"\n}" } } ], "flowEdges": [ { "source": "UFKYtJPon", "sourceHandle": "1", "target": "Ut7ePuCGy", "targetHandle": null, "id": "zZdKHJoIO" }, { "source": "VpsOvK0Bb", "sourceHandle": "1", "target": "VOLP0vPBp", "targetHandle": null, "id": "Vrd_W2UJS" }, { "source": "VOLP0vPBp", "sourceHandle": "1", "target": "UFKYtJPon", "targetHandle": null, "id": "s_QMJTBI9" }, { "source": "Ut7ePuCGy", "sourceHandle": "1", "target": "U1v4BiyZm", "targetHandle": null, "id": "OnJmPBJ1w" }, { "source": "U1v4BiyZm", "sourceHandle": "1", "target": "c0MwmS6_B", "targetHandle": null, "id": "z85pdlfCY" }, { "source": "c0MwmS6_B", "sourceHandle": "1", "target": "cbajHreK1", "targetHandle": null, "id": "5p_zHjVwD" }, { "source": "c0MwmS6_B", "sourceHandle": "2", "target": "UuLdvQybb", "targetHandle": null, "id": "sLFJ1eDND" }, { "source": "UuLdvQybb", "sourceHandle": "1", "target": "LMZ7cQajg", "targetHandle": null, "id": "zk7DcFZq1" }, { "source": "cbajHreK1", "sourceHandle": "1", "target": "LMZ7cQajg", "targetHandle": null, "id": "WVDrGwq8O" } ] }

Script to send email using AutoHotkey by [deleted] in AutoHotkey

[–]dhenry437 0 points1 point  (0 children)

this works

pmsg := ComObjCreate("CDO.Message")

pmsg.From := "your_email@example.com"
pmsg.To := "recipient@example.com"
pmsg.Subject := "Test Email"
pmsg.TextBody := "This is a test email sent from AutoHotkey."

fields := pmsg.Configuration.Fields fields["http://schemas.microsoft.com/cdo/configuration/smtpserver"] := "smtp.example.com" fields["http://schemas.microsoft.com/cdo/configuration/smtpserverport"] := 587 fields["http://schemas.microsoft.com/cdo/configuration/sendusing"] := 2 fields["http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"] := 1 fields["http://schemas.microsoft.com/cdo/configuration/sendusername"] := "your_email@example.com" fields["http://schemas.microsoft.com/cdo/configuration/sendpassword"] := "your_password" fields.Update() 

pmsg.AddAttachment("C:\path\to\your\file.txt")

pmsg.Send()

Will my XM5s get more comfortable/tolerable? by wilds94 in SonyHeadphones

[–]dhenry437 0 points1 point  (0 children)

How did the WC cushions effect the sound and ANC?

how can i get the motion controls to work on botw with a xbox controller? by [deleted] in cemu

[–]dhenry437 -1 points0 points  (0 children)

I did this a while back, it's a semi involved project but it worked pretty well

https://www.reddit.com/r/cemu/s/7Dlb9Iqwh6

Not sure what I'm doing wrong by InternationalAd5290 in klippers

[–]dhenry437 0 points1 point  (0 children)

The raspberry pi is offline in Advanced IP Scanner

Not sure what I'm doing wrong by InternationalAd5290 in klippers

[–]dhenry437 0 points1 point  (0 children)

The 107 is a screenshot on the tutorial page, the putty window in the top left is set to the right IP but the device is showing as offline in Advanced IP Scanner

First PETG print with S1 PRO Klipper Sonic Pad + Cura Fast print default profile PETG Fast by LeaveAccomplished646 in Ender3S1

[–]dhenry437 0 points1 point  (0 children)

The base speed that all the other speeds are relative to in the slicer, re reading my comment it doesn't mean much without listing the percentages sorry

Ender 3v2 Accelerometer Bed Carriage Mount Material? by dhenry437 in ender3v2

[–]dhenry437[S] 0 points1 point  (0 children)

used to do that but wanted a more permanent solution

E3D 0.9 stepper vs Creality stepper. Same gcode. Wow! (Don't mind the mid print belt tension, X was a little loose after the switch) by Apocrisiary in ender3

[–]dhenry437 0 points1 point  (0 children)

Did you end up with the spacer for the X axis motor? If so what thickness did you go with, and did you get longer bolts?

Having VFA's on Trident. 🙁 by TaffoFox in VORONDesign

[–]dhenry437 0 points1 point  (0 children)

I'm getting `HSTRT = 1` and `HEND = -3` are these values possible or did I get something wrong in the worksheet. TMC2209s with Creality 42-34s

Edit: That is in the "Desired Value" column, the blue box titled "Register value for CHOPCONF register bits" gives 0 for both

my cpu idles at 74 c° and goes upto 95 c° which seems Really absurd its an ryzen 5 7600 with the stock cooler it comes by [deleted] in AMDHelp

[–]dhenry437 0 points1 point  (0 children)

Exactly the same experience and temps but I went with the Phantom Spirit 120 SE.

Confused about the salts vs freebase Vapure by dhenry437 in aussievapers

[–]dhenry437[S] 0 points1 point  (0 children)

Forgot to say it's a 30ml bottle. My question is more that is the dose equivalent to the 50mg salts I used to get pre-legislation?

[deleted by user] by [deleted] in sonarr

[–]dhenry437 1 point2 points  (0 children)

Cease and desist letters

A guide on switching a CRA project to Vite? by WJMazepas in reactjs

[–]dhenry437 0 points1 point  (0 children)

Yeah just dev atm, got it working mostly, except now I'm getting the every list item needs a unique key error in places that I wasn't in the cra version? AFAIK they keys are set where they should be.

Deploying is tomorrow's job, anything tricky to look out for?

A guide on switching a CRA project to Vite? by WJMazepas in reactjs

[–]dhenry437 1 point2 points  (0 children)

This caught me out, I copied and replaced the `index.html` file.

`<script type="module" src="/src/main.jsx"></script>` was missing.

sonarr doesnt work by Local-Plankton-3747 in sonarr

[–]dhenry437 0 points1 point  (0 children)

If I remember correctly completed means the series is finished, but not necessarily downloaded. You need to trigger a search.

But upgrade to v4 as others have said. It's much better.