Goose
(Goose)
May 1, 2019, 9:43pm
2
Are you referring to this post?
Thanks to wisermouse for this script, it extracts the metadata in a .ARG (ArgusTV) format:
Step 1: Add the following parameters in your profile:
PreMetaCustomCommandPath=C:\Perl64\bin\perl.exe
PreMetaCustomCommandParameters=c:\code\dvblink.pl %sourcefile%
PreMetaCustomCommandHangPeriod=0
PreMetaCustomCommandCritical=true
Step 2: To use this you just need to copy the code below into a file dvblink.pl as configured in your profile above:
#!/usr/bin/perl -w
use strict;
use warnings;
use LWP::…
It should be fairly straightforward. Step are modifications to be made to your mcebuddy.profiles
file, specifically to the profile that you want to use. Step 2 is the file you need to create/save which will be called by MCEBuddy when it uses the profile.
You can find more details about profiles and custom commands here:
MCEBuddy Profiles Basics
Stock MCEBuddy profiles are in the profiles.conf file located in the config directory where MCEBuddy is installed. One can create new profiles or customize existing ones.
It’s highly recommended to create your own custom profiles.conf file in a directory outside of MCEBuddy’s installation folder (e.g. C:\MCECustomProfile) and configure MCEBuddy to use that custom profiles.conf from Settings → Expert Settings → Profiles.conf → Click on … → select your custom profiles.…