I setup separate conversion tasks for SD and HD recordings.
For my OTA broadcasts, when channel info is present, the HD channel is the primary and the secondary channels are SD. e.g. KxDT is HD, and KxDT2, KxDT3, etc. are all SD.
My problem is for recordings that, for whatever reason, don’t have channel info in them, I cannot include a match for a null value or the empty string (whatever MCEBuddy interprets for that).
If I wanted to include the empty/missing channel info recordings in the conversion task as if it were an HD recording, I don’t know the syntax to include it in my channel/network matching setting.
I currently have: “*DT;~*DT2;~*DT3;~*DT4;~*DT5;”
How do I represent either matching or not matching the empty string?
Is the only way via a regex? And can I mix and match regexes and the normal syntax? e.g. “regex:^$;*DT;~*DT2;~*DT3;~*DT4;~*DT5;”
This isn’t possible currently but we’ve added this feature to todays 2.6.5 beta build.
You will need to use a regex: pattern match, for example to match for an empty string use regex:^$ or you can make more complex regex expressions as well. Simple wildcards will not be able to match empty strings.
You can try to use the AI Forum helper bot on the top bar to help you create a custom regex easily.
For example when asked to create a regex that matches a string if it’s empty or contains DT but not if it contains DT2, DT3, DT4 or DT5 and it returned: