The first version of mkv2m2ts Pro is out! mkv2m2ts Pro is a program built for converting Matroska (.mkv) files to .m2ts files. The program uses tsMuxeR and eac3to to convert the files. For more information and downloads, see the mkv2m2ts Pro Information page. Hope you enjoy it!
-Steve
Posted in
Software & Development at April 22nd, 2010.
No Comments.
Here’s a sample of the WordPress plugin “Highlight Source Pro”. I edited the “all.css” file to make the color highlighting more closely reflect the syntax colors of Visual Studio 2010. Here’s a sample of the code highlighting with the new colors for csharp.
-
//function:lockControls(string state) –This function locks the user out of the important settings that should not be changed whilst processing
-
private void lockControls(string state)
-
{
-
//string state will contain "lock" or "unlock"
-
if (state == "lock")
-
{
-
busy = true;
-
-
//lock the controls
-
Invoke(new Action(delegate()
-
{
-
editToolStripMenuItem.Enabled = false;
-
extrasToolStripMenuItem.Enabled = false;
-
buttonOpenFile.Enabled = false;
-
buttonOpenFolder.Enabled = false;
-
buttonOutput.Enabled = false;
-
buttonProcessed.Enabled = false;
-
buttonConvert.Enabled = false;
-
buttonSettings.Enabled = false;
-
groupBoxAudio.Enabled = false;
-
groupBoxTsMuxeR.Enabled = false;
-
groupBoxFileHandling.Enabled = false;
-
}));
-
}
-
}
If you’d like the modified file for yourself you can grab it here:
“Highlight Source Pro” csharp custom tailored style sheet file Download
For the entire WordPress plugin, follow this link: Highlight Source Pro
Posted in
Software & Development at February 28th, 2010.
9 Comments.